<!doctype html>
<html lang="de" prefix="og: https://ogp.me/ns#">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="https://gmpg.org/xfn/11">
	<script id="digins-bcc-anti-flicker">
(function (w, d) {
	'use strict';

	var config = {"cookie":{"name":"digins_burst_cookie_consent","path":"\/","sameSite":"Lax","secure":true,"lifetimeDays":180,"schemaVersion":1},"decided":"digins-bcc-decided","pending":"digins-bcc-undecided"};

	/**
	 * Prüft, ob eine gültige Entscheidung vorliegt.
	 *
	 * Die Regeln entsprechen exakt DIGINS_BCC_Consent::parse_cookie() in PHP. Beide
	 * Seiten müssen gleich urteilen, sonst weicht die Anzeige vom Serverzustand ab.
	 *
	 * @returns {boolean}
	 */
	function hasDecision() {
		try {
			var name = config.cookie.name + '=';
			var parts = d.cookie ? d.cookie.split(';') : [];
			var raw = '';

			for (var i = 0; i < parts.length; i++) {
				var part = parts[i].replace(/^\s+/, '');
				if (part.indexOf(name) === 0) {
					raw = decodeURIComponent(part.substring(name.length));
					break;
				}
			}

			if (!raw) {
				return false;
			}

			var data = JSON.parse(raw);

			if (!data || typeof data !== 'object') {
				return false;
			}

			// Schema-Version muss der aktuell konfigurierten entsprechen.
			if (parseInt(data.v, 10) !== config.cookie.schemaVersion) {
				return false;
			}

			// Zeitstempel muss plausibel und innerhalb der Speicherdauer liegen.
			var ts = parseInt(data.ts, 10);
			var now = Math.floor(Date.now() / 1000);

			if (!ts || ts > now + 86400 || ts < now - (config.cookie.lifetimeDays * 86400)) {
				return false;
			}

			// Nur ausdrückliche Entscheidungen zählen.
			return data.statistics === 'allow' || data.statistics === 'deny';
		} catch (e) {
			return false;
		}
	}

	try {
		d.documentElement.className += ' ' + (hasDecision() ? config.decided : config.pending);
	} catch (e) {
		// Im Fehlerfall bleibt der Banner verborgen. Burst bleibt dadurch blockiert –
		// der datenschutzseitig sichere Zustand.
	}
})(window, document);
</script>
<script id="digins-bcc-guard">
(function (w, n) {
	'use strict';

	w.DiginsBurstCookieConsent = w.DiginsBurstCookieConsent || {};

	// Mehrfache Installation verhindern, etwa bei doppelt eingebundenem Kopfbereich.
	if (w.DiginsBurstCookieConsent.guard) {
		return;
	}

	var config = {"patterns":["\/burst\/v1\/track","%2Fburst%2Fv1%2Ftrack","\/wp-content\/plugins\/burst-statistics\/endpoint.php"],"debug":false};
	var blocking = true;

	/**
	 * Ermittelt die URL aus den verschiedenen Eingabeformen von fetch und sendBeacon.
	 *
	 * @param  {*} input - String, URL-Objekt oder Request-Objekt.
	 * @returns {string}
	 */
	function urlOf(input) {
		try {
			if (typeof input === 'string') {
				return input;
			}
			if (input && typeof input.url === 'string') {
				return input.url;
			}
			if (input && typeof input.href === 'string') {
				return input.href;
			}
			if (input && typeof input.toString === 'function') {
				return input.toString();
			}
		} catch (e) {
			return '';
		}
		return '';
	}

	/**
	 * Prüft, ob eine URL zu einem bekannten Burst-Tracking-Ziel gehört.
	 *
	 * @param  {string} url - Zu prüfende URL.
	 * @returns {boolean}
	 */
	function isBurstTarget(url) {
		if (!url) {
			return false;
		}
		for (var i = 0; i < config.patterns.length; i++) {
			if (url.indexOf(config.patterns[i]) !== -1) {
				return true;
			}
		}
		return false;
	}

	/**
	 * Meldet eine blockierte Anfrage in der Browserkonsole.
	 *
	 * @param  {string} url - Ziel der blockierten Anfrage.
	 * @returns {void}
	 */
	function report(url) {
		if (config.debug && w.console && w.console.info) {
			w.console.info('[Burst Cookie Consent] Tracking-Anfrage blockiert:', url);
		}
	}

	// fetch abfangen. Deckt auch wp.apiFetch ab, das intern fetch verwendet.
	var originalFetch = w.fetch;
	if (typeof originalFetch === 'function') {
		w.fetch = function (input) {
			var url = urlOf(input);
			if (blocking && isBurstTarget(url)) {
				report(url);
				try {
					return Promise.resolve(new Response(null, { status: 204, statusText: 'blocked' }));
				} catch (e) {
					return Promise.resolve({ ok: true, status: 204, json: function () { return Promise.resolve({}); } });
				}
			}
			return originalFetch.apply(this, arguments);
		};
	}

	// sendBeacon abfangen. Der Rückgabewert true meldet Erfolg, damit kein Ersatzweg
	// versucht wird.
	try {
		if (n && typeof n.sendBeacon === 'function') {
			var originalBeacon = n.sendBeacon.bind(n);
			n.sendBeacon = function (url) {
				var target = urlOf(url);
				if (blocking && isBurstTarget(target)) {
					report(target);
					return true;
				}
				return originalBeacon.apply(n, arguments);
			};
		}
	} catch (e) {
		// Manche Browser erlauben kein Überschreiben an navigator. Der Platzhalter
		// bleibt in diesem Fall die wirksame Absicherung.
	}

	w.DiginsBurstCookieConsent.guard = {
		/**
		 * Lässt Tracking-Anfragen wieder zu.
		 *
		 * @returns {void}
		 */
		disarm: function () {
			blocking = false;
		},

		/**
		 * Blockiert Tracking-Anfragen erneut.
		 *
		 * @returns {void}
		 */
		arm: function () {
			blocking = true;
		},

		/**
		 * Meldet, ob aktuell blockiert wird.
		 *
		 * @returns {boolean}
		 */
		isBlocking: function () {
			return blocking;
		}
	};
})(window, window.navigator);
</script>

<!-- Suchmaschinen-Optimierung durch Rank Math PRO - https://rankmath.com/ -->
<title>Page Not Found - Modellbaumesse Ried</title>
<meta name="robots" content="follow, noindex"/>
<meta property="og:locale" content="de_DE" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Page Not Found - Modellbaumesse Ried" />
<meta property="og:site_name" content="Messefrühling Ried" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Page Not Found - Modellbaumesse Ried" />
<script type="application/ld+json" class="rank-math-schema">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.modellbau-ried.at/#organization","name":"Fr\u00fchjahrsmesse Ried","url":"https://www.modellbau-ried.at","logo":{"@type":"ImageObject","@id":"https://www.modellbau-ried.at/#logo","url":"https://www.modellbau-ried.at/wp-content/uploads/2021/06/FavIcon_MesseRied.svg","contentUrl":"https://www.modellbau-ried.at/wp-content/uploads/2021/06/FavIcon_MesseRied.svg","caption":"Messefr\u00fchling Ried","inLanguage":"de","width":"411.52","height":"304.46"}},{"@type":"WebSite","@id":"https://www.modellbau-ried.at/#website","url":"https://www.modellbau-ried.at","name":"Messefr\u00fchling Ried","publisher":{"@id":"https://www.modellbau-ried.at/#organization"},"inLanguage":"de"},{"@type":"WebPage","@id":"#webpage","url":"","name":"Page Not Found - Modellbaumesse Ried","isPartOf":{"@id":"https://www.modellbau-ried.at/#website"},"inLanguage":"de"}]}</script>
<!-- /Rank Math WordPress SEO Plugin -->

<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' />
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style^=border-color],[style*=";border-color"],[style*="; border-color"]){border-style:solid}html :where([style^=border-top-color],[style*=";border-top-color"],[style*="; border-top-color"]){border-top-style:solid}html :where([style^=border-right-color],[style*=";border-right-color"],[style*="; border-right-color"]){border-right-style:solid}html :where([style^=border-bottom-color],[style*=";border-bottom-color"],[style*="; border-bottom-color"]){border-bottom-style:solid}html :where([style^=border-left-color],[style*=";border-left-color"],[style*="; border-left-color"]){border-left-style:solid}html :where([style^=border-width],[style*=";border-width"],[style*="; border-width"]){border-style:solid}html :where([style^=border-top-width],[style*=";border-top-width"],[style*="; border-top-width"]){border-top-style:solid}html :where([style^=border-right-width],[style*=";border-right-width"],[style*="; border-right-width"]){border-right-style:solid}html :where([style^=border-bottom-width],[style*=";border-bottom-width"],[style*="; border-bottom-width"]){border-bottom-style:solid}html :where([style^=border-left-width],[style*=";border-left-width"],[style*="; border-left-width"]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
</style>
<style id="wp-block-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." }
/*# sourceURL=wp-block-styles-placeholder-inline-css */
</style>
<link rel='stylesheet' id='jet-engine-frontend-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-engine/assets/css/frontend.css' media='all' />
<style id="wp-global-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." }
/*# sourceURL=wp-global-styles-placeholder-inline-css */
</style>
<link rel='stylesheet' id='digins-bcc-frontend-css' href='https://www.modellbau-ried.at/wp-content/plugins/digins-burst-cookie-consent/assets/css/digins-bcc-frontend.css' media='all' />
<style id="digins-bcc-frontend-inline-css">
:root{--digins-bcc-background: #ffffff;--digins-bcc-overlay: #000000;--digins-bcc-heading: #111111;--digins-bcc-text: #333333;--digins-bcc-muted: #666666;--digins-bcc-link: #103256;--digins-bcc-link-hover: #5b5445;--digins-bcc-primary: #103256;--digins-bcc-primary-hover: #f4c55a;--digins-bcc-primary-text: #ffffff;--digins-bcc-secondary: #f2f1ee;--digins-bcc-secondary-hover: #e5e3dd;--digins-bcc-secondary-text: #333333;--digins-bcc-border: #dddddd;--digins-bcc-toggle-off: #c4c4c4;--digins-bcc-toggle-on: #103256;--digins-bcc-toggle-knob: #ffffff;--digins-bcc-focus: #1d4ed8;--digins-bcc-heading-size: 1.25rem;--digins-bcc-heading-size-mobile: 1.125rem;--digins-bcc-text-size: 0.9375rem;--digins-bcc-button-size: 0.9375rem;--digins-bcc-padding: 1.5rem;--digins-bcc-gap: 1rem;--digins-bcc-button-padding-x: 1.25rem;--digins-bcc-button-padding-y: 0.75rem;--digins-bcc-max-width: 30rem;--digins-bcc-radius-banner: 0.5rem;--digins-bcc-radius-button: 0.375rem;--digins-bcc-border-width: 1px;--digins-bcc-heading-weight: 600;--digins-bcc-line-height: 1.5;--digins-bcc-overlay-opacity: 0.5;--digins-bcc-shadow: 0 4px 16px rgba(0,0,0,0.15);}
/*# sourceURL=digins-bcc-frontend-inline-css */
</style>
<link rel='stylesheet' id='hello-elementor-css' href='https://www.modellbau-ried.at/wp-content/themes/hello-elementor/assets/css/reset.css' media='all' />
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://www.modellbau-ried.at/wp-content/themes/hello-elementor/assets/css/theme.css' media='all' />
<link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://www.modellbau-ried.at/wp-content/themes/hello-elementor/assets/css/header-footer.css' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/css/frontend.min.css' media='all' />
<style id="elementor-frontend-inline-css">
.elementor-4373 .elementor-element.elementor-element-abeb26d .elementor-button{background-color:#103256;}.elementor-4373 .elementor-element.elementor-element-abeb26d .elementor-button:hover, .elementor-4373 .elementor-element.elementor-element-abeb26d .elementor-button:focus{background-color:#f4c55a;}
/*# sourceURL=elementor-frontend-inline-css */
</style>
<link rel='stylesheet' id='widget-image-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/css/widget-image.min.css' media='all' />
<link rel='stylesheet' id='widget-nav-menu-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css' media='all' />
<link rel='stylesheet' id='e-animation-fadeInUp-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css' media='all' />
<link rel='stylesheet' id='widget-heading-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/css/widget-heading.min.css' media='all' />
<link rel='stylesheet' id='widget-countdown-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/css/widget-countdown.min.css' media='all' />
<link rel='stylesheet' id='e-popup-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/css/conditionals/popup.min.css' media='all' />
<link rel='stylesheet' id='jet-blocks-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/custom-jet-blocks.css' media='all' />
<link rel='stylesheet' id='jet-tabs-frontend-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-tabs/assets/css/jet-tabs-frontend.css' media='all' />
<link rel='stylesheet' id='swiper-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css' media='all' />
<link rel='stylesheet' id='elementor-post-4373-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-4373.css' media='all' />
<link rel='stylesheet' id='child-style-css' href='https://www.modellbau-ried.at/wp-content/themes/hello-elementor-child/style.css' media='all' />
<link rel='stylesheet' id='jquery-chosen-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-search/assets/lib/chosen/chosen.min.css' media='all' />
<link rel='stylesheet' id='jet-search-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-search/assets/css/jet-search.css' media='all' />
<script id="burst-timeme-js" async src="https://www.modellbau-ried.at/wp-content/plugins/burst-statistics/assets/js/timeme/timeme.min.js"></script>
<script id="jquery-core-js" src="https://www.modellbau-ried.at/wp-includes/js/jquery/jquery.min.js"></script>
<script id="jquery-migrate-js" src="https://www.modellbau-ried.at/wp-includes/js/jquery/jquery-migrate.min.js"></script>
<link rel="https://api.w.org/" href="https://www.modellbau-ried.at/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.modellbau-ried.at/xmlrpc.php?rsd" />
<style>
		:root {
			--ticket-akzent-farbe: #c3141c;
		}
	</style><script type="text/javascript">
jQuery(document).ready(function() {
  var previousPageExists = (window.history.length > 1);
  var backButton = jQuery('#btn-back');

  if (!previousPageExists) {
    backButton.css('filter', 'blur(2px)');
    backButton.css('pointer-events', 'none');
  }

  backButton.on('click', function() {
    if (previousPageExists) {
      window.history.go(-1);
    }
    return false;
  });
});
</script>
			<style>
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
			</style>
			<link rel="icon" href="https://www.modellbau-ried.at/wp-content/uploads/2021/06/FavIcon_MesseRied.svg" sizes="32x32" />
<link rel="icon" href="https://www.modellbau-ried.at/wp-content/uploads/2021/06/FavIcon_MesseRied.svg" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.modellbau-ried.at/wp-content/uploads/2021/06/FavIcon_MesseRied.svg" />
<meta name="msapplication-TileImage" content="https://www.modellbau-ried.at/wp-content/uploads/2021/06/FavIcon_MesseRied.svg" />
<noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript></head>
<body class="error404 wp-embed-responsive wp-theme-hello-elementor wp-child-theme-hello-elementor-child hello-elementor-default elementor-default elementor-kit-10 elementor-page-4373" data-burst_id="0" data-burst_type="404">


<a class="skip-link screen-reader-text" href="#content">Zum Inhalt springen</a>

		<header data-elementor-type="header" data-elementor-id="646" class="elementor elementor-646 elementor-location-header" data-elementor-post-type="elementor_library">
			<div class="elementor-element elementor-element-b77ed02 e-con-full e-flex e-con e-parent" data-id="b77ed02" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-ed4c5f6 elementor-widget elementor-widget-shortcode" data-id="ed4c5f6" data-element_type="widget" data-e-type="widget" data-widget_type="shortcode.default">
					<style id="elementor-post-dynamic-19334">.elementor-19334 .elementor-element.elementor-element-443ab10 .jet-countdown-timer__item-label{color:#103256;}.elementor-19334 .elementor-element.elementor-element-443ab10 .jet-countdown-timer__item-value{color:#103256;}.elementor-19334 .elementor-element.elementor-element-31c6e2c .elementor-icon-list-item:hover .elementor-icon-list-icon i{color:#103256;}.elementor-19334 .elementor-element.elementor-element-31c6e2c .elementor-icon-list-item:hover .elementor-icon-list-icon svg{fill:#103256;}.elementor-19334 .elementor-element.elementor-element-fd36641 .elementor-nav-menu--dropdown li:not(:last-child){border-color:#f4c55a;}</style>		<div class="elementor-shortcode"><!-- TOP- & NAVIGATIONSLEISTE -->
		<div data-elementor-type="section" data-elementor-id="19334" class="elementor elementor-19334 elementor-location-header" data-elementor-post-type="elementor_library">
			<header class="elementor-element elementor-element-8834ad0 e-flex e-con-boxed e-con e-parent" data-id="8834ad0" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
					<div class="e-con-inner">
		<div class="elementor-element elementor-element-b6af4e4 e-con-full e-flex e-con e-child" data-id="b6af4e4" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-9f06734 elementor-widget elementor-widget-jet-listing-dynamic-image" data-id="9f06734" data-element_type="widget" data-e-type="widget" data-widget_type="jet-listing-dynamic-image.default">
					<div class="jet-listing jet-listing-dynamic-image" ><a href="https://www.modellbau-ried.at/" class="jet-listing-dynamic-image__link"><picture fetchpriority="high" class="jet-listing-dynamic-image__img attachment-medium_large size-medium_large" decoding="async" loading="eager">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/Logo_Modellbaumesse-768x588.jpg.webp 768w, https://www.modellbau-ried.at/wp-content/uploads/Logo_Modellbaumesse-300x230.jpg.webp 300w, https://www.modellbau-ried.at/wp-content/uploads/Logo_Modellbaumesse-150x115.jpg.webp 150w, https://www.modellbau-ried.at/wp-content/uploads/Logo_Modellbaumesse.jpg.webp 800w" sizes="(max-width: 768px) 100vw, 768px"/>
<img fetchpriority="high" width="768" height="588" src="https://www.modellbau-ried.at/wp-content/uploads/Logo_Modellbaumesse-768x588.jpg" alt="Logo_Modellbaumesse" decoding="async" srcset="https://www.modellbau-ried.at/wp-content/uploads/Logo_Modellbaumesse-768x588.jpg 768w, https://www.modellbau-ried.at/wp-content/uploads/Logo_Modellbaumesse-300x230.jpg 300w, https://www.modellbau-ried.at/wp-content/uploads/Logo_Modellbaumesse-150x115.jpg 150w, https://www.modellbau-ried.at/wp-content/uploads/Logo_Modellbaumesse.jpg 800w" sizes="(max-width: 768px) 100vw, 768px" loading="eager"/>
</picture>
</a></div>				</div>
				</div>
		<a class="elementor-element elementor-element-424cbcd e-con-full e-flex e-con e-child" data-id="424cbcd" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}" href="https://www.modellbau-ried.at">
				<div class="elementor-element elementor-element-80bea4b elementor-widget elementor-widget-heading" data-id="80bea4b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<p class="elementor-heading-title elementor-size-default">10. - 11. OKT. 2026</p>				</div>
				<div class="elementor-element elementor-element-ee82305 elementor-widget elementor-widget-heading" data-id="ee82305" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<p class="elementor-heading-title elementor-size-default">Täglich 9 - 17 Uhr</p>				</div>
				</a>
		<div class="elementor-element elementor-element-2c75188 e-con-full elementor-hidden-tablet elementor-hidden-mobile animated-slow e-flex e-con e-child" data-id="2c75188" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[],&quot;animation&quot;:&quot;none&quot;}">
		<div class="elementor-element elementor-element-efd4cde e-con-full countdown e-flex e-con e-child" data-id="efd4cde" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-4fcde64 animated-slow elementor-invisible elementor-widget elementor-widget-heading" data-id="4fcde64" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:2300}" data-widget_type="heading.default">
					<p class="elementor-heading-title elementor-size-default">Die Messe Startet in</p>				</div>
				<div class="elementor-element elementor-element-443ab10 animated-slow elementor-invisible elementor-widget elementor-widget-jet-countdown-timer" data-id="443ab10" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_animation_delay&quot;:600}" data-widget_type="jet-countdown-timer.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-countdown-timer jet-elements">
<div class="jet-countdown-timer" data-type="due_date" data-due-date="1791619200">
	<div class="jet-countdown-timer__item item-days">
	<div class="jet-countdown-timer__item-value" data-value="days"><span class="jet-countdown-timer__digit">0</span><span class="jet-countdown-timer__digit">0</span></div>
	<div class="jet-countdown-timer__item-label">Tage</div></div>
	<div class="jet-countdown-timer__item item-hours">
	<div class="jet-countdown-timer__item-value" data-value="hours"><span class="jet-countdown-timer__digit">0</span><span class="jet-countdown-timer__digit">0</span></div>
	<div class="jet-countdown-timer__item-label">Stunden</div></div>
	<div class="jet-countdown-timer__item item-minutes">
	<div class="jet-countdown-timer__item-value" data-value="minutes"><span class="jet-countdown-timer__digit">0</span><span class="jet-countdown-timer__digit">0</span></div>
	<div class="jet-countdown-timer__item-label">Minuten</div></div>
	</div>

</div>				</div>
				</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-1a05aa2 e-con-full e-flex e-con e-child" data-id="1a05aa2" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-e7532c4 jedv-enabled--yes elementor-hidden-mobile elementor-widget elementor-widget-jet-inline-svg" data-id="e7532c4" data-element_type="widget" data-e-type="widget" data-widget_type="jet-inline-svg.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-inline-svg jet-elements"><div class="jet-inline-svg__wrapper"><a class="jet-inline-svg jet-inline-svg--custom-width jet-inline-svg--custom-color" href="/?ticket-link-go=1" target="_blank" aria-label="SVG link"><div class="jet-inline-svg__inner"><?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" id="Ebene_1" data-name="Ebene 1" viewBox="0 0 79 64.6">
  <rect x="30.44" y="22.65" width="31.4" height="2" transform="translate(-5.37 17.74) rotate(-20.59)"></rect>
  <polygon points="30.4 26.4 59.8 15.4 59.2 13.5 29.7 24.5 30.4 26.4"></polygon>
  <polygon points="58.5 11.7 57.8 9.8 28.4 20.9 29.1 22.8 58.5 11.7"></polygon>
  <rect x="34.99" y="35.63" width="19.8" height="2" transform="translate(-9.99 18.06) rotate(-20.52)"></rect>
  <polygon points="51 24.9 32.5 31.9 33.2 33.7 51.7 26.8 51 24.9"></polygon>
  <rect x="31.6" y="57" width="19.8" height="2"></rect>
  <rect x="31.6" y="49.2" width="19.8" height="2"></rect>
  <polygon points="26.8 41.4 28.7 40.7 27.5 37.7 25.7 38.5 26.8 41.4"></polygon>
  <rect x="23.98" y="32.05" width="2" height="3.2" transform="translate(-10.21 10.89) rotate(-20.52)"></rect>
  <rect x="22.9" y="52.9" width="2" height="3.2"></rect>
  <rect x="21.67" y="26.09" width="2" height="3.2" transform="translate(-8.29 9.74) rotate(-20.6)"></rect>
  <polygon points="23 47.2 19.8 38.9 18 39.6 21.1 47.9 23 47.2"></polygon>
  <polygon points="17.4 49.2 19.3 48.5 14.8 36.5 12.9 37.2 17.4 49.2"></polygon>
  <polygon points="15.7 49.9 11.1 37.9 9.3 38.6 13.8 50.6 15.7 49.9"></polygon>
  <polygon points="10.5 25.5 5 27.5 8.5 36.7 13.9 34.6 10.5 25.5"></polygon>
  <path d="M67.4,0L20.9,17.4l.4.9c.4,1-.1,2.1-1.1,2.5s-2.1-.1-2.5-1.1l-.4-.9L0,25.3l3.5,9.3v30h18.5v-1c0-1.1.9-1.9,1.9-1.9,1.1,0,1.9.9,1.9,1.9v1h49.7v-32.4l3.5-1.3L67.4,0ZM2.6,26.5l13.7-5.1c.8,1.1,2.2,1.8,3.6,1.6l.2.6,1.9-.7-.3-.7c1.1-.8,1.8-2.2,1.6-3.6L62,4.2l10.2,27.1-38.7,14.5c-.8-1.2-2.2-1.8-3.6-1.6l-.2-.4-1.9.7.2.4c-1.2.8-1.8,2.2-1.6,3.6l-13.7,5.1L2.6,26.5ZM69,62.5H27.7c-.4-1.4-1.4-2.4-2.8-2.8v-.5h-2v.5c-1.4.4-2.4,1.5-2.8,2.8H5.5v-22.6l1.9,5.1v.2h.1l.8,2.1h-.8v12.8h2v-9.5l1.9,5.1v4.5h2v-4.6l1.9-.7v5.4h2v-6.1l11.6-4.4-.4-1.1c-.4-1,.1-2.1,1.1-2.5s2.1.1,2.5,1.1l.3.9,2.8-1h27.7v-2h-22.3l5.1-1.9h17.3v-2h-12l5.1-1.9h6.9v-2h-1.6l7.5-2.8v27.9h.1Z"></path>
</svg>
</div></a></div></div>				</div>
				</div>
				<div class="elementor-element elementor-element-31c6e2c elementor-icon-list--layout-inline elementor-tablet-align-end elementor-mobile-align-end elementor-hidden-mobile elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="31c6e2c" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
							<ul class="elementor-icon-list-items elementor-inline-items">
							<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.instagram.com/messeried" target="_blank">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg>						</span>
										<span class="elementor-icon-list-text"></span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.facebook.com/modellbaumesseried" target="_blank">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook-square" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z"></path></svg>						</span>
										<span class="elementor-icon-list-text"></span>
											</a>
									</li>
						</ul>
						</div>
				<div class="elementor-element elementor-element-041a338 elementor-widget elementor-widget-image" data-id="041a338" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="https://www.messe-ried.at" target="_blank">
							<img width="800" height="317" src="https://www.modellbau-ried.at/wp-content/uploads/Logo_MesseRied-1.svg" class="attachment-large size-large wp-image-20238" alt="" />								</a>
															</div>
				</div>
					</div>
				</header>
		<nav class="elementor-element elementor-element-bcb2c25 e-flex e-con-boxed e-con e-parent" data-id="bcb2c25" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[],&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_on&quot;:[&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}">
					<div class="e-con-inner">
		<nav class="elementor-element elementor-element-fa9cfd2 e-con-full e-flex e-con e-child" data-id="fa9cfd2" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-2f0c04a jedv-enabled--yes elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-jet-inline-svg" data-id="2f0c04a" data-element_type="widget" data-e-type="widget" data-widget_type="jet-inline-svg.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-inline-svg jet-elements"><div class="jet-inline-svg__wrapper"><a class="jet-inline-svg jet-inline-svg--custom-width jet-inline-svg--custom-color" href="/?ticket-link-go=1" target="_blank" aria-label="SVG link"><div class="jet-inline-svg__inner"><?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" id="Ebene_1" data-name="Ebene 1" viewBox="0 0 79 64.6">
  <rect x="30.44" y="22.65" width="31.4" height="2" transform="translate(-5.37 17.74) rotate(-20.59)"></rect>
  <polygon points="30.4 26.4 59.8 15.4 59.2 13.5 29.7 24.5 30.4 26.4"></polygon>
  <polygon points="58.5 11.7 57.8 9.8 28.4 20.9 29.1 22.8 58.5 11.7"></polygon>
  <rect x="34.99" y="35.63" width="19.8" height="2" transform="translate(-9.99 18.06) rotate(-20.52)"></rect>
  <polygon points="51 24.9 32.5 31.9 33.2 33.7 51.7 26.8 51 24.9"></polygon>
  <rect x="31.6" y="57" width="19.8" height="2"></rect>
  <rect x="31.6" y="49.2" width="19.8" height="2"></rect>
  <polygon points="26.8 41.4 28.7 40.7 27.5 37.7 25.7 38.5 26.8 41.4"></polygon>
  <rect x="23.98" y="32.05" width="2" height="3.2" transform="translate(-10.21 10.89) rotate(-20.52)"></rect>
  <rect x="22.9" y="52.9" width="2" height="3.2"></rect>
  <rect x="21.67" y="26.09" width="2" height="3.2" transform="translate(-8.29 9.74) rotate(-20.6)"></rect>
  <polygon points="23 47.2 19.8 38.9 18 39.6 21.1 47.9 23 47.2"></polygon>
  <polygon points="17.4 49.2 19.3 48.5 14.8 36.5 12.9 37.2 17.4 49.2"></polygon>
  <polygon points="15.7 49.9 11.1 37.9 9.3 38.6 13.8 50.6 15.7 49.9"></polygon>
  <polygon points="10.5 25.5 5 27.5 8.5 36.7 13.9 34.6 10.5 25.5"></polygon>
  <path d="M67.4,0L20.9,17.4l.4.9c.4,1-.1,2.1-1.1,2.5s-2.1-.1-2.5-1.1l-.4-.9L0,25.3l3.5,9.3v30h18.5v-1c0-1.1.9-1.9,1.9-1.9,1.1,0,1.9.9,1.9,1.9v1h49.7v-32.4l3.5-1.3L67.4,0ZM2.6,26.5l13.7-5.1c.8,1.1,2.2,1.8,3.6,1.6l.2.6,1.9-.7-.3-.7c1.1-.8,1.8-2.2,1.6-3.6L62,4.2l10.2,27.1-38.7,14.5c-.8-1.2-2.2-1.8-3.6-1.6l-.2-.4-1.9.7.2.4c-1.2.8-1.8,2.2-1.6,3.6l-13.7,5.1L2.6,26.5ZM69,62.5H27.7c-.4-1.4-1.4-2.4-2.8-2.8v-.5h-2v.5c-1.4.4-2.4,1.5-2.8,2.8H5.5v-22.6l1.9,5.1v.2h.1l.8,2.1h-.8v12.8h2v-9.5l1.9,5.1v4.5h2v-4.6l1.9-.7v5.4h2v-6.1l11.6-4.4-.4-1.1c-.4-1,.1-2.1,1.1-2.5s2.1.1,2.5,1.1l.3.9,2.8-1h27.7v-2h-22.3l5.1-1.9h17.3v-2h-12l5.1-1.9h6.9v-2h-1.6l7.5-2.8v27.9h.1Z"></path>
</svg>
</div></a></div></div>				</div>
				</div>
				<div class="elementor-element elementor-element-0b23be9 elementor-icon-list--layout-inline elementor-tablet-align-end elementor-mobile-align-center elementor-hidden-desktop elementor-hidden-tablet elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="0b23be9" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
							<ul class="elementor-icon-list-items elementor-inline-items">
							<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.instagram.com/messeried" target="_blank">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg>						</span>
										<span class="elementor-icon-list-text"></span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.facebook.com/modellbaumesseried" target="_blank">

												<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook-square" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z"></path></svg>						</span>
										<span class="elementor-icon-list-text"></span>
											</a>
									</li>
						</ul>
						</div>
				<div class="elementor-element elementor-element-fd36641 elementor-nav-menu__align-start elementor-nav-menu--stretch elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="fd36641" data-element_type="widget" data-e-type="widget" data-settings="{&quot;full_width&quot;:&quot;stretch&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;},&quot;layout&quot;:&quot;horizontal&quot;,&quot;toggle&quot;:&quot;burger&quot;}" data-widget_type="nav-menu.default">
								<nav aria-label="Menü" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none">
				<ul id="menu-1-fd36641" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-408"><a href="https://www.modellbau-ried.at/besucher/" class="elementor-item">Messebesuch</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1050"><a href="https://www.modellbau-ried.at/besucher/messeinfos/" class="elementor-sub-item">Messe-Infos</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12772"><a href="https://www.modellbau-ried.at/besucher/themenwelten/" class="elementor-sub-item">Messe entdecken</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21014"><a href="https://www.modellbau-ried.at/besucher/messeinfos/ticket/" class="elementor-sub-item">Tickets &#038; Preise</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-903"><a href="https://www.modellbau-ried.at/besucher/partner/" class="elementor-sub-item">Messepartner</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-887"><a href="https://www.messe-ried.at/media/bildergalerie/modellbaumesse/" class="elementor-sub-item">Impressionen</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-409"><a href="https://www.modellbau-ried.at/aussteller/" class="elementor-item">Für Aussteller</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21033"><a href="https://www.modellbau-ried.at/aussteller/standplatz-buchen/" class="elementor-sub-item">Standplatz buchen</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21117"><a href="https://www.modellbau-ried.at/aussteller/serviceheft/" class="elementor-sub-item">Informations- &#038; Serviceheft</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1458"><a href="https://www.modellbau-ried.at/aussteller/marketing-werbung/" class="elementor-sub-item">Marketing &#038; Werbung</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-888"><a href="https://www.messe-ried.at/media/bildergalerie/modellbaumesse/" class="elementor-sub-item">Impressionen</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-878"><a href="https://www.modellbau-ried.at/aussteller/kontakt/" class="elementor-sub-item">Ansprechpartner</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11102"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/" class="elementor-sub-item">Anreise &#038; Aufenthalt</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18256"><a href="https://www.modellbau-ried.at/ausstellerverzeichnis/" class="elementor-item">Ausstellerverzeichnis</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-411"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/" class="elementor-item">Anreise &#038; Aufenthalt</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-988"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/gelaende/" class="elementor-sub-item">Gelände</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-986"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/anreise/" class="elementor-sub-item">Anreise</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-987"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/unterkunft-tourismus/" class="elementor-sub-item">Unterkunft &#038; Tourismus</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-410"><a href="https://www.modellbau-ried.at/media/" class="elementor-item">Media</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-628"><a target="_blank" href="https://www.messe-ried.at/media/newsletter/" class="elementor-sub-item">Newsletter</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-629"><a target="_blank" href="https://www.messe-ried.at/media/modellbaumesse" class="elementor-sub-item">Bildergalerien</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-631"><a target="_blank" href="https://www.messe-ried.at/presse/modellbaumesse" class="elementor-sub-item">Downloads</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-630"><a target="_blank" href="https://www.messe-ried.at/presse/modellbaumesse" class="elementor-sub-item">Presse</a></li>
</ul>
</li>
</ul>			</nav>
					<div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menü Umschalter" aria-expanded="false">
			<svg aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open e-font-icon-svg e-eicon-menu-bar" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z"></path></svg><svg aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close e-font-icon-svg e-eicon-close" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z"></path></svg>		</div>
					<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-fd36641" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-408"><a href="https://www.modellbau-ried.at/besucher/" class="elementor-item" tabindex="-1">Messebesuch</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1050"><a href="https://www.modellbau-ried.at/besucher/messeinfos/" class="elementor-sub-item" tabindex="-1">Messe-Infos</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12772"><a href="https://www.modellbau-ried.at/besucher/themenwelten/" class="elementor-sub-item" tabindex="-1">Messe entdecken</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21014"><a href="https://www.modellbau-ried.at/besucher/messeinfos/ticket/" class="elementor-sub-item" tabindex="-1">Tickets &#038; Preise</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-903"><a href="https://www.modellbau-ried.at/besucher/partner/" class="elementor-sub-item" tabindex="-1">Messepartner</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-887"><a href="https://www.messe-ried.at/media/bildergalerie/modellbaumesse/" class="elementor-sub-item" tabindex="-1">Impressionen</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-409"><a href="https://www.modellbau-ried.at/aussteller/" class="elementor-item" tabindex="-1">Für Aussteller</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21033"><a href="https://www.modellbau-ried.at/aussteller/standplatz-buchen/" class="elementor-sub-item" tabindex="-1">Standplatz buchen</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21117"><a href="https://www.modellbau-ried.at/aussteller/serviceheft/" class="elementor-sub-item" tabindex="-1">Informations- &#038; Serviceheft</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1458"><a href="https://www.modellbau-ried.at/aussteller/marketing-werbung/" class="elementor-sub-item" tabindex="-1">Marketing &#038; Werbung</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-888"><a href="https://www.messe-ried.at/media/bildergalerie/modellbaumesse/" class="elementor-sub-item" tabindex="-1">Impressionen</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-878"><a href="https://www.modellbau-ried.at/aussteller/kontakt/" class="elementor-sub-item" tabindex="-1">Ansprechpartner</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11102"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/" class="elementor-sub-item" tabindex="-1">Anreise &#038; Aufenthalt</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18256"><a href="https://www.modellbau-ried.at/ausstellerverzeichnis/" class="elementor-item" tabindex="-1">Ausstellerverzeichnis</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-411"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/" class="elementor-item" tabindex="-1">Anreise &#038; Aufenthalt</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-988"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/gelaende/" class="elementor-sub-item" tabindex="-1">Gelände</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-986"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/anreise/" class="elementor-sub-item" tabindex="-1">Anreise</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-987"><a href="https://www.modellbau-ried.at/anreise-aufenthalt/unterkunft-tourismus/" class="elementor-sub-item" tabindex="-1">Unterkunft &#038; Tourismus</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-410"><a href="https://www.modellbau-ried.at/media/" class="elementor-item" tabindex="-1">Media</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-628"><a target="_blank" href="https://www.messe-ried.at/media/newsletter/" class="elementor-sub-item" tabindex="-1">Newsletter</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-629"><a target="_blank" href="https://www.messe-ried.at/media/modellbaumesse" class="elementor-sub-item" tabindex="-1">Bildergalerien</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-631"><a target="_blank" href="https://www.messe-ried.at/presse/modellbaumesse" class="elementor-sub-item" tabindex="-1">Downloads</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-630"><a target="_blank" href="https://www.messe-ried.at/presse/modellbaumesse" class="elementor-sub-item" tabindex="-1">Presse</a></li>
</ul>
</li>
</ul>			</nav>
						</div>
				</nav>
		<div class="elementor-element elementor-element-60fe7d2 e-con-full e-flex e-con e-child" data-id="60fe7d2" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-446e69b elementor-widget elementor-widget-search" data-id="446e69b" data-element_type="widget" data-e-type="widget" data-settings="{&quot;submit_trigger&quot;:&quot;key_enter&quot;,&quot;pagination_type_options&quot;:&quot;none&quot;}" data-widget_type="search.default">
							<search class="e-search hidden" role="search">
			<form class="e-search-form" action="https://www.modellbau-ried.at" method="get">

				
				<label class="e-search-label" for="search-446e69b">
					<span class="elementor-screen-only">
						Suche					</span>
									</label>

				<div class="e-search-input-wrapper">
					<input id="search-446e69b" placeholder="Tippe, um zu Suchen..." class="e-search-input" type="search" name="s" value="" autocomplete="on" role="combobox" aria-autocomplete="list" aria-expanded="false" aria-controls="results-446e69b" aria-haspopup="listbox">
					<svg aria-hidden="true" class="e-font-icon-svg e-fas-times" viewBox="0 0 352 512" xmlns="http://www.w3.org/2000/svg"><path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>										<output id="results-446e69b" class="e-search-results-container hide-loader" aria-live="polite" aria-atomic="true" aria-label="Ergebnisse für Suche" tabindex="0">
						<div class="e-search-results"></div>
											</output>
									</div>
				
				
				<button class="e-search-submit elementor-screen-only " type="submit" aria-label="Suche">
					
									</button>
				<input type="hidden" name="e_search_props" value="446e69b-19334">
			</form>
		</search>
						</div>
				</div>
					</div>
				</nav>
				</div>
		</div>
						</div>
				</div>
		<div class="elementor-element elementor-element-84684c9 e-con-full e-flex e-con e-parent" data-id="84684c9" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-ec9c740 e-con-full e-flex e-con e-child" data-id="ec9c740" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-b1060db elementor-widget elementor-widget-shortcode" data-id="b1060db" data-element_type="widget" data-e-type="widget" data-widget_type="shortcode.default">
							<div class="elementor-shortcode">		<div data-elementor-type="section" data-elementor-id="13779" class="elementor elementor-13779 elementor-location-header" data-elementor-post-type="elementor_library">
			<div class="elementor-element elementor-element-472d857 e-con-full elementor-hidden-mobile e-flex e-con e-parent" data-id="472d857" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-f09b578 e-con-full jedv-enabled--yes e-flex e-con e-child" data-id="f09b578" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;}">
				<div class="elementor-element elementor-element-e4f958e elementor-widget elementor-widget-jet-listing-grid" data-id="e4f958e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;columns&quot;:&quot;1&quot;}" data-widget_type="jet-listing-grid.default">
					<div class="jet-listing-grid jet-listing"><div class="jet-listing-grid__slider swiper-lib swiper" data-slider_options="{&quot;autoplaySpeed&quot;:5000,&quot;autoplay&quot;:true,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:500,&quot;arrows&quot;:true,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:1,&quot;prevArrow&quot;:&quot;\u003Cdiv class=\u0027jet-listing-grid__slider-icon prev-arrow \u0027 role=\u0027button\u0027 aria-label=\u0027Previous\u0027\u003E\u003Csvg width=\u0027180\u0027 height=\u0027180\u0027 viewBox=\u00270 0 180 180\u0027 fill=\u0027none\u0027 xmlns=\u0027http:\/\/www.w3.org\/2000\/svg\u0027\u003E\u003Cpath d=\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\u0027 fill=\u0027black\u0027\/\u003E\u003C\/svg\u003E\u003C\/div\u003E&quot;,&quot;nextArrow&quot;:&quot;\u003Cdiv class=\u0027jet-listing-grid__slider-icon next-arrow \u0027 role=\u0027button\u0027 aria-label=\u0027Next\u0027\u003E\u003Csvg width=\u0027180\u0027 height=\u0027180\u0027 viewBox=\u00270 0 180 180\u0027 fill=\u0027none\u0027 xmlns=\u0027http:\/\/www.w3.org\/2000\/svg\u0027\u003E\u003Cpath d=\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\u0027 fill=\u0027black\u0027\/\u003E\u003C\/svg\u003E\u003C\/div\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:2,&quot;fade&quot;:false,&quot;slidesToShow&quot;:{&quot;desktop&quot;:1,&quot;tablet&quot;:1,&quot;mobile&quot;:1}}" dir="ltr"><div class="jet-listing-grid__items grid-col-desk-1 grid-col-tablet-1 grid-col-mobile-1 jet-listing-grid--13813 swiper-wrapper" data-queried-id="21195|WP_Post" data-nav="{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:13813,&quot;posts_num&quot;:100,&quot;columns&quot;:1,&quot;columns_tablet&quot;:1,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:null,&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}" data-page="1" data-pages="1" data-listing-source="posts" data-listing-id="13813" data-query-id=""><div class="jet-listing-grid__item jet-listing-dynamic-post-13573 elementor-dcss-3785241481978552" data-post-id="13573"  ><style type="text/css">:is( .jet-listing-dynamic-post-13573:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241481978552 ) .elementor-element.elementor-element-0673f36:not(.elementor-motion-effects-element-type-background), :is( .jet-listing-dynamic-post-13573:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241481978552 ) .elementor-element.elementor-element-0673f36 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-1bc8c77d-2967-410c-b7f6-0b4888a6e877);}:is( .jet-listing-dynamic-post-13573:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241481978552 ) .elementor-element.elementor-element-df22311:not(.elementor-motion-effects-element-type-background), :is( .jet-listing-dynamic-post-13573:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241481978552 ) .elementor-element.elementor-element-df22311 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-002def1f-69f9-451c-b67d-4effc7a63933);}</style>		<div data-elementor-type="jet-listing-items" data-elementor-id="13813" class="elementor elementor-13813" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-0673f36 e-con-full elementor-hidden-mobile e-flex e-con e-parent" data-id="0673f36" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
				</div>
		<div class="elementor-element elementor-element-df22311 e-con-full elementor-hidden-desktop elementor-hidden-tablet e-flex e-con e-parent" data-id="df22311" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
				</div>
				</div>
		</div><div class="jet-listing-grid__item jet-listing-dynamic-post-13578 elementor-dcss-3785241505935793" data-post-id="13578"  ><style type="text/css">:is( .jet-listing-dynamic-post-13578:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241505935793 ) .elementor-element.elementor-element-0673f36:not(.elementor-motion-effects-element-type-background), :is( .jet-listing-dynamic-post-13578:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241505935793 ) .elementor-element.elementor-element-0673f36 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-7b1d2000-a844-4116-8033-388fdef2cad3);}:is( .jet-listing-dynamic-post-13578:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241505935793 ) .elementor-element.elementor-element-df22311:not(.elementor-motion-effects-element-type-background), :is( .jet-listing-dynamic-post-13578:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241505935793 ) .elementor-element.elementor-element-df22311 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-cadde1f0-8e41-469b-b1c0-32dc27e3c342);}</style>		<div data-elementor-type="jet-listing-items" data-elementor-id="13813" class="elementor elementor-13813" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-0673f36 e-con-full elementor-hidden-mobile e-flex e-con e-parent" data-id="0673f36" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
				</div>
		<div class="elementor-element elementor-element-df22311 e-con-full elementor-hidden-desktop elementor-hidden-tablet e-flex e-con e-parent" data-id="df22311" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
				</div>
				</div>
		</div></div></div></div>				</div>
		<div class="elementor-element elementor-element-5a51115 e-flex e-con-boxed e-con e-child" data-id="5a51115" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;addf6b7&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
		<div class="elementor-element elementor-element-c14d43e e-con-full jedv-enabled--yes e-flex e-con e-child" data-id="c14d43e" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-7738b8b elementor-widget__width-auto elementor-widget elementor-widget-heading" data-id="7738b8b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h1 class="elementor-heading-title elementor-size-default">RC-Modellbau</h1>				</div>
				<div class="elementor-element elementor-element-561c3d1 jedv-enabled--yes elementor-widget elementor-widget-heading" data-id="561c3d1" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">RC-HELI-JUNIORENWELTMEISTER</h2>				</div>
				</div>
					</div>
				</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-11ae12c e-con-full elementor-hidden-desktop elementor-hidden-tablet e-flex e-con e-parent" data-id="11ae12c" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-bfad6db e-con-full jedv-enabled--yes e-flex e-con e-child" data-id="bfad6db" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;}">
				<div class="elementor-element elementor-element-9276ae7 elementor-widget elementor-widget-jet-listing-grid" data-id="9276ae7" data-element_type="widget" data-e-type="widget" data-settings="{&quot;columns&quot;:&quot;1&quot;}" data-widget_type="jet-listing-grid.default">
					<div class="jet-listing-grid jet-listing"><div class="jet-listing-grid__slider swiper-lib swiper" data-slider_options="{&quot;autoplaySpeed&quot;:5000,&quot;autoplay&quot;:true,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:500,&quot;arrows&quot;:true,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:1,&quot;prevArrow&quot;:&quot;\u003Cdiv class=\u0027jet-listing-grid__slider-icon prev-arrow \u0027 role=\u0027button\u0027 aria-label=\u0027Previous\u0027\u003E\u003Csvg width=\u0027180\u0027 height=\u0027180\u0027 viewBox=\u00270 0 180 180\u0027 fill=\u0027none\u0027 xmlns=\u0027http:\/\/www.w3.org\/2000\/svg\u0027\u003E\u003Cpath d=\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\u0027 fill=\u0027black\u0027\/\u003E\u003C\/svg\u003E\u003C\/div\u003E&quot;,&quot;nextArrow&quot;:&quot;\u003Cdiv class=\u0027jet-listing-grid__slider-icon next-arrow \u0027 role=\u0027button\u0027 aria-label=\u0027Next\u0027\u003E\u003Csvg width=\u0027180\u0027 height=\u0027180\u0027 viewBox=\u00270 0 180 180\u0027 fill=\u0027none\u0027 xmlns=\u0027http:\/\/www.w3.org\/2000\/svg\u0027\u003E\u003Cpath d=\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\u0027 fill=\u0027black\u0027\/\u003E\u003C\/svg\u003E\u003C\/div\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:2,&quot;fade&quot;:false,&quot;slidesToShow&quot;:{&quot;desktop&quot;:1,&quot;tablet&quot;:1,&quot;mobile&quot;:1}}" dir="ltr"><div class="jet-listing-grid__items grid-col-desk-1 grid-col-tablet-1 grid-col-mobile-1 jet-listing-grid--13813 swiper-wrapper" data-queried-id="21195|WP_Post" data-nav="{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:13813,&quot;posts_num&quot;:100,&quot;columns&quot;:1,&quot;columns_tablet&quot;:1,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:null,&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}" data-page="1" data-pages="1" data-listing-source="posts" data-listing-id="13813" data-query-id=""><div class="jet-listing-grid__item jet-listing-dynamic-post-13573 elementor-dcss-3785241481978552" data-post-id="13573"  ><style type="text/css">:is( .jet-listing-dynamic-post-13573:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241481978552 ) .elementor-element.elementor-element-0673f36:not(.elementor-motion-effects-element-type-background), :is( .jet-listing-dynamic-post-13573:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241481978552 ) .elementor-element.elementor-element-0673f36 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-1bc8c77d-2967-410c-b7f6-0b4888a6e877);}:is( .jet-listing-dynamic-post-13573:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241481978552 ) .elementor-element.elementor-element-df22311:not(.elementor-motion-effects-element-type-background), :is( .jet-listing-dynamic-post-13573:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241481978552 ) .elementor-element.elementor-element-df22311 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-002def1f-69f9-451c-b67d-4effc7a63933);}</style>		<div data-elementor-type="jet-listing-items" data-elementor-id="13813" class="elementor elementor-13813" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-0673f36 e-con-full elementor-hidden-mobile e-flex e-con e-parent" data-id="0673f36" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
				</div>
		<div class="elementor-element elementor-element-df22311 e-con-full elementor-hidden-desktop elementor-hidden-tablet e-flex e-con e-parent" data-id="df22311" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
				</div>
				</div>
		</div><div class="jet-listing-grid__item jet-listing-dynamic-post-13578 elementor-dcss-3785241505935793" data-post-id="13578"  ><style type="text/css">:is( .jet-listing-dynamic-post-13578:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241505935793 ) .elementor-element.elementor-element-0673f36:not(.elementor-motion-effects-element-type-background), :is( .jet-listing-dynamic-post-13578:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241505935793 ) .elementor-element.elementor-element-0673f36 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-7b1d2000-a844-4116-8033-388fdef2cad3);}:is( .jet-listing-dynamic-post-13578:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241505935793 ) .elementor-element.elementor-element-df22311:not(.elementor-motion-effects-element-type-background), :is( .jet-listing-dynamic-post-13578:not( [class*="elementor-dcss-"] ), .elementor-dcss-3785241505935793 ) .elementor-element.elementor-element-df22311 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-cadde1f0-8e41-469b-b1c0-32dc27e3c342);}</style>		<div data-elementor-type="jet-listing-items" data-elementor-id="13813" class="elementor elementor-13813" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-0673f36 e-con-full elementor-hidden-mobile e-flex e-con e-parent" data-id="0673f36" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
				</div>
		<div class="elementor-element elementor-element-df22311 e-con-full elementor-hidden-desktop elementor-hidden-tablet e-flex e-con e-parent" data-id="df22311" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
				</div>
				</div>
		</div></div></div></div>				</div>
		<div class="elementor-element elementor-element-c1355dd e-flex e-con-boxed e-con e-child" data-id="c1355dd" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;addf6b7&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
		<div class="elementor-element elementor-element-ffe5735 e-con-full jedv-enabled--yes e-flex e-con e-child" data-id="ffe5735" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-2d2b660 elementor-widget__width-auto elementor-widget elementor-widget-heading" data-id="2d2b660" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h1 class="elementor-heading-title elementor-size-default">RC-Modellbau</h1>				</div>
				<div class="elementor-element elementor-element-a3659eb jedv-enabled--yes elementor-widget elementor-widget-heading" data-id="a3659eb" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">RC-HELI-JUNIORENWELTMEISTER</h2>				</div>
				</div>
					</div>
				</div>
				</div>
				</div>
				</div>
		</div>
						</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-142b519 e-flex e-con-boxed e-con e-parent" data-id="142b519" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-40375b4 elementor-widget elementor-widget-shortcode" data-id="40375b4" data-element_type="widget" data-e-type="widget" data-widget_type="shortcode.default">
							<div class="elementor-shortcode"><!-- PARTNERLEISTE --> 
		<div data-elementor-type="section" data-elementor-id="19328" class="elementor elementor-19328 elementor-location-header" data-elementor-post-type="elementor_library">
			<div class="elementor-element elementor-element-8520338 e-flex e-con-boxed e-con e-parent" data-id="8520338" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5b084a0 elementor-hidden-mobile elementor-widget elementor-widget-jet-listing-grid" data-id="5b084a0" data-element_type="widget" data-e-type="widget" data-settings="{&quot;columns&quot;:&quot;10&quot;,&quot;columns_mobile&quot;:&quot;4&quot;,&quot;columns_tablet&quot;:&quot;6&quot;}" data-widget_type="jet-listing-grid.default">
					<div class="jet-listing-grid jet-listing"><div class="jet-listing-grid__items grid-col-desk-10 grid-col-tablet-6 grid-col-mobile-4 jet-listing-grid--207" data-queried-id="21195|WP_Post" data-nav="{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:207,&quot;posts_num&quot;:10,&quot;columns&quot;:10,&quot;columns_tablet&quot;:6,&quot;columns_mobile&quot;:4,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:null,&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}" data-page="1" data-pages="1" data-listing-source="posts" data-listing-id="207" data-query-id=""><div class="jet-listing-grid__item jet-listing-dynamic-post-18741 elementor-dcss-3785241570559091" data-post-id="18741"  >		<div data-elementor-type="jet-listing-items" data-elementor-id="207" class="elementor elementor-207" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-9965b1f e-flex e-con-boxed e-con e-parent" data-id="9965b1f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;60edf1c&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8110b52 elementor-widget elementor-widget-image" data-id="8110b52" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="http://www.sparesortgeinberg.at" target="_blank">
							<picture class="attachment-medium size-medium wp-image-18742">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px.jpg.webp 300w, https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px-150x75.jpg.webp 150w" sizes="(max-width: 300px) 100vw, 300px"/>
<img width="300" height="150" src="https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px.jpg" alt="" srcset="https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px.jpg 300w, https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px-150x75.jpg 150w" sizes="(max-width: 300px) 100vw, 300px"/>
</picture>
								</a>
															</div>
					</div>
				</div>
				</div>
		</div><div class="jet-listing-grid__item jet-listing-dynamic-post-11925 elementor-dcss-3785241579860871" data-post-id="11925"  >		<div data-elementor-type="jet-listing-items" data-elementor-id="207" class="elementor elementor-207" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-9965b1f e-flex e-con-boxed e-con e-parent" data-id="9965b1f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;60edf1c&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8110b52 elementor-widget elementor-widget-image" data-id="8110b52" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="https://www.nachrichten.at/" target="_blank">
							<picture class="attachment-medium size-medium wp-image-11926">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150.jpg.webp 300w, https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150-150x75.jpg.webp 150w" sizes="(max-width: 300px) 100vw, 300px"/>
<img width="300" height="150" src="https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150.jpg" alt="" srcset="https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150.jpg 300w, https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150-150x75.jpg 150w" sizes="(max-width: 300px) 100vw, 300px"/>
</picture>
								</a>
															</div>
					</div>
				</div>
				</div>
		</div><div class="jet-listing-grid__item jet-listing-dynamic-post-10786 elementor-dcss-3785241590970025" data-post-id="10786"  >		<div data-elementor-type="jet-listing-items" data-elementor-id="207" class="elementor elementor-207" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-9965b1f e-flex e-con-boxed e-con e-parent" data-id="9965b1f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;60edf1c&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8110b52 elementor-widget elementor-widget-image" data-id="8110b52" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="https://www.katzlberger.at/" target="_blank">
							<picture loading="lazy" class="attachment-medium size-medium wp-image-10787">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/Katzlberger.jpg.webp 300w, https://www.modellbau-ried.at/wp-content/uploads/Katzlberger-150x75.jpg.webp 150w" sizes="(max-width: 300px) 100vw, 300px"/>
<img loading="lazy" width="300" height="150" src="https://www.modellbau-ried.at/wp-content/uploads/Katzlberger.jpg" alt="" srcset="https://www.modellbau-ried.at/wp-content/uploads/Katzlberger.jpg 300w, https://www.modellbau-ried.at/wp-content/uploads/Katzlberger-150x75.jpg 150w" sizes="(max-width: 300px) 100vw, 300px"/>
</picture>
								</a>
															</div>
					</div>
				</div>
				</div>
		</div><div class="jet-listing-grid__item jet-listing-dynamic-post-211 elementor-dcss-3785241597945184" data-post-id="211"  >		<div data-elementor-type="jet-listing-items" data-elementor-id="207" class="elementor elementor-207" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-9965b1f e-flex e-con-boxed e-con e-parent" data-id="9965b1f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;60edf1c&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8110b52 elementor-widget elementor-widget-image" data-id="8110b52" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="https://ooe.orf.at" target="_blank">
							<picture loading="lazy" class="attachment-medium size-medium wp-image-13544">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px.jpg.webp 300w, https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px-150x75.jpg.webp 150w" sizes="(max-width: 300px) 100vw, 300px"/>
<img loading="lazy" width="300" height="150" src="https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px.jpg" alt="" srcset="https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px.jpg 300w, https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px-150x75.jpg 150w" sizes="(max-width: 300px) 100vw, 300px"/>
</picture>
								</a>
															</div>
					</div>
				</div>
				</div>
		</div></div></div>				</div>
				<div class="elementor-element elementor-element-6d2a216 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-jet-listing-grid" data-id="6d2a216" data-element_type="widget" data-e-type="widget" data-settings="{&quot;columns&quot;:&quot;10&quot;,&quot;columns_mobile&quot;:&quot;4&quot;,&quot;columns_tablet&quot;:&quot;6&quot;}" data-widget_type="jet-listing-grid.default">
					<div class="jet-listing-grid jet-listing"><div class="jet-listing-grid__slider swiper-lib swiper" data-slider_options="{&quot;autoplaySpeed&quot;:1000,&quot;autoplay&quot;:true,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:500,&quot;arrows&quot;:false,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:1,&quot;prevArrow&quot;:&quot;\u003Cdiv class=\u0027jet-listing-grid__slider-icon prev-arrow \u0027 role=\u0027button\u0027 aria-label=\u0027Previous\u0027\u003E\u003Csvg width=\u0027180\u0027 height=\u0027180\u0027 viewBox=\u00270 0 180 180\u0027 fill=\u0027none\u0027 xmlns=\u0027http:\/\/www.w3.org\/2000\/svg\u0027\u003E\u003Cpath d=\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\u0027 fill=\u0027black\u0027\/\u003E\u003C\/svg\u003E\u003C\/div\u003E&quot;,&quot;nextArrow&quot;:&quot;\u003Cdiv class=\u0027jet-listing-grid__slider-icon next-arrow \u0027 role=\u0027button\u0027 aria-label=\u0027Next\u0027\u003E\u003Csvg width=\u0027180\u0027 height=\u0027180\u0027 viewBox=\u00270 0 180 180\u0027 fill=\u0027none\u0027 xmlns=\u0027http:\/\/www.w3.org\/2000\/svg\u0027\u003E\u003Cpath d=\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\u0027 fill=\u0027black\u0027\/\u003E\u003C\/svg\u003E\u003C\/div\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:4,&quot;fade&quot;:false,&quot;slidesToShow&quot;:{&quot;desktop&quot;:10,&quot;tablet&quot;:6,&quot;mobile&quot;:4}}" dir="ltr"><div class="jet-listing-grid__items grid-col-desk-10 grid-col-tablet-6 grid-col-mobile-4 jet-listing-grid--207 swiper-wrapper" data-queried-id="21195|WP_Post" data-nav="{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:207,&quot;posts_num&quot;:10,&quot;columns&quot;:10,&quot;columns_tablet&quot;:6,&quot;columns_mobile&quot;:4,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:null,&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:1000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}" data-page="1" data-pages="1" data-listing-source="posts" data-listing-id="207" data-query-id=""><div class="jet-listing-grid__item jet-listing-dynamic-post-18741 elementor-dcss-3785241570559091" data-post-id="18741"  >		<div data-elementor-type="jet-listing-items" data-elementor-id="207" class="elementor elementor-207" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-9965b1f e-flex e-con-boxed e-con e-parent" data-id="9965b1f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;60edf1c&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8110b52 elementor-widget elementor-widget-image" data-id="8110b52" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="http://www.sparesortgeinberg.at" target="_blank">
							<picture class="attachment-medium size-medium wp-image-18742">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px.jpg.webp 300w, https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px-150x75.jpg.webp 150w" sizes="(max-width: 300px) 100vw, 300px"/>
<img width="300" height="150" src="https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px.jpg" alt="" srcset="https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px.jpg 300w, https://www.modellbau-ried.at/wp-content/uploads/spa-resort-geinberg-logo-blau_druck_300x150-px-150x75.jpg 150w" sizes="(max-width: 300px) 100vw, 300px"/>
</picture>
								</a>
															</div>
					</div>
				</div>
				</div>
		</div><div class="jet-listing-grid__item jet-listing-dynamic-post-11925 elementor-dcss-3785241579860871" data-post-id="11925"  >		<div data-elementor-type="jet-listing-items" data-elementor-id="207" class="elementor elementor-207" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-9965b1f e-flex e-con-boxed e-con e-parent" data-id="9965b1f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;60edf1c&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8110b52 elementor-widget elementor-widget-image" data-id="8110b52" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="https://www.nachrichten.at/" target="_blank">
							<picture class="attachment-medium size-medium wp-image-11926">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150.jpg.webp 300w, https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150-150x75.jpg.webp 150w" sizes="(max-width: 300px) 100vw, 300px"/>
<img width="300" height="150" src="https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150.jpg" alt="" srcset="https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150.jpg 300w, https://www.modellbau-ried.at/wp-content/uploads/OOeNachrichten_300x150-150x75.jpg 150w" sizes="(max-width: 300px) 100vw, 300px"/>
</picture>
								</a>
															</div>
					</div>
				</div>
				</div>
		</div><div class="jet-listing-grid__item jet-listing-dynamic-post-10786 elementor-dcss-3785241590970025" data-post-id="10786"  >		<div data-elementor-type="jet-listing-items" data-elementor-id="207" class="elementor elementor-207" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-9965b1f e-flex e-con-boxed e-con e-parent" data-id="9965b1f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;60edf1c&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8110b52 elementor-widget elementor-widget-image" data-id="8110b52" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="https://www.katzlberger.at/" target="_blank">
							<picture loading="lazy" class="attachment-medium size-medium wp-image-10787">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/Katzlberger.jpg.webp 300w, https://www.modellbau-ried.at/wp-content/uploads/Katzlberger-150x75.jpg.webp 150w" sizes="(max-width: 300px) 100vw, 300px"/>
<img loading="lazy" width="300" height="150" src="https://www.modellbau-ried.at/wp-content/uploads/Katzlberger.jpg" alt="" srcset="https://www.modellbau-ried.at/wp-content/uploads/Katzlberger.jpg 300w, https://www.modellbau-ried.at/wp-content/uploads/Katzlberger-150x75.jpg 150w" sizes="(max-width: 300px) 100vw, 300px"/>
</picture>
								</a>
															</div>
					</div>
				</div>
				</div>
		</div><div class="jet-listing-grid__item jet-listing-dynamic-post-211 elementor-dcss-3785241597945184" data-post-id="211"  >		<div data-elementor-type="jet-listing-items" data-elementor-id="207" class="elementor elementor-207" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-9965b1f e-flex e-con-boxed e-con e-parent" data-id="9965b1f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;60edf1c&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-8110b52 elementor-widget elementor-widget-image" data-id="8110b52" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="https://ooe.orf.at" target="_blank">
							<picture loading="lazy" class="attachment-medium size-medium wp-image-13544">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px.jpg.webp 300w, https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px-150x75.jpg.webp 150w" sizes="(max-width: 300px) 100vw, 300px"/>
<img loading="lazy" width="300" height="150" src="https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px.jpg" alt="" srcset="https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px.jpg 300w, https://www.modellbau-ried.at/wp-content/uploads/ORF_OOe_Slogan_300x150px-150x75.jpg 150w" sizes="(max-width: 300px) 100vw, 300px"/>
</picture>
								</a>
															</div>
					</div>
				</div>
				</div>
		</div></div></div></div>				</div>
					</div>
				</div>
				</div>
		</div>
						</div>
					</div>
				</div>
				</header>
				<div data-elementor-type="single-page" data-elementor-id="4373" class="elementor elementor-4373 elementor-location-single" data-elementor-post-type="elementor_library">
			<div class="elementor-element elementor-element-0b98771 e-flex e-con-boxed e-con e-parent" data-id="0b98771" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
					<div class="e-con-inner">
		<div class="elementor-element elementor-element-52ba1d1 e-con-full e-flex e-con e-child" data-id="52ba1d1" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-fd288b4 elementor-widget elementor-widget-shortcode" data-id="fd288b4" data-element_type="widget" data-e-type="widget" data-widget_type="shortcode.default">
					<style id="elementor-post-dynamic-414">.elementor-414 .elementor-element.elementor-element-0f81c7f .elementor-heading-title{color:#f4c55a;}</style>		<div class="elementor-shortcode"><!-- SLOGAN & BREADCRUMB -->
		<div data-elementor-type="section" data-elementor-id="414" class="elementor elementor-414 elementor-location-single" data-elementor-post-type="elementor_library">
			<div class="elementor-element elementor-element-5d42639 e-flex e-con-boxed e-con e-parent" data-id="5d42639" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;9c27d2c&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-0f81c7f elementor-widget elementor-widget-heading" data-id="0f81c7f" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<p class="elementor-heading-title elementor-size-default">KLEINE WELT TRIFFT GROSSE TRÄUME</p>				</div>
				<div class="elementor-element elementor-element-07bbba5 elementor-widget elementor-widget-jet-breadcrumbs" data-id="07bbba5" data-element_type="widget" data-e-type="widget" data-widget_type="jet-breadcrumbs.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-breadcrumbs jet-blocks">
		<div class="jet-breadcrumbs">
		<div class="jet-breadcrumbs__content">
		<div class="jet-breadcrumbs__wrap"><div class="jet-breadcrumbs__item"><a href="https://www.modellbau-ried.at/" class="jet-breadcrumbs__item-link is-home" rel="home" title="Modellbaumesse Ried">Modellbaumesse Ried</a></div>
			 <div class="jet-breadcrumbs__item"><div class="jet-breadcrumbs__item-sep"><span class="jet-blocks-icon"><svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg></span></div></div> <div class="jet-breadcrumbs__item"><span class="jet-breadcrumbs__item-target">404 Not Found</span></div>
		</div>
		</div>
		</div>
		<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Modellbaumesse Ried","item":{"@id":"https://www.modellbau-ried.at/"}},{"@type":"ListItem","position":2,"name":"404 Not Found"}]}</script></div>				</div>
				</div>
					</div>
				</div>
				</div>
		</div>
						</div>
				</div>
		<div class="elementor-element elementor-element-5c7f19e e-con-full e-flex e-con e-child" data-id="5c7f19e" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-9588b06 e-con-full e-flex e-con e-child" data-id="9588b06" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;}">
				<div class="elementor-element elementor-element-87cb9cc elementor-widget elementor-widget-heading" data-id="87cb9cc" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h1 class="elementor-heading-title elementor-size-default">404</h1>				</div>
				<div class="elementor-element elementor-element-0daa1b7 elementor-widget elementor-widget-heading" data-id="0daa1b7" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h1 class="elementor-heading-title elementor-size-default">Seite leider nicht gefunden!</h1>				</div>
				<div class="elementor-element elementor-element-abeb26d elementor-align-justify elementor-mobile-align-justify elementor-widget elementor-widget-button" data-id="abeb26d" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
										<a class="elementor-button elementor-button-link elementor-size-sm" href="https://www.modellbau-ried.at">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg xmlns="http://www.w3.org/2000/svg" width="23.226" height="13.626" viewBox="0 0 23.226 13.626"><g id="Gruppe_12" data-name="Gruppe 12" transform="translate(0)"><path id="Pfad_35" data-name="Pfad 35" d="M-61.513-71.187h4.991a.524.524,0,0,0,.383-.166l5.935-6.322a.524.524,0,0,0,0-.72l-5.933-6.256a.525.525,0,0,0-.38-.163H-61.5a.524.524,0,0,0-.481.317.524.524,0,0,0,.1.567l5.419,5.715a.261.261,0,0,1,0,.359L-61.9-72.069a.524.524,0,0,0-.1.567.524.524,0,0,0,.481.316m-11.25,0h4.99a.524.524,0,0,0,.383-.166l5.935-6.322a.524.524,0,0,0,0-.72l-5.936-6.256a.524.524,0,0,0-.379-.163h-4.984a.524.524,0,0,0-.482.317.524.524,0,0,0,.1.568l5.419,5.719a.262.262,0,0,1,0,.36l-5.43,5.781a.524.524,0,0,0-.1.567.524.524,0,0,0,.481.316" transform="translate(73.287 84.813)" fill="#fff"></path></g></svg>			</span>
									<span class="elementor-button-text">Gehe zur Startseite</span>
					</span>
					</a>
								</div>
				</div>
		<div class="elementor-element elementor-element-17229bc e-con-full e-flex e-con e-child" data-id="17229bc" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;}">
				<div class="elementor-element elementor-element-b060018 elementor-widget elementor-widget-shortcode" data-id="b060018" data-element_type="widget" data-e-type="widget" data-widget_type="shortcode.default">
							<div class="elementor-shortcode"><!-- SIDEBAR -->
		<div data-elementor-type="section" data-elementor-id="7743" class="elementor elementor-7743 elementor-location-single" data-elementor-post-type="elementor_library">
			<div class="elementor-element elementor-element-80d7420 e-flex e-con-boxed e-con e-parent" data-id="80d7420" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
					<div class="e-con-inner">
		<div class="elementor-element elementor-element-651c2b0 e-con-full e-flex e-con e-child" data-id="651c2b0" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;cced41d&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
				<div class="elementor-element elementor-element-a355011 elementor-widget elementor-widget-video" data-id="a355011" data-element_type="widget" data-e-type="widget" data-settings="{&quot;video_type&quot;:&quot;hosted&quot;,&quot;controls&quot;:&quot;yes&quot;}" data-widget_type="video.default">
							<div class="e-hosted-video elementor-wrapper elementor-open-inline">
					<video class="elementor-video" src="https://www.modellbau-ried.at/wp-content/uploads/MODELLBAUMESSE.mp4" controls="" preload="metadata" controlsList="nodownload"></video>
				</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-bb0d8c0 jedv-enabled--yes elementor-widget elementor-widget-shortcode" data-id="bb0d8c0" data-element_type="widget" data-e-type="widget" data-widget_type="shortcode.default">
					<style id="elementor-post-dynamic-20231">.elementor-20231 .elementor-element.elementor-element-4d204581:not(.elementor-motion-effects-element-type-background), .elementor-20231 .elementor-element.elementor-element-4d204581 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:rgb(194,189,179);}.elementor-20231 .elementor-element.elementor-element-4d204581{border-color:rgb(16,50,86);--border-color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-6c78b53 .elementor-heading-title{color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-76dcaf6f .jet-inline-svg{color:#103256;}.elementor-20231 .elementor-element.elementor-element-18f65693 .jet-animated-text__before-text{color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-18f65693 .jet-animated-text__animated-text{color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-18f65693 .jet-animated-text__after-text{color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-31e40738 .jet-listing-dynamic-field__content{color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-c045c00 .elementor-button{background-color:rgb(16,50,86);fill:rgb(255,255,255);color:rgb(255,255,255);}.elementor-20231 .elementor-element.elementor-element-c045c00 .elementor-button:hover, .elementor-20231 .elementor-element.elementor-element-c045c00 .elementor-button:focus{background-color:rgb(0,0,0);color:rgb(255,255,255);}.elementor-20231 .elementor-element.elementor-element-c045c00 .elementor-button:hover svg, .elementor-20231 .elementor-element.elementor-element-c045c00 .elementor-button:focus svg{fill:rgb(255,255,255);}.elementor-20231 .elementor-element.elementor-element-57dd35c:not(.elementor-motion-effects-element-type-background), .elementor-20231 .elementor-element.elementor-element-57dd35c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:rgb(194,189,179);}.elementor-20231 .elementor-element.elementor-element-57dd35c{border-color:rgb(16,50,86);--border-color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-5c13f23 .elementor-heading-title{color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-4f76e4e7 .jet-inline-svg{color:#103256;}.elementor-20231 .elementor-element.elementor-element-13b794fb .jet-animated-text__before-text{color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-13b794fb .jet-animated-text__animated-text{color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-13b794fb .jet-animated-text__after-text{color:rgb(16,50,86);}.elementor-20231 .elementor-element.elementor-element-24dd6ed6 .elementor-button{background-color:rgb(16,50,86);fill:rgb(255,255,255);color:rgb(255,255,255);}.elementor-20231 .elementor-element.elementor-element-24dd6ed6 .elementor-button:hover, .elementor-20231 .elementor-element.elementor-element-24dd6ed6 .elementor-button:focus{background-color:rgb(0,0,0);color:rgb(255,255,255);}.elementor-20231 .elementor-element.elementor-element-24dd6ed6 .elementor-button:hover svg, .elementor-20231 .elementor-element.elementor-element-24dd6ed6 .elementor-button:focus svg{fill:rgb(255,255,255);}</style>		<div class="elementor-shortcode"><!-- Ticket -->
		<div data-elementor-type="container" data-elementor-id="20231" class="elementor elementor-20231" data-elementor-post-type="elementor_library">
				<div class="elementor-element elementor-element-4d204581 e-con-full jedv-enabled--yes ticket-guenstig e-flex e-con e-child" data-id="4d204581" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-76e4534d e-con-full e-flex e-con e-child" data-id="76e4534d" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-77ef9b6a elementor-widget elementor-widget-shortcode" data-id="77ef9b6a" data-element_type="widget" data-e-type="widget" data-widget_type="shortcode.default">
							<div class="elementor-shortcode"><div class="je-ticket-countdown" data-timestamp="1791568800">
			<span class="je-countdown-prefix">Noch</span>
			<span class="je-countdown-value"></span>
			<span class="je-countdown-unit"></span>
		</div></div>
						</div>
				</div>
		<div class="elementor-element elementor-element-71a58604 e-con-full e-flex e-con e-child" data-id="71a58604" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-28924fc3 e-con-full e-flex e-con e-child" data-id="28924fc3" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-6c78b53 elementor-widget elementor-widget-heading" data-id="6c78b53" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<p class="elementor-heading-title elementor-size-default">Günstige Online Tickets</p>				</div>
				</div>
		<div class="elementor-element elementor-element-575e1cbe e-con-full e-flex e-con e-child" data-id="575e1cbe" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-76dcaf6f elementor-widget elementor-widget-jet-inline-svg" data-id="76dcaf6f" data-element_type="widget" data-e-type="widget" data-widget_type="jet-inline-svg.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-inline-svg jet-elements"><div class="jet-inline-svg__wrapper"><div class="jet-inline-svg jet-inline-svg--custom-width jet-inline-svg--custom-color"><div class="jet-inline-svg__inner"><?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" id="Ebene_1" data-name="Ebene 1" viewBox="0 0 79 64.6">
  <rect x="30.44" y="22.65" width="31.4" height="2" transform="translate(-5.37 17.74) rotate(-20.59)"></rect>
  <polygon points="30.4 26.4 59.8 15.4 59.2 13.5 29.7 24.5 30.4 26.4"></polygon>
  <polygon points="58.5 11.7 57.8 9.8 28.4 20.9 29.1 22.8 58.5 11.7"></polygon>
  <rect x="34.99" y="35.63" width="19.8" height="2" transform="translate(-9.99 18.06) rotate(-20.52)"></rect>
  <polygon points="51 24.9 32.5 31.9 33.2 33.7 51.7 26.8 51 24.9"></polygon>
  <rect x="31.6" y="57" width="19.8" height="2"></rect>
  <rect x="31.6" y="49.2" width="19.8" height="2"></rect>
  <polygon points="26.8 41.4 28.7 40.7 27.5 37.7 25.7 38.5 26.8 41.4"></polygon>
  <rect x="23.98" y="32.05" width="2" height="3.2" transform="translate(-10.21 10.89) rotate(-20.52)"></rect>
  <rect x="22.9" y="52.9" width="2" height="3.2"></rect>
  <rect x="21.67" y="26.09" width="2" height="3.2" transform="translate(-8.29 9.74) rotate(-20.6)"></rect>
  <polygon points="23 47.2 19.8 38.9 18 39.6 21.1 47.9 23 47.2"></polygon>
  <polygon points="17.4 49.2 19.3 48.5 14.8 36.5 12.9 37.2 17.4 49.2"></polygon>
  <polygon points="15.7 49.9 11.1 37.9 9.3 38.6 13.8 50.6 15.7 49.9"></polygon>
  <polygon points="10.5 25.5 5 27.5 8.5 36.7 13.9 34.6 10.5 25.5"></polygon>
  <path d="M67.4,0L20.9,17.4l.4.9c.4,1-.1,2.1-1.1,2.5s-2.1-.1-2.5-1.1l-.4-.9L0,25.3l3.5,9.3v30h18.5v-1c0-1.1.9-1.9,1.9-1.9,1.1,0,1.9.9,1.9,1.9v1h49.7v-32.4l3.5-1.3L67.4,0ZM2.6,26.5l13.7-5.1c.8,1.1,2.2,1.8,3.6,1.6l.2.6,1.9-.7-.3-.7c1.1-.8,1.8-2.2,1.6-3.6L62,4.2l10.2,27.1-38.7,14.5c-.8-1.2-2.2-1.8-3.6-1.6l-.2-.4-1.9.7.2.4c-1.2.8-1.8,2.2-1.6,3.6l-13.7,5.1L2.6,26.5ZM69,62.5H27.7c-.4-1.4-1.4-2.4-2.8-2.8v-.5h-2v.5c-1.4.4-2.4,1.5-2.8,2.8H5.5v-22.6l1.9,5.1v.2h.1l.8,2.1h-.8v12.8h2v-9.5l1.9,5.1v4.5h2v-4.6l1.9-.7v5.4h2v-6.1l11.6-4.4-.4-1.1c-.4-1,.1-2.1,1.1-2.5s2.1.1,2.5,1.1l.3.9,2.8-1h27.7v-2h-22.3l5.1-1.9h17.3v-2h-12l5.1-1.9h6.9v-2h-1.6l7.5-2.8v27.9h.1Z"></path>
</svg>
</div></div></div></div>				</div>
				</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-771ce1f1 e-con-full e-flex e-con e-child" data-id="771ce1f1" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-18f65693 elementor-widget elementor-widget-jet-animated-text" data-id="18f65693" data-element_type="widget" data-e-type="widget" data-widget_type="jet-animated-text.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-animated-text jet-elements">
<a href="https://ticketorganizer.eu/event/modellbaumesse-ried-2026-1?lang=de&#038;_pes=1&#038;showTickets=1" target="_blank" class="jet-animated-text jet-animated-text--effect-fx9 jet-animated-text--link" data-settings='{&quot;effect&quot;:&quot;fx9&quot;,&quot;delay&quot;:3000}'>
		<div class="jet-animated-text__animated-text">
<div class="jet-animated-text__animated-text-item active visible" dir="ltr">
	<span>a</span><span>b</span><span>&nbsp;</span><span>€</span><span>&nbsp;</span><span>1</span><span>2</span><span>,</span><span>-</span></div>
</div>	</a></div>				</div>
				</div>
		<div class="elementor-element elementor-element-5e758b63 e-con-full e-flex e-con e-child" data-id="5e758b63" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-31e40738 elementor-widget elementor-widget-jet-listing-dynamic-field" data-id="31e40738" data-element_type="widget" data-e-type="widget" data-widget_type="jet-listing-dynamic-field.default">
					<div class="jet-listing jet-listing-dynamic-field display-inline"><div class="jet-listing-dynamic-field__inline-wrap"><div class="jet-listing-dynamic-field__content" >Aktion gültig bis 9. Oktober 2026</div></div></div>				</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-4be43b15 e-con-full e-flex e-con e-child" data-id="4be43b15" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-c045c00 elementor-align-justify elementor-mobile-align-justify elementor-widget elementor-widget-button" data-id="c045c00" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
										<a class="elementor-button elementor-button-link elementor-size-sm" href="/?ticket-link-go=1" target="_blank">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg xmlns="http://www.w3.org/2000/svg" width="23.226" height="13.626" viewBox="0 0 23.226 13.626"><g id="Gruppe_12" data-name="Gruppe 12" transform="translate(0)"><path id="Pfad_35" data-name="Pfad 35" d="M-61.513-71.187h4.991a.524.524,0,0,0,.383-.166l5.935-6.322a.524.524,0,0,0,0-.72l-5.933-6.256a.525.525,0,0,0-.38-.163H-61.5a.524.524,0,0,0-.481.317.524.524,0,0,0,.1.567l5.419,5.715a.261.261,0,0,1,0,.359L-61.9-72.069a.524.524,0,0,0-.1.567.524.524,0,0,0,.481.316m-11.25,0h4.99a.524.524,0,0,0,.383-.166l5.935-6.322a.524.524,0,0,0,0-.72l-5.936-6.256a.524.524,0,0,0-.379-.163h-4.984a.524.524,0,0,0-.482.317.524.524,0,0,0,.1.568l5.419,5.719a.262.262,0,0,1,0,.36l-5.43,5.781a.524.524,0,0,0-.1.567.524.524,0,0,0,.481.316" transform="translate(73.287 84.813)" fill="#fff"></path></g></svg>			</span>
									<span class="elementor-button-text">zum Ticketshop</span>
					</span>
					</a>
								</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-57dd35c e-con-full jedv-enabled--yes ticket-regular e-flex e-con e-child" data-id="57dd35c" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-589f5a04 e-con-full e-flex e-con e-child" data-id="589f5a04" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-60a9594f e-con-full e-flex e-con e-child" data-id="60a9594f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-5c13f23 elementor-widget elementor-widget-heading" data-id="5c13f23" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h3 class="elementor-heading-title elementor-size-default">Online-Tickets</h3>				</div>
				</div>
		<div class="elementor-element elementor-element-51e75e23 e-con-full e-flex e-con e-child" data-id="51e75e23" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-4f76e4e7 elementor-widget elementor-widget-jet-inline-svg" data-id="4f76e4e7" data-element_type="widget" data-e-type="widget" data-widget_type="jet-inline-svg.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-inline-svg jet-elements"><div class="jet-inline-svg__wrapper"><div class="jet-inline-svg jet-inline-svg--custom-width jet-inline-svg--custom-color"><div class="jet-inline-svg__inner"><?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" id="Ebene_1" data-name="Ebene 1" viewBox="0 0 79 64.6">
  <rect x="30.44" y="22.65" width="31.4" height="2" transform="translate(-5.37 17.74) rotate(-20.59)"></rect>
  <polygon points="30.4 26.4 59.8 15.4 59.2 13.5 29.7 24.5 30.4 26.4"></polygon>
  <polygon points="58.5 11.7 57.8 9.8 28.4 20.9 29.1 22.8 58.5 11.7"></polygon>
  <rect x="34.99" y="35.63" width="19.8" height="2" transform="translate(-9.99 18.06) rotate(-20.52)"></rect>
  <polygon points="51 24.9 32.5 31.9 33.2 33.7 51.7 26.8 51 24.9"></polygon>
  <rect x="31.6" y="57" width="19.8" height="2"></rect>
  <rect x="31.6" y="49.2" width="19.8" height="2"></rect>
  <polygon points="26.8 41.4 28.7 40.7 27.5 37.7 25.7 38.5 26.8 41.4"></polygon>
  <rect x="23.98" y="32.05" width="2" height="3.2" transform="translate(-10.21 10.89) rotate(-20.52)"></rect>
  <rect x="22.9" y="52.9" width="2" height="3.2"></rect>
  <rect x="21.67" y="26.09" width="2" height="3.2" transform="translate(-8.29 9.74) rotate(-20.6)"></rect>
  <polygon points="23 47.2 19.8 38.9 18 39.6 21.1 47.9 23 47.2"></polygon>
  <polygon points="17.4 49.2 19.3 48.5 14.8 36.5 12.9 37.2 17.4 49.2"></polygon>
  <polygon points="15.7 49.9 11.1 37.9 9.3 38.6 13.8 50.6 15.7 49.9"></polygon>
  <polygon points="10.5 25.5 5 27.5 8.5 36.7 13.9 34.6 10.5 25.5"></polygon>
  <path d="M67.4,0L20.9,17.4l.4.9c.4,1-.1,2.1-1.1,2.5s-2.1-.1-2.5-1.1l-.4-.9L0,25.3l3.5,9.3v30h18.5v-1c0-1.1.9-1.9,1.9-1.9,1.1,0,1.9.9,1.9,1.9v1h49.7v-32.4l3.5-1.3L67.4,0ZM2.6,26.5l13.7-5.1c.8,1.1,2.2,1.8,3.6,1.6l.2.6,1.9-.7-.3-.7c1.1-.8,1.8-2.2,1.6-3.6L62,4.2l10.2,27.1-38.7,14.5c-.8-1.2-2.2-1.8-3.6-1.6l-.2-.4-1.9.7.2.4c-1.2.8-1.8,2.2-1.6,3.6l-13.7,5.1L2.6,26.5ZM69,62.5H27.7c-.4-1.4-1.4-2.4-2.8-2.8v-.5h-2v.5c-1.4.4-2.4,1.5-2.8,2.8H5.5v-22.6l1.9,5.1v.2h.1l.8,2.1h-.8v12.8h2v-9.5l1.9,5.1v4.5h2v-4.6l1.9-.7v5.4h2v-6.1l11.6-4.4-.4-1.1c-.4-1,.1-2.1,1.1-2.5s2.1.1,2.5,1.1l.3.9,2.8-1h27.7v-2h-22.3l5.1-1.9h17.3v-2h-12l5.1-1.9h6.9v-2h-1.6l7.5-2.8v27.9h.1Z"></path>
</svg>
</div></div></div></div>				</div>
				</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-2645cd87 e-con-full e-flex e-con e-child" data-id="2645cd87" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-6a9c3061 e-con-full e-flex e-con e-child" data-id="6a9c3061" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-13b794fb elementor-widget elementor-widget-jet-animated-text" data-id="13b794fb" data-element_type="widget" data-e-type="widget" data-widget_type="jet-animated-text.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-animated-text jet-elements">
<a href="https://ticketorganizer.eu/event/modellbaumesse-ried-2026-1?lang=de&#038;_pes=1&#038;showTickets=1" target="_blank" class="jet-animated-text jet-animated-text--effect-fx9 jet-animated-text--link" data-settings='{&quot;effect&quot;:&quot;fx9&quot;,&quot;delay&quot;:3000}'>
		<div class="jet-animated-text__animated-text">
<div class="jet-animated-text__animated-text-item active visible" dir="ltr">
	<span>a</span><span>b</span><span>&nbsp;</span><span>€</span><span>&nbsp;</span><span>1</span><span>2</span><span>,</span><span>-</span></div>
</div>	</a></div>				</div>
				</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-6d6f5789 e-con-full e-flex e-con e-child" data-id="6d6f5789" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-24dd6ed6 elementor-align-justify elementor-mobile-align-justify elementor-widget elementor-widget-button" data-id="24dd6ed6" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
										<a class="elementor-button elementor-button-link elementor-size-sm" href="/?ticket-link-go=1" target="_blank">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
							</span>
									<span class="elementor-button-text">zum Ticketshop</span>
					</span>
					</a>
								</div>
				</div>
				</div>
				</div>
		</div>
						</div>
		<div class="elementor-element elementor-element-7bcec18 jedv-enabled--yes e-con-full e-flex e-con e-child" data-id="7bcec18" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;3a2300e&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
				<div class="elementor-element elementor-element-cc79c73 elementor-widget elementor-widget-heading" data-id="cc79c73" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<p class="elementor-heading-title elementor-size-default">- Anzeige - </p>				</div>
				<div class="elementor-element elementor-element-5ce405d elementor-widget elementor-widget-jet-listing-grid" data-id="5ce405d" data-element_type="widget" data-e-type="widget" data-settings="{&quot;columns&quot;:&quot;1&quot;}" data-widget_type="jet-listing-grid.default">
					<div class="jet-listing-grid jet-listing"><div class="jet-listing-grid__items grid-col-desk-1 grid-col-tablet-1 grid-col-mobile-1 jet-listing-grid--271" data-queried-id="21195|WP_Post" data-nav="{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:271,&quot;posts_num&quot;:1,&quot;columns&quot;:1,&quot;columns_tablet&quot;:1,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:null,&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;empty_query&quot;,&quot;carousel_enabled&quot;:&quot;&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}" data-page="1" data-pages="1" data-listing-source="posts" data-listing-id="271" data-query-id=""><div class="jet-listing-grid__item jet-listing-dynamic-post-21323 elementor-dcss-3785241755859552" data-post-id="21323"  >		<div data-elementor-type="jet-listing-items" data-elementor-id="271" class="elementor elementor-271" data-elementor-post-type="jet-engine">
				<div class="elementor-element elementor-element-fa82d2d e-flex e-con-boxed e-con e-parent" data-id="fa82d2d" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;e590dda&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-66e9c2a elementor-widget elementor-widget-image" data-id="66e9c2a" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
																<a href="https://www.sparesortgeinberg.at" target="_blank">
							<picture loading="lazy" class="attachment-full size-full wp-image-21324">
<source type="image/webp" srcset="https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01.jpg.webp 1146w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-159x300.jpg.webp 159w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-542x1024.jpg.webp 542w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-79x150.jpg.webp 79w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-768x1452.jpg.webp 768w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-812x1536.jpg.webp 812w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-1083x2048.jpg.webp 1083w" sizes="(max-width: 1146px) 100vw, 1146px"/>
<img loading="lazy" width="1146" height="2167" src="https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01.jpg" alt="" srcset="https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01.jpg 1146w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-159x300.jpg 159w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-542x1024.jpg 542w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-79x150.jpg 79w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-768x1452.jpg 768w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-812x1536.jpg 812w, https://www.modellbau-ried.at/wp-content/uploads/260824_banner-modellbaumesse_275x520_01-1083x2048.jpg 1083w" sizes="(max-width: 1146px) 100vw, 1146px"/>
</picture>
								</a>
															</div>
					</div>
				</div>
				</div>
		</div></div></div>				</div>
				</div>
		<div class="elementor-element elementor-element-4d96b33 e-con-full jedv-enabled--yes countdown e-flex e-con e-child" data-id="4d96b33" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-ae906dc e-con-full e-flex e-con e-child" data-id="ae906dc" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-d9da007 e-con-full e-flex e-con e-child" data-id="d9da007" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-05ea60e elementor-widget elementor-widget-heading" data-id="05ea60e" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h3 class="elementor-heading-title elementor-size-default">Zeit <br />bis zur Messe</h3>				</div>
				</div>
		<div class="elementor-element elementor-element-a245d67 e-con-full e-flex e-con e-child" data-id="a245d67" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-eac643b countdown_blink elementor-widget elementor-widget-jet-countdown-timer" data-id="eac643b" data-element_type="widget" data-e-type="widget" data-widget_type="jet-countdown-timer.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-countdown-timer jet-elements">
<div class="jet-countdown-timer" data-type="due_date" data-due-date="1791619200">
	<div class="jet-countdown-timer__item item-days">
	<div class="jet-countdown-timer__item-value" data-value="days"><span class="jet-countdown-timer__digit">0</span><span class="jet-countdown-timer__digit">0</span></div>
	<div class="jet-countdown-timer__item-label">Tage</div></div>
			</div>

</div>				</div>
				</div>
				</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-4c43c2f e-con-full e-flex e-con e-child" data-id="4c43c2f" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;cced41d&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
				<div class="elementor-element elementor-element-2332ceb elementor-widget elementor-widget-jet-listing-grid" data-id="2332ceb" data-element_type="widget" data-e-type="widget" data-settings="{&quot;columns&quot;:&quot;1&quot;}" data-widget_type="jet-listing-grid.default">
					<div class="jet-listing-grid jet-listing"><div class="jet-listing-not-found jet-listing-grid__items" data-nav="{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:741,&quot;posts_num&quot;:6,&quot;columns&quot;:1,&quot;columns_tablet&quot;:1,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;yes&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:null,&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-double-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}" data-listing-source="posts" data-listing-id="741" data-query-id="" data-queried-id="21195|WP_Post"></div></div>				</div>
				</div>
					</div>
				</div>
				</div>
		</div>
						</div>
				</div>
				</div>
					</div>
				</div>
				</div>
				<footer data-elementor-type="footer" data-elementor-id="177" class="elementor elementor-177 elementor-location-footer" data-elementor-post-type="elementor_library">
			<footer class="elementor-element elementor-element-561a56f e-flex e-con-boxed e-con e-parent" data-id="561a56f" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;64e3a6e&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
		<div class="elementor-element elementor-element-b7be2ba e-con-full e-flex e-con e-child" data-id="b7be2ba" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-4e24634 e-con-full e-flex e-con e-child" data-id="4e24634" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-be90cf5 elementor-widget elementor-widget-image" data-id="be90cf5" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
															<img loading="lazy" width="800" height="800" src="https://www.modellbau-ried.at/wp-content/uploads/2021/06/Logo_MesseRied_weiss.svg" class="attachment-large size-large wp-image-179" alt="" />															</div>
				</div>
		<div class="elementor-element elementor-element-db21cc5 e-con-full e-flex e-con e-child" data-id="db21cc5" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-7ebd663 elementor-widget elementor-widget-text-editor" data-id="7ebd663" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><strong>MESSE RIED GmbH</strong><br />Brucknerstraße 39<br />A-4910 Ried im Innkreis<br />Tel. <a style="color: #ffffff;" href="tel:+43 7752 84011-0">+43 7752 84011-0</a><br />office@messe-ried.at</p>								</div>
				</div>
				</div>
		<div class="elementor-element elementor-element-7010f7a e-con-full e-flex e-con e-child" data-id="7010f7a" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-8109e51 elementor-widget elementor-widget-text-editor" data-id="8109e51" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
									<p><strong>Büro-Öffnungszeiten</strong><br /><b>Montag bis Donnerstag: <br /></b>08:00 – 12:00 Uhr und 13:00 – 16:30 Uhr<br /><b>Freitag:</b> 08:00 – 12:00 Uhr<br /><b>Samstag &amp; Sonntag:</b> geschlossen<br />(ausgenommen bei Messen)</p><p>oder unter www.messe-ried.at<br />24 Stunden, 7 Tage die Woche</p>								</div>
				</div>
		<div class="elementor-element elementor-element-d1f0ec4 e-con-full e-flex e-con e-child" data-id="d1f0ec4" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-19cd0c9 elementor-nav-menu__align-start elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu" data-id="19cd0c9" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;svg aria-hidden=\&quot;true\&quot; class=\&quot;e-font-icon-svg e-fas-caret-down\&quot; viewBox=\&quot;0 0 320 512\&quot; xmlns=\&quot;http:\/\/www.w3.org\/2000\/svg\&quot;&gt;&lt;path d=\&quot;M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\&quot;&gt;&lt;\/path&gt;&lt;\/svg&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
								<nav aria-label="Menü" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
				<ul id="menu-1-19cd0c9" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-885"><a href="https://www.modellbau-ried.at/aussteller/kontakt/" class="elementor-item">Kontakt</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-198"><a target="_blank" href="https://www.messe-ried.at/impressum/" class="elementor-item">Impressum</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-199"><a target="_blank" href="https://www.messe-ried.at/datenschutz/" class="elementor-item">Datenschutz</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-200"><a target="_blank" href="https://www.modellbau-ried.at/wp-content/uploads/MF25_Messeordnung.pdf" class="elementor-item">Messeordnung</a></li>
<li class="digins-bcc-open-settings menu-item menu-item-type-custom menu-item-object-custom menu-item-21061"><a href="#" class="elementor-item elementor-item-anchor">Cookie-Einstellungen</a></li>
</ul>			</nav>
						<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-19cd0c9" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-885"><a href="https://www.modellbau-ried.at/aussteller/kontakt/" class="elementor-item" tabindex="-1">Kontakt</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-198"><a target="_blank" href="https://www.messe-ried.at/impressum/" class="elementor-item" tabindex="-1">Impressum</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-199"><a target="_blank" href="https://www.messe-ried.at/datenschutz/" class="elementor-item" tabindex="-1">Datenschutz</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-200"><a target="_blank" href="https://www.modellbau-ried.at/wp-content/uploads/MF25_Messeordnung.pdf" class="elementor-item" tabindex="-1">Messeordnung</a></li>
<li class="digins-bcc-open-settings menu-item menu-item-type-custom menu-item-object-custom menu-item-21061"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Cookie-Einstellungen</a></li>
</ul>			</nav>
						</div>
				</div>
		<div class="elementor-element elementor-element-eb65fc4 e-con-full e-flex e-con e-child" data-id="eb65fc4" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
		<div class="elementor-element elementor-element-2792cda e-con-full e-flex e-con e-child" data-id="2792cda" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;db74d11&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
		<div class="elementor-element elementor-element-46b0951 e-con-full e-flex e-con e-child" data-id="46b0951" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-ae27739 elementor-view-stacked elementor-shape-square elementor-widget elementor-widget-icon" data-id="ae27739" data-element_type="widget" data-e-type="widget" data-widget_type="icon.default">
							<div class="elementor-icon-wrapper">
			<a class="elementor-icon" href="https://www.facebook.com/modellbaumesseried" target="_blank">
			<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook-f" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg>			</a>
		</div>
						</div>
				</div>
		<div class="elementor-element elementor-element-01750f8 e-con-full e-flex e-con e-child" data-id="01750f8" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-da4f756 elementor-view-stacked elementor-shape-square elementor-widget elementor-widget-icon" data-id="da4f756" data-element_type="widget" data-e-type="widget" data-widget_type="icon.default">
							<div class="elementor-icon-wrapper">
			<a class="elementor-icon" href="https://www.instagram.com/messeried" target="_blank">
			<svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg>			</a>
		</div>
						</div>
				</div>
		<div class="elementor-element elementor-element-eedceda e-con-full e-flex e-con e-child" data-id="eedceda" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-14f5003 elementor-view-stacked elementor-shape-square elementor-widget elementor-widget-icon" data-id="14f5003" data-element_type="widget" data-e-type="widget" data-widget_type="icon.default">
							<div class="elementor-icon-wrapper">
			<div class="elementor-icon">
			<svg aria-hidden="true" class="e-font-icon-svg e-fab-youtube" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg>			</div>
		</div>
						</div>
				</div>
				</div>
				<div class="elementor-element elementor-element-7af0c39 elementor-align-justify elementor-mobile-align-justify elementor-widget elementor-widget-button" data-id="7af0c39" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
										<a class="elementor-button elementor-button-link elementor-size-sm" href="tel:%20+43%207752%2084011-0">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg xmlns="http://www.w3.org/2000/svg" width="22.5" height="24" viewBox="0 0 22.5 24"><g id="phone-hand-hold-1" transform="translate(-571.75 -836)"><path id="Shape_283" data-name="Shape 283" d="M579.25,851l1.673-1.255a1.572,1.572,0,0,1,2.247.385h0a1.569,1.569,0,0,1,0,1.74l-1.645,2.467a4.5,4.5,0,0,1-2.073,1.682L577,857v2.25" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path id="Shape_284" data-name="Shape 284" d="M580,845.75l-3.6,1.541a4.5,4.5,0,0,0-2.363,2.364l-1.173,2.745a4.509,4.509,0,0,0-.364,1.774v5.076" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path id="Shape_285" data-name="Shape 285" d="M580,850.438V839.75a3,3,0,0,1,3-3h7.5a3,3,0,0,1,3,3v16.5a3,3,0,0,1-3,3H583a3,3,0,0,1-3-3v-.5" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path id="Shape_286" data-name="Shape 286" d="M581.214,854.75H593.5" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></g></svg>			</span>
									<span class="elementor-button-text">Jetzt Anrufen</span>
					</span>
					</a>
								</div>
				<div class="elementor-element elementor-element-cb10b82 elementor-align-justify elementor-mobile-align-justify elementor-widget elementor-widget-button" data-id="cb10b82" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
										<a class="elementor-button elementor-button-link elementor-size-sm" href="mailto:%20office@messe-ried.at">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg xmlns="http://www.w3.org/2000/svg" width="23.351" height="24.057" viewBox="0 0 23.351 24.057"><g id="send-email" transform="translate(-387.316 -95.958)"><path id="Shape_22" data-name="Shape 22" d="M389.759,111.629a1.664,1.664,0,0,1-.882-3.075L407.36,97a1.663,1.663,0,0,1,2.516,1.72l-3.6,19.173a1.664,1.664,0,0,1-2.966.691l-5.21-6.955Z" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path id="Shape_23" data-name="Shape 23" d="M398.1,111.629h-2.5V116.8a1.663,1.663,0,0,0,2.6,1.374l3.178-2.166Z" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path><path id="Shape_24" data-name="Shape 24" d="M398.1,111.629l11.08-14.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></g></svg>			</span>
									<span class="elementor-button-text">Jetzt Schreiben</span>
					</span>
					</a>
								</div>
				</div>
		<div class="elementor-element elementor-element-77822cf e-con-full elementor-hidden-desktop elementor-hidden-tablet e-flex e-con e-child" data-id="77822cf" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-ffa2a7b elementor-align-justify elementor-mobile-align-right elementor-widget elementor-widget-button" data-id="ffa2a7b" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation_mobile&quot;:&quot;fadeInUp&quot;}" data-widget_type="button.default">
										<a class="elementor-button elementor-button-link elementor-size-sm" href="#top">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg xmlns="http://www.w3.org/2000/svg" id="Ebene_1" data-name="Ebene 1" viewBox="0 0 13.63 23.24"><defs><style>      .cls-1 {        fill: #fff;      }    </style></defs><g id="Gruppe_12" data-name="Gruppe 12"><path id="Pfad_35" data-name="Pfad 35" class="cls-1" d="M13.63,11.45v-4.99c0-.15-.06-.28-.17-.38L7.14.14c-.2-.19-.52-.19-.72,0L.16,6.08C.06,6.18,0,6.31,0,6.46v4.98c0,.21.12.4.32.48.19.08.41.04.57-.1l5.71-5.42c.1-.1.26-.1.36,0l5.79,5.44c.15.14.37.18.57.1.19-.08.32-.27.32-.48M13.63,22.71v-4.99c0-.15-.06-.28-.17-.38l-6.32-5.93c-.2-.19-.52-.19-.72,0L.16,17.34c-.1.1-.16.24-.16.38v4.98c0,.21.12.4.32.48.19.08.42.04.57-.1l5.72-5.42c.1-.1.26-.1.36,0l5.78,5.43c.15.14.37.18.57.1.19-.08.32-.27.32-.48"></path></g></svg>			</span>
								</span>
					</a>
								</div>
				</div>
					</div>
				</footer>
		<div class="elementor-element elementor-element-60ffc1a elementor-hidden-phone e-flex e-con-boxed e-con e-parent" data-id="60ffc1a" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;_id&quot;:&quot;bf63d14&quot;,&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}]}">
					<div class="e-con-inner">
		<div class="elementor-element elementor-element-50f58b1 e-con-full e-flex e-con e-child" data-id="50f58b1" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
				<div class="elementor-element elementor-element-37323c0 elementor-view-framed elementor-widget__width-auto elementor-absolute elementor-shape-circle elementor-invisible elementor-widget elementor-widget-icon" data-id="37323c0" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="icon.default">
							<div class="elementor-icon-wrapper">
			<a class="elementor-icon" href="#top">
			<svg xmlns="http://www.w3.org/2000/svg" width="23.226" height="13.626" viewBox="0 0 23.226 13.626"><g id="Gruppe_12" data-name="Gruppe 12" transform="translate(0)"><path id="Pfad_35" data-name="Pfad 35" d="M-61.513-71.187h4.991a.524.524,0,0,0,.383-.166l5.935-6.322a.524.524,0,0,0,0-.72l-5.933-6.256a.525.525,0,0,0-.38-.163H-61.5a.524.524,0,0,0-.481.317.524.524,0,0,0,.1.567l5.419,5.715a.261.261,0,0,1,0,.359L-61.9-72.069a.524.524,0,0,0-.1.567.524.524,0,0,0,.481.316m-11.25,0h4.99a.524.524,0,0,0,.383-.166l5.935-6.322a.524.524,0,0,0,0-.72l-5.936-6.256a.524.524,0,0,0-.379-.163h-4.984a.524.524,0,0,0-.482.317.524.524,0,0,0,.1.568l5.419,5.719a.262.262,0,0,1,0,.36l-5.43,5.781a.524.524,0,0,0-.1.567.524.524,0,0,0,.481.316" transform="translate(73.287 84.813)" fill="#fff"></path></g></svg>			</a>
		</div>
						</div>
				</div>
					</div>
				</div>
				</footer>
		
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/hello-elementor-child/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
	<script>
	document.addEventListener('DOMContentLoaded', function() {

		const guenstigElements = document.querySelectorAll('.ticket-guenstig');
		const regularElements  = document.querySelectorAll('.ticket-regular');

		
			const expiry = 1791568800 * 1000;
			let now = 1787749213 * 1000;

			function switchContainers() {

				if (now >= expiry) {

					guenstigElements.forEach(el => el.style.display = "none");
					regularElements.forEach(el  => el.style.display = "block");

					return;
				}

				now += 60000; // exakt gleiche Taktung wie Countdown
			}

			switchContainers();
			setInterval(switchContainers, 60000);

		
	});
	</script>
	
	<div class="digins-bcc-overlay" data-digins-bcc-overlay></div>

<div
	class="digins-bcc-banner digins-bcc-banner--center"
	id="digins-bcc-banner"
	role="dialog"
	aria-modal="true"
	aria-labelledby="digins-bcc-heading"
	aria-describedby="digins-bcc-description"
	data-digins-bcc-banner
	data-digins-bcc-modal="1"
	tabindex="-1"
>
	<div class="digins-bcc-banner__inner">

		<h2 class="digins-bcc-banner__heading" id="digins-bcc-heading">
			Wir nutzen Cookies für Statistiken		</h2>

		<div class="digins-bcc-banner__description" id="digins-bcc-description">
			<p>Wir messen anonym, wie diese Website genutzt wird, um sie verbessern zu können. Diese Messung findet nur statt, wenn Sie ausdrücklich zustimmen.</p>

							<p class="digins-bcc-banner__policy">
					<a
						class="digins-bcc-link"
						href="https://www.messe-ried.at/datenschutz/"
													target="_blank" rel="noopener noreferrer"
											>
						Datenschutzerklärung					</a>
				</p>
					</div>

		<!-- Kategorien. Standardmäßig eingeklappt, per Schaltfläche "Einstellungen" sichtbar. -->
		<div class="digins-bcc-banner__details" id="digins-bcc-details" data-digins-bcc-details hidden>

			<div class="digins-bcc-category">
				<div class="digins-bcc-category__header">
					<span class="digins-bcc-category__title">Notwendig</span>

										<span class="digins-bcc-category__always">
						Immer aktiv					</span>
				</div>
				<p class="digins-bcc-category__description">
					Erforderlich, damit die Website funktioniert und Ihre Cookie-Entscheidung gespeichert werden kann. Diese Kategorie lässt sich nicht abwählen.				</p>
			</div>

			<div class="digins-bcc-category">
				<div class="digins-bcc-category__header">
					<label class="digins-bcc-category__title" for="digins-bcc-toggle-statistics">
						Statistik					</label>

					<span class="digins-bcc-toggle">
						<input
							type="checkbox"
							class="digins-bcc-toggle__input"
							id="digins-bcc-toggle-statistics"
							data-digins-bcc-toggle="statistics"
							aria-describedby="digins-bcc-statistics-description"
						>
						<span class="digins-bcc-toggle__track" aria-hidden="true">
							<span class="digins-bcc-toggle__knob"></span>
						</span>
					</span>
				</div>
				<p class="digins-bcc-category__description" id="digins-bcc-statistics-description">
					Anonyme Auswertung der Seitenaufrufe. Setzt ein Cookie, das wiederkehrende Besuche unterscheidbar macht, ohne Sie persönlich zu erkennen.				</p>
			</div>
		</div>

				<div class="digins-bcc-banner__actions digins-bcc-banner__actions--full-mobile">
			<button type="button" class="digins-bcc-button digins-bcc-button--primary" data-digins-bcc-action="accept">
				Statistik zulassen			</button>

			<button type="button" class="digins-bcc-button digins-bcc-button--secondary digins-bcc-only-details" data-digins-bcc-action="save">
				Auswahl speichern			</button>

			<button type="button" class="digins-bcc-button digins-bcc-button--secondary" data-digins-bcc-action="deny">
				Ablehnen			</button>

			<button
				type="button"
				class="digins-bcc-button digins-bcc-button--quiet digins-bcc-only-collapsed"
				data-digins-bcc-action="toggle-details"
				aria-expanded="false"
				aria-controls="digins-bcc-details"
			>
				Einstellungen			</button>
		</div>

		
	</div>
</div>

		<div data-elementor-type="popup" data-elementor-id="21029" class="elementor elementor-21029 elementor-location-popup" data-elementor-settings="{&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:{&quot;exit_intent&quot;:&quot;yes&quot;},&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library">
			<div class="elementor-element elementor-element-7a7a7bdd e-flex e-con-boxed e-con e-parent" data-id="7a7a7bdd" data-element_type="container" data-e-type="container" data-settings="{&quot;jet_parallax_layout_list&quot;:[]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-2da7f1e1 elementor-widget elementor-widget-heading" data-id="2da7f1e1" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h3 class="elementor-heading-title elementor-size-default">Jetzt Standplatz für 2026 buchen!</h3>				</div>
		<div class="elementor-element elementor-element-28ce934e e-flex e-con-boxed e-con e-child" data-id="28ce934e" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-1f95fd8e elementor-widget elementor-widget-heading" data-id="1f95fd8e" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">Modellbaumesse in</h2>				</div>
				<div class="elementor-element elementor-element-7931ef20 elementor-countdown--label-inline elementor-widget elementor-widget-countdown" data-id="7931ef20" data-element_type="widget" data-e-type="widget" data-widget_type="countdown.default">
							<div data-expire-actions="[{&quot;type&quot;:&quot;hide&quot;}]" class="elementor-countdown-wrapper" data-date="1791615600">
			<div class="elementor-countdown-item"><span class="elementor-countdown-digits elementor-countdown-days"></span></div>		</div>
						</div>
				<div class="elementor-element elementor-element-3d917a6b elementor-widget elementor-widget-heading" data-id="3d917a6b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
					<h2 class="elementor-heading-title elementor-size-default">TAGEN </h2>				</div>
					</div>
				</div>
				<div class="elementor-element elementor-element-7e3bd531 elementor-align-justify elementor-widget elementor-widget-button" data-id="7e3bd531" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
										<a class="elementor-button elementor-button-link elementor-size-xl" href="https://www.modellbau-ried.at/aussteller/standplatz-buchen/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Zum Anmeldeformular</span>
					</span>
					</a>
								</div>
					</div>
				</div>
				</div>
					<script>
				( () => {
					const lazyloadRunObserver = () => {
						const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
						const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
							entries.forEach( ( entry ) => {
								if ( entry.isIntersecting ) {
									let lazyloadBackground = entry.target;
									if( lazyloadBackground ) {
										lazyloadBackground.classList.add( 'e-lazyloaded' );
									}
									lazyloadBackgroundObserver.unobserve( entry.target );
								}
							});
						}, { rootMargin: '200px 0px 200px 0px' } );
						lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
							lazyloadBackgroundObserver.observe( lazyloadBackground );
						} );
					};
					const events = [
						'DOMContentLoaded',
						'elementor/lazyload/observe',
					];
					events.forEach( ( event ) => {
						document.addEventListener( event, lazyloadRunObserver );
					} );
				} )();
			</script>
			<link rel='stylesheet' id='elementor-post-19334-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-19334.css' media='all' />
<link rel='stylesheet' id='e-animation-fadeInDown-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.min.css' media='all' />
<link rel='stylesheet' id='jet-elements-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/css/jet-elements.css' media='all' />
<link rel='stylesheet' id='jet-countdown-timer-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/css/addons/jet-countdown-timer.css' media='all' />
<link rel='stylesheet' id='jet-countdown-timer-skin-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/css/skin/jet-countdown-timer.css' media='all' />
<link rel='stylesheet' id='jet-inline-svg-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/css/addons/jet-inline-svg.css' media='all' />
<link rel='stylesheet' id='widget-icon-list-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css' media='all' />
<link rel='stylesheet' id='widget-search-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/css/widget-search.min.css' media='all' />
<link rel='stylesheet' id='e-sticky-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/css/modules/sticky.min.css' media='all' />
<link rel='stylesheet' id='elementor-post-13813-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-13813.css' media='all' />
<link rel='stylesheet' id='elementor-post-19328-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-19328.css' media='all' />
<link rel='stylesheet' id='elementor-post-207-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-207.css' media='all' />
<link rel='stylesheet' id='elementor-post-414-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-414.css' media='all' />
<link rel='stylesheet' id='elementor-post-7743-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-7743.css' media='all' />
<link rel='stylesheet' id='elementor-post-271-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-271.css' media='all' />
<link rel='stylesheet' id='elementor-post-741-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-741.css' media='all' />
<link rel='stylesheet' id='widget-video-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/css/widget-video.min.css' media='all' />
<link rel='stylesheet' id='elementor-post-20231-css' href='https://www.modellbau-ried.at/wp-content/uploads/elementor/css/post-20231.css' media='all' />
<link rel='stylesheet' id='jet-animated-text-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/css/addons/jet-animated-text.css' media='all' />
<link rel='stylesheet' id='jet-animated-text-skin-css' href='https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/css/skin/jet-animated-text.css' media='all' />
<link rel='stylesheet' id='e-swiper-css' href='https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css' media='all' />
<link rel='stylesheet' id='je-ticket-countdown-css' href='https://www.modellbau-ried.at/wp-content/plugins/je-ticket-countdown/countdown.css' media='all' />
<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--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,rgb(6,147,227) 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,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 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--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}.wp-block-button{--wp--preset--dimension--25: 25%;--wp--preset--dimension--50: 50%;--wp--preset--dimension--75: 75%;--wp--preset--dimension--100: 100%;}:root { --wp--style--global--content-size: 800px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.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;}
/*# sourceURL=global-styles-inline-css */
</style>
<script id="burst-js" defer data-digins-bcc-src="https://www.modellbau-ried.at/wp-content/uploads/burst/js/burst.min.js" type="text/plain" data-digins-bcc-consent="statistics"></script>
<script id="digins-countdown-js-extra">
var DIGINS_COUNTDOWN_DATA = {"expiry":"1791626400","now":"1787749212"};
//# sourceURL=digins-countdown-js-extra
</script>
<script id="digins-countdown-js" src="https://www.modellbau-ried.at/wp-content/plugins/digins-countdown/countdown.js"></script>
<script id="digins-bcc-frontend-js-extra">
var diginsBccConfig = {"cookie":{"name":"digins_burst_cookie_consent","path":"/","sameSite":"Lax","secure":true,"lifetimeDays":180,"schemaVersion":1},"attributes":{"src":"data-digins-bcc-src","consent":"data-digins-bcc-consent"},"categories":{"necessary":"necessary","statistics":"statistics"},"states":{"unset":"unset","allow":"allow","deny":"deny"},"behaviour":{"reloadAfterRevoke":true,"allowCloseWithoutChoice":false,"closeOnEscape":false},"cookiesToDelete":["burst_uid"],"debug":""};
//# sourceURL=digins-bcc-frontend-js-extra
</script>
<script id="digins-bcc-frontend-js" src="https://www.modellbau-ried.at/wp-content/plugins/digins-burst-cookie-consent/assets/js/digins-bcc-frontend.js"></script>
<script id="digins-bcc-burst-js" src="https://www.modellbau-ried.at/wp-content/plugins/digins-burst-cookie-consent/assets/js/digins-bcc-burst.js"></script>
<script id="rocket-browser-checker-js-after">
"use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
//# sourceURL=rocket-browser-checker-js-after
</script>
<script id="rocket-preload-links-js-extra">
var RocketPreloadLinksConfig = {"excludeUris":"/(?:.+/)?feed(?:/(?:.+/?)?)?$|/(?:.+/)?embed/|/(index.php/)?(.*)wp-json(/.*|$)|/refer/|/go/|/recommend/|/recommends/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https://www.modellbau-ried.at","onHoverDelay":"100","rateThrottle":"3"};
//# sourceURL=rocket-preload-links-js-extra
</script>
<script id="rocket-preload-links-js-after">
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareurl(https://www.modellbau-ried.at/wp-content/uploads/elementor/css/t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());

//# sourceURL=rocket-preload-links-js-after
</script>
<script id="rocket_lazyload_css-js-extra">
var rocket_lazyload_css_data = {"threshold":"300"};
//# sourceURL=rocket_lazyload_css-js-extra
</script>
<script id="rocket_lazyload_css-js-after">
!function o(n,a,c){function l(t,e){if(!a[t]){if(!n[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(u)return u(t,!0);throw(e=new Error("Cannot find module '"+t+"'")).code="MODULE_NOT_FOUND",e}r=a[t]={exports:{}},n[t][0].call(r.exports,function(e){return l(n[t][1][e]||e)},r,r.exports,o,n,a,c)}return a[t].exports}for(var u="function"==typeof require&&require,e=0;e<c.length;e++)l(c[e]);return l}({1:[function(e,t,r){{let r="undefined"==typeof rocket_pairs?[]:rocket_pairs,o=(("undefined"==typeof rocket_excluded_pairs?[]:rocket_excluded_pairs).map(t=>{var e=t.selector;document.querySelectorAll(e).forEach(e=>{e.setAttribute("data-rocket-lazy-bg-"+t.hash,"excluded")})}),document.querySelector("#wpr-lazyload-bg-container"));var a=rocket_lazyload_css_data.threshold||300;let n=new IntersectionObserver(e=>{e.forEach(t=>{t.isIntersecting&&r.filter(e=>t.target.matches(e.selector)).map(t=>{var e;t&&((e=document.createElement("style")).textContent=t.style,o.insertAdjacentElement("afterend",e),t.elements.forEach(e=>{n.unobserve(e),e.setAttribute("data-rocket-lazy-bg-"+t.hash,"loaded")}))})})},{rootMargin:a+"px"});function c(){0<(0<arguments.length&&void 0!==arguments[0]?arguments[0]:[]).length&&r.forEach(t=>{try{document.querySelectorAll(t.selector).forEach(e=>{"loaded"!==e.getAttribute("data-rocket-lazy-bg-"+t.hash)&&"excluded"!==e.getAttribute("data-rocket-lazy-bg-"+t.hash)&&(n.observe(e),(t.elements||=[]).push(e))})}catch(e){console.error(e)}})}c(),(()=>{let r=window.MutationObserver;return function(e,t){if(e&&1===e.nodeType)return(t=new r(t)).observe(e,{attributes:!0,childList:!0,subtree:!0}),t}})()(document.querySelector("body"),c)}},{}]},{},[1]);
//# sourceURL=rocket_lazyload_css-js-after
</script>
<script id="elementor-webpack-runtime-js" src="https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js"></script>
<script id="elementor-frontend-modules-js" src="https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/js/frontend-modules.min.js"></script>
<script id="jquery-ui-core-js-before">
jQuery.uiBackCompat = true;
//# sourceURL=jquery-ui-core-js-before
</script>
<script id="jquery-ui-core-js" src="https://www.modellbau-ried.at/wp-includes/js/jquery/ui/core.min.js"></script>
<script id="elementor-frontend-js-before">
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Auf Facebook teilen","shareOnX":"Auf X teilen","pinIt":"Anheften","download":"Download","downloadImage":"Bild downloaden","fullscreen":"Vollbild","zoom":"Zoom","share":"Teilen","playVideo":"Video abspielen","previous":"Zur\u00fcck","next":"Weiter","close":"Schlie\u00dfen","a11yCarouselPrevSlideMessage":"Vorheriger Slide","a11yCarouselNextSlideMessage":"N\u00e4chster Slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobil Hochformat","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobil Querformat","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Hochformat","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Querformat","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Breitbild","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.2.3","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"e_optimized_markup":true,"e_panel_promotions":true,"nested-elements":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_atomic_form":true,"e_pro_collection_loop":true,"mega-menu":true,"e_pro_variables":true,"e_pro_interactions":true},"urls":{"assets":"https:\/\/www.modellbau-ried.at\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.modellbau-ried.at\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.modellbau-ried.at\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"2bc6d7a7d8","atomicFormsSendForm":"e414bf33b4"},"swiperClass":"swiper","settings":{"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":0,"title":"Page Not Found - Modellbaumesse Ried","excerpt":""}};
//# sourceURL=elementor-frontend-js-before
</script>
<script id="elementor-frontend-js" src="https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/js/frontend.min.js"></script>
<script id="smartmenus-js" src="https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js"></script>
<script id="jet-tween-js-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/js/lib/tweenjs/tweenjs.min.js"></script>
<script id="jet-elements-js-extra">
var jetElements = {"ajaxUrl":"https://www.modellbau-ried.at/wp-admin/admin-ajax.php","isMobile":"false","templateApiUrl":"https://www.modellbau-ried.at/wp-json/jet-elements-api/v1/elementor-template","devMode":"false","mapboxToken":"","messages":{"invalidMail":"Please specify a valid e-mail"}};
//# sourceURL=jet-elements-js-extra
</script>
<script id="jet-elements-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/js/jet-elements.min.js"></script>
<script id="jet-countdown-timer-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/js/addons/jet-countdown-timer.min.js"></script>
<script id="e-sticky-js" src="https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js"></script>
<script id="jet-plugins-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-search/assets/lib/jet-plugins/jet-plugins.js"></script>
<script id="jet-engine-jet-smart-filters-compatibility-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-engine/assets/js/frontend/modules/jet-smart-filters.js"></script>
<script id="jet-engine-data-stores-js-before">
			window.JetEngineStores = window.JetEngineStores || {};
			window.JetEngineStores['local-storage'] = {
				addToStore: function( storeSlug, postID, maxSize, isOnViewStore ) {
					
		var store = window.localStorage.getItem( 'jet_engine_store_' + storeSlug );
		isOnViewStore = isOnViewStore || false;

		if ( store ) {
			store = store.split( ',' );
		} else {
			store = [];
		}

		postID = '' + postID;

		maxSize = parseInt( maxSize, 10 );

		if ( 0 <= store.indexOf( postID ) ) {
			return store.length;
		}

		if ( 0 < maxSize && store.length >= maxSize ) {
			
			if ( isOnViewStore ) {
				store.splice( 0, 1 );
			} else {
				alert( 'You can`t add more posts' );
				return false;
			}
		
		}

		store.push( postID );

		window.localStorage.setItem( 'jet_engine_store_' + storeSlug, store.join( ',' ) );

		return store.length;

		
				},
				remove: function( storeSlug, postID ) {
					
		var store = window.localStorage.getItem( 'jet_engine_store_' + storeSlug ),
			index;

		if ( store ) {
			store = store.split( ',' );
		} else {
			store = [];
		}

		postID = '' + postID;

		index = store.indexOf( postID );

		if ( 0 > index ) {
			return store.length;
		} else {
			store.splice( index, 1 );
		}

		window.localStorage.setItem( 'jet_engine_store_' + storeSlug, store.join( ',' ) );

		return store.length;

		
				},
				inStore: function( storeSlug, postID ) {
					
		var store = window.localStorage.getItem( 'jet_engine_store_' + storeSlug ),
			index;

		postID = '' + postID;

		if ( store ) {
			store = store.split( ',' );
		} else {
			store = [];
		}

		index = store.indexOf( postID );

		return ( 0 <= index );

		
				},
				getStore: function( storeSlug ) {
					
		var store = window.localStorage.getItem( 'jet_engine_store_' + storeSlug ),
			index;

		if ( store ) {
			store = store.split( ',' );
		} else {
			store = [];
		}

		return store;

		
				},
			};
//# sourceURL=jet-engine-data-stores-js-before
</script>
<script id="jet-engine-data-stores-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-engine/assets/js/frontend/modules/data-stores.js"></script>
<script id="jet-engine-frontend-js-extra">
var JetEngineSettings = {"ajaxurl":"https://www.modellbau-ried.at/wp-admin/admin-ajax.php","ajaxlisting":"https://www.modellbau-ried.at/wp-content/uploads/elementor/css/custom-jet-blocks.css/?nocache=1","restNonce":"8676214950","hoverActionTimeout":"400","post_id":"0","sliderLibrary":"swiper","query_builder":{"custom_ids":[]}};
//# sourceURL=jet-engine-frontend-js-extra
</script>
<script id="jet-engine-frontend-js-before">
window.JetEngineRegisteredStores = window.JetEngineRegisteredStores || {};
			window.JetEngineRegisteredStores['ausstellerliste-merken'] = 'local-storage';
window.JetEngineRegisteredStores = window.JetEngineRegisteredStores || {};
			window.JetEngineRegisteredStores['download-serviceheft'] = 'local-storage';
//# sourceURL=jet-engine-frontend-js-before
</script>
<script id="jet-engine-frontend-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-engine/assets/js/frontend/frontend.js"></script>
<script id="swiper-js" src="https://www.modellbau-ried.at/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js"></script>
<script id="jet-anime-js-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/js/lib/anime-js/anime.min.js"></script>
<script id="jet-animated-text-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-elements/assets/js/addons/jet-animated-text.min.js"></script>
<script id="je-ticket-countdown-js-extra">
var JE_COUNTDOWN_DATA = {"now":"1787749213","expiry":"1791568800"};
//# sourceURL=je-ticket-countdown-js-extra
</script>
<script id="je-ticket-countdown-js" src="https://www.modellbau-ried.at/wp-content/plugins/je-ticket-countdown/countdown.js"></script>
<script id="elementor-pro-webpack-runtime-js" src="https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js"></script>
<script id="wp-hooks-js" src="https://www.modellbau-ried.at/wp-includes/js/dist/hooks.min.js"></script>
<script id="wp-i18n-js" src="https://www.modellbau-ried.at/wp-includes/js/dist/i18n.min.js"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
//# sourceURL=wp-i18n-js-after
</script>
<script id="elementor-pro-frontend-js-before">
var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.modellbau-ried.at\/wp-admin\/admin-ajax.php","nonce":"6a1c8156ea","urls":{"assets":"https:\/\/www.modellbau-ried.at\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.modellbau-ried.at\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"de_DE","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.modellbau-ried.at\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
//# sourceURL=elementor-pro-frontend-js-before
</script>
<script id="elementor-pro-frontend-js" src="https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/js/frontend.min.js"></script>
<script id="pro-elements-handlers-js" src="https://www.modellbau-ried.at/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js"></script>
<script id="jet-blocks-jsticky-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-blocks/assets/js/lib/jsticky/jquery.jsticky.min.js"></script>
<script id="jet-blocks-js-extra">
var jetBlocksData = {"recaptchaConfig":""};
var JetHamburgerPanelSettings = {"ajaxurl":"https://www.modellbau-ried.at/wp-admin/admin-ajax.php","isMobile":"false","templateApiUrl":"https://www.modellbau-ried.at/wp-json/jet-blocks-api/v1/elementor-template","devMode":"false","restNonce":"8676214950"};
//# sourceURL=jet-blocks-js-extra
</script>
<script id="jet-blocks-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-blocks/assets/js/jet-blocks.min.js"></script>
<script id="jet-tabs-frontend-js-extra">
var JetTabsSettings = {"ajaxurl":"https://www.modellbau-ried.at/wp-admin/admin-ajax.php","isMobile":"false","templateApiUrl":"https://www.modellbau-ried.at/wp-json/jet-tabs-api/v1/elementor-template","devMode":"false","isSelfRequest":""};
//# sourceURL=jet-tabs-frontend-js-extra
</script>
<script id="jet-tabs-frontend-js" src="https://www.modellbau-ried.at/wp-content/plugins/jet-tabs/assets/js/jet-tabs-frontend.min.js"></script>
<script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://www.modellbau-ried.at/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script>
</body>
</html>
