    <script>
    	var executeLocation = false;
		document.addEventListener('DOMContentLoaded', () => {
			if (executeLocation == true ) return;
			executeLocation = true;
			const toggle = document.getElementById('toggleLocationSelector');
			const dropdown = document.getElementById('locationDropdown');
			const summary = document.getElementById('locationSummary');
			let selectedLocation = summary.textContent;

			toggle.addEventListener('click', () => {
				dropdown.style.display = dropdown.style.display === 'block' ? 'none' : 'block';
			});

			document.querySelectorAll('.location-option').forEach(option => {
				option.addEventListener('click', () => {
					selectedLocation = option.dataset.location;
					summary.textContent = selectedLocation;
					dropdown.style.display = 'none';
					window.selectedLocation = selectedLocation; // Hacerlo global
				});
			});

		});
    </script>
    	<script>
		var executeCalendar = false;
		document.addEventListener('DOMContentLoaded', () => {
			if (executeCalendar == true ) return;
			executeCalendar = true;
			var calendar      = document.getElementById('custom-calendar');
			var lang          = document.getElementById('lang_page');
			var currentMonth  = new Date();
			var dateSelector  = document.querySelector(".calendar-date-selector");
			var checkInDate   = document.querySelector('[data-testid="date-display-field-start"]');
			var checkOutDate  = document.querySelector('[data-testid="date-display-field-end"]');
			var ckeckInInput  = document.getElementById('check-in-date');
			var checkOutInput = document.getElementById('check-out-date');
			var startDate     = null;
			var endDate       = null;
			var hoveringRange = false;

			if (lang) {
				lang = lang.innerHTML;
			} else {
				lang = "en";
			}
			
			// Actualizar el calendario
			function calendarUpdate() {
				var month1 = new Date(currentMonth);
				var month2 = new Date(currentMonth);
				month2.setMonth(month2.getMonth() + 1);

				calendar.querySelector('.currently-month').textContent = month1.toLocaleString(lang, { month: 'long', year: 'numeric' });
				
				// Generar solo el primer mes en móviles
				monthGenerate(month1, document.getElementById('month-calendar-1'), 1);

				if (window.innerWidth > 600) {
					calendar.querySelector('.next-month').textContent = month2.toLocaleString(lang, { month: 'long', year: 'numeric' });
					monthGenerate(month2, document.getElementById('month-calendar-2'), 2);
				} else {
					calendar.querySelector('.next-month').textContent = '';
					document.getElementById('month-calendar-2').innerHTML = '';
				}
			}

			
			// Generar los días de un mes
			function monthGenerate(date, container, monthIndex) {
				container.innerHTML = '';
				var table = document.createElement('table');
				table.className = 'table-calendar';
				var thead = document.createElement('thead');
				var tbody = document.createElement('tbody');
				
				var weekDays = ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'];
				var headerTable = document.createElement('tr');
				weekDays.forEach(function(day) {
					var th = document.createElement('th');
					th.textContent = day;
					headerTable.appendChild(th);
				});
				thead.appendChild(headerTable);
				
				var firstDay = new Date(date.getFullYear(), date.getMonth(), 1);
				var lastDay  = new Date(date.getFullYear(), date.getMonth() + 1, 0);
				
				var tableRow = document.createElement('tr');
				
				for (var i = 0; i < firstDay.getDay(); i++) {
					tableRow.appendChild(document.createElement('td'));
				}
				
				for (var day = 1; day <= lastDay.getDate(); day++) {
					if (tableRow.children.length === 7) {
						tbody.appendChild(tableRow);
						tableRow = document.createElement('tr');
					}
					
					var tableField = document.createElement('td');
					tableField.textContent = day;
					
					var currentDate = new Date(date.getFullYear(), date.getMonth(), day);
					var today = new Date();
					today.setHours(0, 0, 0, 0);

					if (currentDate < today) {
						tableField.classList.add('previous-day');
						tableField.style.color = '#ccc';
					} else {
						if (currentDate.toDateString() === today.toDateString()) {
							tableField.classList.add('current-day');
						}
						
						if (startDate && endDate && currentDate >= startDate && currentDate <= endDate) {
							tableField.classList.add('range-day');
						}
						
						if ((startDate && currentDate.toDateString() === startDate.toDateString()) ||
							(endDate && currentDate.toDateString() === endDate.toDateString())) {
							tableField.classList.add('selected-day');
						}
						
						tableField.addEventListener('click', function() {
							var selectedDate = new Date(date.getFullYear(), date.getMonth(), parseInt(this.textContent));
							if (selectedDate >= today) {
								if (!startDate || (endDate !== null)) {
									startDate = selectedDate;
									endDate = null;
									checkInDate.querySelector('span').textContent = dateFormat(startDate);
									checkOutDate.querySelector('span').textContent = 'Check-out Day';
									ckeckInInput.value = sinSyxsFormatDate(startDate);
								} else if (selectedDate > startDate) {
									endDate = selectedDate;
									checkOutDate.querySelector('span').textContent = dateFormat(endDate);
									calendar.style.display = 'none';
									checkOutInput.value = sinSyxsFormatDate(endDate);
								} else {
									startDate = selectedDate;
									endDate = null;
									checkInDate.querySelector('span').textContent = dateFormat(startDate);
									checkOutDate.querySelector('span').textContent = 'Check-out Day';
									ckeckInInput.value = sinSyxsFormatDate(startDate);
								}
								calendarUpdate();
							}
						});

						// Agregar evento para hover
						tableField.addEventListener('mouseover', function() {
							if (startDate && !endDate) {
								var hoveredDate = new Date(date.getFullYear(), date.getMonth(), parseInt(this.textContent));

								// Asegurarnos de que el día pertenece al mes actual
								if (hoveredDate.getMonth() === date.getMonth()) {
									if (hoveredDate > startDate) {
										hoveringRange = true;
										updateRange(hoveredDate, monthIndex);
									}
								}
							}
						});

						// Resetear cuando el mouse sale del área de hover
						tableField.addEventListener('mouseleave', function() {
							if (hoveringRange) {
								resetRange();
							}
						});
					}
					
					tableRow.appendChild(tableField);
				}
				
				tbody.appendChild(tableRow);
				table.appendChild(thead);
				table.appendChild(tbody);
				container.appendChild(table);
			}
			
			// Función para actualizar el rango de fechas con hover
			function updateRange(hoveredDate, monthIndex) {
				var cellsCurrentMonth = document.querySelectorAll(`#month-calendar-${monthIndex} .table-calendar td`);
				var cellsPreviousMonth = document.querySelectorAll(`#month-calendar-${monthIndex - 1} .table-calendar td`);

				// Iterar sobre las celdas del mes actual
				cellsCurrentMonth.forEach(function(cell) {
					var cellDate = new Date(currentMonth.getFullYear(), currentMonth.getMonth() + (monthIndex - 1), parseInt(cell.textContent));
					if (cellDate > startDate && cellDate <= hoveredDate && cellDate.getMonth() === currentMonth.getMonth() + (monthIndex - 1)) {
						cell.classList.add('hover-range');
					} else {
						cell.classList.remove('hover-range');
					}
				});

				// Si estamos en el segundo mes y startDate está en el mes anterior, marcar el rango en el mes anterior
				if (monthIndex === 2 && startDate.getMonth() === currentMonth.getMonth()) {
					cellsPreviousMonth.forEach(function(cell) {
						var cellDate = new Date(currentMonth.getFullYear(), currentMonth.getMonth(), parseInt(cell.textContent));
						if (cellDate > startDate) {
							cell.classList.add('hover-range');
						}
					});
				}
			}

			// Función para resetear el rango de fechas con hover
			function resetRange() {
				var cells = document.querySelectorAll('.table-calendar td');
				cells.forEach(function(cell) {
					cell.classList.remove('hover-range');
				});
				hoveringRange = false;
			}

			function sinSyxsFormatDate(inputDate) {
				const fecha = new Date(inputDate);
				const year = fecha.getFullYear();
				const month = String(fecha.getMonth() + 1).padStart(2, '0'); // Los meses van de 0 a 11, por eso se suma 1
				const day = String(fecha.getDate()).padStart(2, '0');
				return `${year}-${month}-${day}`;
			}

			function dateFormat(date) {
				return date.toLocaleDateString(lang, { day: 'numeric', month: 'short', year: 'numeric' });
			}

 			// Reposicionar el calendario si es necesario
			function repositionCalendar() {
				var calendar = document.getElementById('custom-calendar');
				var rect = calendar.getBoundingClientRect();
				var viewportWidth = window.innerWidth;

				if (window.innerWidth > 640) {
					if (rect.right > viewportWidth) {
						var overflowX = rect.right - viewportWidth;
						calendar.style.left = (calendar.offsetLeft - overflowX) + 'px';
					}
				} else {
					calendar.style.left = "";
				}
			}
			
			// Eventos para navegar entre los meses
			calendar.querySelector('.previous-month').addEventListener('click', function() {
				currentMonth.setMonth(currentMonth.getMonth() - 1);
				calendarUpdate();
			});
			
			calendar.querySelector('.next-month').addEventListener('click', function() {
				currentMonth.setMonth(currentMonth.getMonth() + 1);
				calendarUpdate();
			});

			document.getElementById('link-previous-caracter').addEventListener('click', function() {
				currentMonth.setMonth(currentMonth.getMonth() - 1);
				calendarUpdate();
			});

			document.getElementById('link-next-caracter').addEventListener('click', function() {
				currentMonth.setMonth(currentMonth.getMonth() + 1);
				calendarUpdate();
			});

			// Mostrar el calendario al hacer click
			dateSelector.addEventListener('click', function() {
				calendar.style.display = calendar.style.display === 'none' ? 'block' : 'none';
				repositionCalendar();
			});
			
			window.addEventListener('load', repositionCalendar);
			window.addEventListener('resize', calendarUpdate);
			window.addEventListener('resize', repositionCalendar);

			// Actualizar el calendario
			calendarUpdate();
		});
	</script>
		<script>
		var executeGuest = false;
		document.addEventListener('DOMContentLoaded', () => {
			if (executeGuest == true ) return;
			executeGuest = true;
			const selector      = document.querySelector('.occupancy-selector');
			const toggle        = document.getElementById('toggleSelector');
			const dropdown      = document.getElementById('selectorDropdown');
			const summary       = document.getElementById('occupancySummary');
			const adultsCount   = document.getElementById('adultsCount');
			const childrenCount = document.getElementById('childrenCount');
			const adultText     = document.getElementById('adult_text');
			const childrenText  = document.getElementById('children_text');

			let adults = 2;
			let children = 0;
			
			selector.addEventListener('click', (event) => {
				// Evitar que los clics dentro del dropdown cierren el menú
				if (!dropdown.contains(event.target)) {
					dropdown.style.display = dropdown.style.display === 'block' ? 'none' : 'block';
				}
			});

			document.getElementById('apply_quantities').addEventListener('click', function() {
				dropdown.style.display = "none";
			});

			document.querySelectorAll('.increment, .decrement').forEach(button => {
				button.addEventListener('click', () => {
				const target = button.dataset.target;
				const isIncrement = button.classList.contains('increment');
				
				if (target === 'adults') {
					adults = Math.max(1, adults + (isIncrement ? 1 : -1));
					adultsCount.textContent = adults;
				} else if (target === 'children') {
					children = Math.max(0, children + (isIncrement ? 1 : -1));
					childrenCount.textContent = children;
				}

				updateSummary();
				});
			});

			function updateSummary() {
				summary.textContent = `${adults} ${adultText.outerText} · ${children} ${childrenText.outerText}`;
			}
		});
	</script>
	{"id":15065,"date":"2025-10-10T11:05:10","date_gmt":"2025-10-10T09:05:10","guid":{"rendered":"https:\/\/www.themora.com\/?page_id=15065"},"modified":"2026-02-24T16:22:04","modified_gmt":"2026-02-24T15:22:04","slug":"home","status":"publish","type":"page","link":"https:\/\/www.themora.com\/de\/","title":{"rendered":"Home"},"content":{"rendered":"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container has-pattern-background has-mask-background hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-custom-z-index\" style=\"--awb-background-position:center top;--awb-background-position-small:left top;--awb-background-repeat-small:no-repeat;--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-z-index:9;--awb-padding-top:0px;--awb-padding-right:0px;--awb-padding-bottom:0px;--awb-padding-left:0px;--awb-padding-top-medium:0px;--awb-padding-right-medium:0px;--awb-padding-bottom-medium:0px;--awb-padding-left-medium:0px;--awb-padding-top-small:0px;--awb-padding-right-small:0px;--awb-padding-bottom-small:0px;--awb-padding-left-small:0px;--awb-margin-top:0px;--awb-margin-bottom:0px;--awb-margin-top-medium:0px;--awb-margin-bottom-medium:0px;--awb-margin-top-small:0px;--awb-margin-bottom-small:0px;--awb-background-size:cover;--awb-background-size-small:cover;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-center fusion-flex-align-content-center fusion-flex-justify-content-flex-end fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-flex-align-self-center fusion-no-small-visibility fusion-no-medium-visibility\" style=\"--awb-z-index:9;--awb-absolute-top:140px;--awb-absolute-right:40px;--awb-container-position:absolute;--awb-bg-position:center bottom;--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-end fusion-content-layout-row fusion-flex-align-items-center\"><div class=\"fusion-image-element\" style=\"text-align:right;--awb-max-width:160px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-1 hover-type-none\" id=\"pitas\"><img decoding=\"async\" width=\"340\" height=\"339\" alt=\"Tripadvisor choice award 2025\" title=\"TC_instagram-badge_L_1080-x-1080_2025-e1747039030341\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/05\/TC_instagram-badge_L_1080-x-1080_2025-e1747039030341-1.png\" class=\"img-responsive wp-image-11160\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/05\/TC_instagram-badge_L_1080-x-1080_2025-e1747039030341-1-200x199.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/05\/TC_instagram-badge_L_1080-x-1080_2025-e1747039030341-1.png 340w\" sizes=\"(max-width: 640px) 100vw, 340px\" \/><\/span><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-flex-align-self-center fusion-no-small-visibility fusion-no-large-visibility\" style=\"--awb-z-index:9;--awb-absolute-top:100px;--awb-absolute-right:50px;--awb-container-position:absolute;--awb-bg-position:center bottom;--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-end fusion-content-layout-row fusion-flex-align-items-center\"><div class=\"fusion-image-element\" style=\"text-align:right;--awb-max-width:160px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-2 hover-type-none\" id=\"pitas\"><img decoding=\"async\" width=\"340\" height=\"339\" alt=\"Tripadvisor choice award 2025\" title=\"TC_instagram-badge_L_1080-x-1080_2025-e1747039030341\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/05\/TC_instagram-badge_L_1080-x-1080_2025-e1747039030341-1.png\" class=\"img-responsive wp-image-11160\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/05\/TC_instagram-badge_L_1080-x-1080_2025-e1747039030341-1-200x199.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/05\/TC_instagram-badge_L_1080-x-1080_2025-e1747039030341-1.png 340w\" sizes=\"(max-width: 640px) 100vw, 340px\" \/><\/span><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-flex-align-self-center fusion-no-medium-visibility fusion-no-large-visibility\" style=\"--awb-z-index:9;--awb-absolute-top:140px;--awb-absolute-right:15px;--awb-container-position:absolute;--awb-bg-position:center bottom;--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-end fusion-content-layout-row fusion-flex-align-items-center\"><div class=\"fusion-image-element\" style=\"text-align:right;--awb-max-width:160px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-3 hover-type-none\" id=\"pitas\"><img decoding=\"async\" width=\"340\" height=\"339\" alt=\"Tripadvisor choice award 2025\" title=\"TC_instagram-badge_L_1080-x-1080_2025-e1747039030341\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/05\/TC_instagram-badge_L_1080-x-1080_2025-e1747039030341-1.png\" class=\"img-responsive wp-image-11160\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/05\/TC_instagram-badge_L_1080-x-1080_2025-e1747039030341-1-200x199.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/05\/TC_instagram-badge_L_1080-x-1080_2025-e1747039030341-1.png 340w\" sizes=\"(max-width: 640px) 100vw, 340px\" \/><\/span><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-2 fusion-flex-container has-pattern-background has-mask-background fusion-parallax-none hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-custom-z-index\" style=\"--awb-background-position:center top;--awb-background-position-small:left top;--awb-background-repeat-small:no-repeat;--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-z-index:1;--awb-padding-top:0px;--awb-padding-right:0px;--awb-padding-bottom:0px;--awb-padding-left:0px;--awb-margin-top:0px;--awb-margin-bottom:0px;--awb-margin-top-small:105px;--awb-min-height:90vh;--awb-min-height-medium:85vh;--awb-min-height-small:70vh;--awb-background-image:url(&quot;https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/ae1cbf0c625ccfe47f8b458581249fc8-1024x768.webp&quot;);--awb-background-image-medium:url(&#039;https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/VIDEO-BANNER2_v2-13-1.png&#039;);--awb-background-image-small:url(&#039;https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/VIDEO-BANNER2_v2-13-1.png&#039;);--awb-background-size:cover;--awb-background-size-small:cover;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-center fusion-flex-align-content-center fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-flex-align-self-center\" style=\"--awb-bg-position:center bottom;--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-end fusion-content-layout-column\"><div class=\"fusion-image-element fusion-no-small-visibility\" style=\"text-align:center;--awb-max-width:400px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-4 hover-type-none\"><img decoding=\"async\" width=\"1024\" height=\"714\" title=\"zanzibar\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/zanzibar.png\" class=\"img-responsive wp-image-12125\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/zanzibar-200x139.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/zanzibar-400x279.png 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/zanzibar-600x418.png 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/zanzibar-800x558.png 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/zanzibar.png 1024w\" sizes=\"(max-width: 640px) 100vw, 1024px\" alt=\"\"><\/span><\/div><div class=\"fusion-image-element fusion-no-medium-visibility fusion-no-large-visibility\" style=\"text-align:center;--awb-max-width:265px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-5 hover-type-none\"><img decoding=\"async\" width=\"300\" height=\"300\" alt=\"mora logo bright\" title=\"mora logo bright\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2023\/12\/mora_logo_bright.png\" class=\"img-responsive wp-image-12671\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2023\/12\/mora_logo_bright-200x200.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2023\/12\/mora_logo_bright.png 300w\" sizes=\"(max-width: 640px) 100vw, 300px\" \/><\/span><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-3 fusion-flex-container has-pattern-background has-mask-background hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-custom-z-index\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-overflow:visible;--awb-z-index:9;--awb-padding-right:80px;--awb-padding-left:80px;--awb-padding-right-medium:20px;--awb-padding-bottom-medium:50px;--awb-padding-left-medium:20px;--awb-padding-right-small:10px;--awb-padding-bottom-small:50px;--awb-padding-left-small:10px;--awb-background-color:var(--awb-color8);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-4 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-z-index:9;--awb-bg-position:center bottom;--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:-25px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:0px;--awb-width-medium:100%;--awb-order-medium:0;--awb-margin-top-medium:-40px;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-margin-top-small:-40px;--awb-spacing-right-small:10px;--awb-spacing-left-small:10px;\" id=\"search_availability\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-row fusion-flex-align-items-stretch\"><div class=\"fusion-text fusion-text-1 fusion-text-no-margin position-relative\" style=\"--awb-content-alignment:center;--awb-margin-top:7px;--awb-margin-bottom:7px;\">\n    <div class=\"location-selector\">\n        <div class=\"text\">\n            <span><strong>Standort<\/strong><\/span>\n        <\/div>\n        <button class=\"location selector-toggle\" id=\"toggleLocationSelector\"  style=\"color: #333;\">\n            <span class=\"location-summary\" id=\"locationSummary\">Standort hinzuf\u00fcgen<\/span>\n\t\t\t<span class=\"arrow-icon\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><\/span>\n        <\/button>\n        <div class=\"selector-dropdown\" id=\"locationDropdown\" style=\"padding: 0; text-align: left;\">\n            <div class=\"location-option\" data-location=\"Zanzibar\">Zanzibar<\/div>\n            <div class=\"location-option\" data-location=\"Sahara Tozeur\">Sahara Tozeur<\/div>\n        <\/div>\n    <\/div>\n    \n<\/div><div class=\"fusion-text fusion-text-2 fusion-text-no-margin\" style=\"--awb-content-alignment:center;--awb-margin-top:7px;--awb-margin-bottom:7px;\"><div tabindex=\"-1\" class=\"block-calendar\">\n\t\t<div id=\"lang_page\" style=\"opacity: 0; height: 0;\">de<\/div>\n        <div class=\"calendar-date-selector\" role=\"none\" data-testid=\"searchbox-dates-container\">\n            <span class=\"icon-calendar-date-selector\" aria-hidden=\"true\">\n                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\" width=\"25px\">\n                    <path d=\"M22.5 13.5v8.25a.75.75 0 0 1-.75.75H2.25a.75.75 0 0 1-.75-.75V5.25a.75.75 0 0 1 .75-.75h19.5a.75.75 0 0 1 .75.75zm1.5 0V5.25A2.25 2.25 0 0 0 21.75 3H2.25A2.25 2.25 0 0 0 0 5.25v16.5A2.25 2.25 0 0 0 2.25 24h19.5A2.25 2.25 0 0 0 24 21.75zm-23.25-3h22.5a.75.75 0 0 0 0-1.5H.75a.75.75 0 0 0 0 1.5M7.5 6V.75a.75.75 0 0 0-1.5 0V6a.75.75 0 0 0 1.5 0M18 6V.75a.75.75 0 0 0-1.5 0V6A.75.75 0 0 0 18 6M5.095 14.03a.75.75 0 1 0 1.06-1.06.75.75 0 0 0-1.06 1.06m.53-1.28a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25.75.75 0 0 0 0 1.5.375.375 0 1 1 0-.75.375.375 0 0 1 0 .75.75.75 0 0 0 0-1.5m-.53 6.53a.75.75 0 1 0 1.06-1.06.75.75 0 0 0-1.06 1.06m.53-1.28a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25.75.75 0 0 0 0 1.5.375.375 0 1 1 0-.75.375.375 0 0 1 0 .75.75.75 0 0 0 0-1.5m5.845-3.97a.75.75 0 1 0 1.06-1.06.75.75 0 0 0-1.06 1.06m.53-1.28A1.125 1.125 0 1 0 12 15a1.125 1.125 0 0 0 0-2.25.75.75 0 0 0 0 1.5.375.375 0 1 1 0-.75.375.375 0 0 1 0 .75.75.75 0 0 0 0-1.5m-.53 6.53a.75.75 0 1 0 1.06-1.06.75.75 0 0 0-1.06 1.06M12 18a1.125 1.125 0 1 0 0 2.25A1.125 1.125 0 0 0 12 18a.75.75 0 0 0 0 1.5.375.375 0 1 1 0-.75.375.375 0 0 1 0 .75.75.75 0 0 0 0-1.5m5.845-3.97a.75.75 0 1 0 1.06-1.06.75.75 0 0 0-1.06 1.06m.53-1.28a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25.75.75 0 0 0 0 1.5.375.375 0 1 1 0-.75.375.375 0 0 1 0 .75.75.75 0 0 0 0-1.5m-.53 6.53a.75.75 0 1 0 1.06-1.06.75.75 0 0 0-1.06 1.06m.53-1.28a1.125 1.125 0 1 0 0 2.25 1.125 1.125 0 0 0 0-2.25.75.75 0 0 0 0 1.5.375.375 0 1 1 0-.75.375.375 0 0 1 0 .75.75.75 0 0 0 0-1.5\"><\/path>\n                <\/svg>\n            <\/span>\n\t\t\t<span class=\"text-calendar\" style=\"display: none;\"><strong>Check-in \/ Check-out<\/strong><\/span>\n            <div style=\"display: flex;\">\n\t\t\t\t<button data-testid=\"date-display-field-start\" type=\"button\" class=\"button-check-date\" aria-label=\"check-in-date\" style=\"color: #333;\">\n\t\t\t\t\t<span class=\"text-button-check-date\"> Daten hinzuf\u00fcgentoggle <\/span>\t\t\t\n\t\t\t\t\t<input type=\"hidden\" id=\"check-in-date\">\n\t\t\t\t<\/button>\n\t\t\t\t<button data-testid=\"date-display-field-end\" type=\"button\" class=\"button-check-date\" aria-label=\"check-out-date\"  style=\"color: #333;\">\n\t\t\t\t\t<span class=\"text-button-check-date\"> <\/span>\n\t\t\t\t\t<input type=\"hidden\" id=\"check-out-date\">\n\t\t\t\t\t<span class=\"arrow-icon\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" style=\"font-size: .8rem;\" aria-hidden=\"true\"><\/i><\/span>\n\t\t\t\t<\/button>\n\t\t\t\t\n\t\t\t<\/div>\n        <\/div>\n        <div id=\"custom-calendar\" class=\"custom-calendar-popup\" style=\"display: none;\">\n            <div class=\"header-calendar\">\n                <div class=\"container-month currently\">\n                    <button id=\"link-previous-caracter\" class=\"previous-month-caracter\" aria-label=\"previous-month-caracter\"><i class=\"awb-icon-angle-left\"><\/i><\/button>\n\t\t\t\t\t<div class=\"currently-month previous-month\"><\/div>\n\t\t\t\t\t<div class=\"hide-container-mobile\"><\/div>\n                <\/div>\n                <div class=\"container-month container-next-month\">\n                    <div class=\"next-month\"><\/div>\n\t\t\t\t\t<button id=\"link-next-caracter\" class=\"next-month\" aria-label=\"next-month-caracter\"><i class=\"awb-icon-angle-right\"><\/i><\/button>\n                <\/div>\n            <\/div>\n            <div class=\"container-calendars\">\n                <div class=\"month-calendar\" id=\"month-calendar-1\"><\/div>\n                <div class=\"month-calendar month-calendar-hide\" id=\"month-calendar-2\"><\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div><div class=\"fusion-text fusion-text-3 fusion-text-no-margin\" style=\"--awb-content-alignment:center;--awb-margin-top:7px;--awb-margin-bottom:7px;\"><div class=\"occupancy-selector\">\n\t\t<div class=\"text\" style=\"display: none;\">\n\t\t\t<span><strong>Guest<\/strong><\/span>\n\t\t<\/div>\n\t\t<button class=\"selector-toggle\" id=\"toggleSelector\" style=\"color: #333;\">\n\t\t\t<span class=\"occupancy-icon\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\" width=\"25px\">\n\t\t\t\t\t\t<path d=\"M16.5 6a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0M18 6A6 6 0 1 0 6 6a6 6 0 0 0 12 0M3 23.25a9 9 0 1 1 18 0 .75.75 0 0 0 1.5 0c0-5.799-4.701-10.5-10.5-10.5S1.5 17.451 1.5 23.25a.75.75 0 0 0 1.5 0\"><\/path>\n\t\t\t\t\t<\/svg>\n\t\t\t\t<\/div>\n\t\t\t<\/span>\n\t\t\t<span class=\"occupancy-summary\" id=\"occupancySummary\">2 Erwachsene \u00b7 0 Kinder<\/span>\n\t\t\t<span class=\"arrow-icon\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><\/span>\n\t\t<\/button>\n\t\t<div class=\"selector-dropdown\" id=\"selectorDropdown\">\n\t\t\t<div class=\"occupancy-row\">\n\t\t\t<span id=\"adult_text\">Erwachsene<\/span>\n\t\t\t<div class=\"counter\">\n\t\t\t\t<button class=\"decrement\" data-target=\"adults\">-<\/button>\n\t\t\t\t<span class=\"count\" id=\"adultsCount\">2<\/span>\n\t\t\t\t<button class=\"increment\" data-target=\"adults\">+<\/button>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"occupancy-row\">\n\t\t\t<span id=\"children_text\">Kinder<\/span>\n\t\t\t<div class=\"counter\">\n\t\t\t\t<button class=\"decrement\" data-target=\"children\">-<\/button>\n\t\t\t\t<span class=\"count\" id=\"childrenCount\">0<\/span>\n\t\t\t\t<button class=\"increment\" data-target=\"children\">+<\/button>\n\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div style=\"text-align: center\">\n\t\t\t\t<button id=\"apply_quantities\" class=\"fusion-button button-flat button-large button-custom fusion-button-default button-1 fusion-button-default-span fusion-button-default-type\" style=\"--button_margin-top:20px;\" ><span class=\"fusion-button-text\">Anwenden<\/span><\/button>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div><div ><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-1 fusion-button-default-span fusion-button-default-type\" style=\"--awb-margin-top:7px;--awb-margin-bottom:7px;--button-border-radius-top-left:0;--button-border-radius-top-right:0;--button-border-radius-bottom-right:0;--button-border-radius-bottom-left:0;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https:\/\/reservations.themora.com\/?chain=28165&amp;brand=TMR&amp;hotel=45447&amp;config=TMR&amp;theme=TMR&amp;level=hotel&amp;locale=en-US&amp;src=TMR-EN&amp;rooms=1&amp;adult=2&amp;_gl=1*fer1u6*_gcl_au*MTkzNDg2OTQ3Ni4xNzE1MjM5OTgx*_ga*MTQyNTM0ODIxOS4xNzE1MjM5OTgx*_ga_721NJ2XY9D*MTcxNzc1MjM0MC45LjEuMTcxNzc1NDkwMy4wLjAuMA..\" id=\"custom-link\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">CHECK AVAILABILITY<\/span><\/a><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-4 fusion-flex-container has-pattern-background has-mask-background nonhundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-custom-z-index\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-overflow:visible;--awb-z-index:1;--awb-padding-top:40px;--awb-padding-bottom:70px;--awb-padding-top-medium:10px;--awb-padding-right-medium:20px;--awb-padding-bottom-medium:30px;--awb-padding-left-medium:20px;--awb-padding-top-small:10px;--awb-padding-right-small:10px;--awb-padding-bottom-small:30px;--awb-padding-left-small:10px;--awb-background-color:var(--awb-color8);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-center fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-5 fusion_builder_column_3_4 3_4 fusion-flex-column\" style=\"--awb-z-index:1;--awb-padding-top:30px;--awb-padding-top-medium:0px;--awb-padding-top-small:0px;--awb-padding-right-small:15px;--awb-padding-left-small:15px;--awb-bg-size:cover;--awb-width-large:75%;--awb-margin-top-large:0px;--awb-spacing-right-large:2.56%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:2.56%;--awb-width-medium:75%;--awb-order-medium:0;--awb-spacing-right-medium:2.56%;--awb-spacing-left-medium:2.56%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-center fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"--awb-flex-grow:0;--awb-flex-grow-medium:0;--awb-flex-grow-small:0;--awb-flex-shrink:0;--awb-flex-shrink-medium:0;--awb-flex-shrink-small:0;width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-0 fusion_builder_column_inner_1_3 1_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:33.333333333333%;--awb-margin-top-large:20px;--awb-spacing-right-large:5.76%;--awb-margin-bottom-large:30px;--awb-spacing-left-large:5.76%;--awb-width-medium:33.333333333333%;--awb-order-medium:0;--awb-spacing-right-medium:5.76%;--awb-spacing-left-medium:5.76%;--awb-width-small:33.333333333333%;--awb-order-small:0;--awb-spacing-right-small:5.76%;--awb-spacing-left-small:5.76%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-6 hover-type-none\"><img decoding=\"async\" width=\"1100\" height=\"1100\" alt=\"cc97364ccba66466d9854bd582401f441279ca50\" title=\"cc97364ccba66466d9854bd582401f441279ca50\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/cc97364ccba66466d9854bd582401f441279ca50.png\" class=\"img-responsive wp-image-15085\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/cc97364ccba66466d9854bd582401f441279ca50-200x200.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/cc97364ccba66466d9854bd582401f441279ca50-400x400.png 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/cc97364ccba66466d9854bd582401f441279ca50-600x600.png 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/cc97364ccba66466d9854bd582401f441279ca50-800x800.png 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/cc97364ccba66466d9854bd582401f441279ca50.png 1100w\" sizes=\"(max-width: 640px) 100vw, 400px\" \/><\/span><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-1 fusion_builder_column_inner_1_3 1_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:33.333333333333%;--awb-margin-top-large:20px;--awb-spacing-right-large:5.76%;--awb-margin-bottom-large:30px;--awb-spacing-left-large:5.76%;--awb-width-medium:33.333333333333%;--awb-order-medium:0;--awb-spacing-right-medium:5.76%;--awb-spacing-left-medium:5.76%;--awb-width-small:33.333333333333%;--awb-order-small:0;--awb-spacing-right-small:5.76%;--awb-spacing-left-small:5.76%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-7 hover-type-none\"><img decoding=\"async\" width=\"1100\" height=\"1100\" alt=\"0166d25714fa9b5cb7931bc0ed02d7684b3fe845\" title=\"0166d25714fa9b5cb7931bc0ed02d7684b3fe845\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/0166d25714fa9b5cb7931bc0ed02d7684b3fe845.png\" class=\"img-responsive wp-image-15089\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/0166d25714fa9b5cb7931bc0ed02d7684b3fe845-200x200.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/0166d25714fa9b5cb7931bc0ed02d7684b3fe845-400x400.png 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/0166d25714fa9b5cb7931bc0ed02d7684b3fe845-600x600.png 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/0166d25714fa9b5cb7931bc0ed02d7684b3fe845-800x800.png 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/0166d25714fa9b5cb7931bc0ed02d7684b3fe845.png 1100w\" sizes=\"(max-width: 640px) 100vw, 400px\" \/><\/span><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-2 fusion_builder_column_inner_1_3 1_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:33.333333333333%;--awb-margin-top-large:20px;--awb-spacing-right-large:5.76%;--awb-margin-bottom-large:30px;--awb-spacing-left-large:5.76%;--awb-width-medium:33.333333333333%;--awb-order-medium:0;--awb-spacing-right-medium:5.76%;--awb-spacing-left-medium:5.76%;--awb-width-small:33.333333333333%;--awb-order-small:0;--awb-spacing-right-small:5.76%;--awb-spacing-left-small:5.76%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-8 hover-type-none\"><img decoding=\"async\" width=\"1100\" height=\"1100\" alt=\"a95a3aef4fe8c45a5355edfcf0883551e99ffe28\" title=\"a95a3aef4fe8c45a5355edfcf0883551e99ffe28\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/a95a3aef4fe8c45a5355edfcf0883551e99ffe28.png\" class=\"img-responsive wp-image-15093\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/a95a3aef4fe8c45a5355edfcf0883551e99ffe28-200x200.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/a95a3aef4fe8c45a5355edfcf0883551e99ffe28-400x400.png 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/a95a3aef4fe8c45a5355edfcf0883551e99ffe28-600x600.png 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/a95a3aef4fe8c45a5355edfcf0883551e99ffe28-800x800.png 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2025\/11\/a95a3aef4fe8c45a5355edfcf0883551e99ffe28.png 1100w\" sizes=\"(max-width: 640px) 100vw, 400px\" \/><\/span><\/div><\/div><\/div><\/div><div class=\"fusion-title title fusion-title-1 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-one\" style=\"--awb-text-color:var(--awb-color6);--awb-margin-top:20px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;--awb-font-size:36px;\"><h1 class=\"fusion-title-heading title-heading-center\" style=\"margin:0;font-size:1em;\">Leben Sie den Moment nach Lust und Laune<\/h1><\/div><div class=\"fusion-text fusion-text-4\" style=\"--awb-text-color:var(--awb-color6);\"><p style=\"text-align: center;\">Lassen Sie Spontaneit\u00e4t zu, wo immer Ihnen danach ist. Speisen Sie wann immer Sie wollen, ganz nach Ihren Gel\u00fcsten. Es ist Zeit, dass Sie Ihren Urlaub auf Ihre Art gestalten, umgeben von entspanntem Luxus und gekr\u00f6nt von einem au\u00dfergew\u00f6hnlichen Service \u2013 in jedem Moment. Wir entwerfen Erlebnisse in Freizeithotels, die mehr Leben m\u00f6glich machen. Indem wir Konventionen hinterfragen und Raum f\u00fcr Sp\u00fcrsinn und Selbstentfaltung schaffen, geben wir unseren G\u00e4sten die Freiheit, ihren Aufenthalt selbst zu gestalten. In unseren Hotels k\u00f6nnen Sie starre Muster \u00fcber Bord werfen und sich dem Moment hingeben, wohin er Sie auch f\u00fchren mag. Ob das nun eine morgendliche Yoga-Session bei Sonnenaufgang, ein Fr\u00fchst\u00fcck um 14 Uhr auf Ihrem Zimmer oder eine Runde Relaxen im Spa nach dem Zubettgehen der Kinder bedeutet \u2013 Sie bestimmen den Zeitplan und entscheiden, was jeder Tag bringt.<\/p>\n<\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-5 fusion-flex-container has-pattern-background has-mask-background nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-background-position:right center;--awb-background-position-small:center bottom;--awb-background-repeat-small:no-repeat;--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-top:30px;--awb-padding-bottom:60px;--awb-padding-right-medium:20px;--awb-padding-bottom-medium:50px;--awb-padding-left-medium:20px;--awb-padding-right-small:10px;--awb-padding-bottom-small:50px;--awb-padding-left-small:10px;--awb-background-color:var(--awb-color6);--awb-background-color-medium:var(--awb-color6);--awb-background-color-small:var(--awb-color6);--awb-background-size:cover;--awb-background-size-small:cover;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-center fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-6 fusion_builder_column_4_5 4_5 fusion-flex-column\" style=\"--awb-padding-top:30px;--awb-padding-top-medium:0px;--awb-padding-top-small:0px;--awb-padding-right-small:15px;--awb-padding-left-small:15px;--awb-bg-size:cover;--awb-width-large:80%;--awb-margin-top-large:0px;--awb-spacing-right-large:2.4%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:2.4%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-2 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-center\" style=\"margin:0;\">Die B\u00fchne steht. Die Regeln nicht.<\/h2><\/div><div class=\"fusion-video fusion-youtube\" style=\"--awb-max-width:1100px;--awb-max-height:619px;--awb-align-self:center;--awb-width:100%;--awb-margin-bottom:15px;\"><div class=\"video-shortcode\"><div class=\"fluid-width-video-wrapper\" style=\"padding-top:56.27%;\" ><iframe title=\"YouTube video player 1\" src=\"https:\/\/www.youtube.com\/embed\/qbL2hOPHkpg?wmode=transparent&autoplay=0 &amp;rel=0&amp;loop=1&amp;playlist=qbL2hOPHkpg\" width=\"1100\" height=\"619\" allowfullscreen allow=\"autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture;\"><\/iframe><\/div><\/div><\/div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-2 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"https:\/\/reservations.themora.com\/?chain=28165&amp;brand=TMR&amp;hotel=45447&amp;config=TMR&amp;theme=TMR&amp;level=hotel&amp;locale=en-US&amp;src=TMR-EN&amp;rooms=1&amp;adult=2&amp;_gl=1*fer1u6*_gcl_au*MTkzNDg2OTQ3Ni4xNzE1MjM5OTgx*_ga*MTQyNTM0ODIxOS4xNzE1MjM5OTgx*_ga_721NJ2XY9D*MTcxNzc1MjM0MC45LjEuMTcxNzc1NDkwMy4wLjAuMA..\" rel=\"noopener\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Erkunden Sie The Mora Zanzibar<\/span><\/a><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-6 fusion-flex-container has-pattern-background has-mask-background fusion-parallax-none nonhundred-percent-fullwidth non-hundred-percent-height-scrolling background-image-filter\" style=\"--awb-background-position:right center;--awb-background-position-small:center bottom;--awb-background-repeat-small:no-repeat;--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-top:50px;--awb-padding-bottom:80px;--awb-padding-right-medium:20px;--awb-padding-bottom-medium:50px;--awb-padding-left-medium:20px;--awb-padding-right-small:10px;--awb-padding-bottom-small:50px;--awb-padding-left-small:10px;--awb-background-image:url(&quot;https:\/\/www.themora.com\/wp-content\/uploads\/2025\/10\/50ba56a19b687b0ffcb8afcb6884eef1e5603e671-1024x235.png&quot;);--awb-background-size:cover;--awb-background-size-small:cover;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-center fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-7 fusion_builder_column_2_3 2_3 fusion-flex-column\" style=\"--awb-padding-top:30px;--awb-padding-top-medium:0px;--awb-padding-top-small:0px;--awb-padding-right-small:15px;--awb-padding-left-small:15px;--awb-bg-size:cover;--awb-width-large:66.666666666667%;--awb-margin-top-large:0px;--awb-spacing-right-large:2.88%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:2.88%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-3 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:#ffffff;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-center\" style=\"margin:0;\">Das Gew\u00f6hnliche aufwerten<\/h2><\/div><div class=\"fusion-text fusion-text-5 fusion-text-no-margin\" style=\"--awb-text-color:#ffffff;--awb-margin-bottom:20px;\"><p style=\"text-align: center;\">Wir wissen, dass es nicht nur die gro\u00dfen Gesten sind, die einen Aufenthalt au\u00dfergew\u00f6hnlich machen, sondern auch die vielen kleinen Momente. Neugierig und wissbegierig sind wir st\u00e4ndig darauf bedacht, bisherige Vorgehensweisen neu zu \u00fcberdenken. Dabei erproben wir innovative und kreative L\u00f6sungen, die das Erlebnis eines jeden Gastes aufwerten.<\/p>\n<\/div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-3 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"#search_availability\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Erkunden Sie The Mora Zanzibar<\/span><\/a><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7 fusion-flex-container has-pattern-background has-mask-background hundred-percent-fullwidth non-hundred-percent-height-scrolling block-reverse-mobile\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-right:0px;--awb-padding-left:0px;--awb-padding-right-small:0px;--awb-padding-bottom-small:0px;--awb-padding-left-small:0px;--awb-margin-bottom:0px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-8 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-flex-align-self-center\" style=\"--awb-padding-top:200px;--awb-padding-bottom:200px;--awb-padding-right-medium:15px;--awb-padding-left-medium:15px;--awb-padding-top-small:30px;--awb-padding-right-small:15px;--awb-padding-bottom-small:30px;--awb-padding-left-small:15px;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:0px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:0px;--awb-spacing-left-small:0px;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-4 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-top:20px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-left sm-text-align-center\" style=\"margin:0;\"><div style=\"max-width: 550px; margin: auto;\">F\u00fcr Individualit\u00e4t geschaffen<\/div><\/h2><\/div><div class=\"fusion-text fusion-text-6 sm-text-align-center\"><div style=\"max-width: 550px; margin: auto;\">Wir wissen, dass kein Urlaub und kein Gast genau gleich ist. Wir machen es also ma\u00dfgeschneidert, indem wir jedes Erlebnis auf die individuellen Bed\u00fcrfnisse, Stimmungen und W\u00fcnsche unserer G\u00e4ste abstimmen. Wir erm\u00f6glichen es jedem, seinen \u201eperfekten Urlaub\u201c zu erleben \u2013 bei jedem Aufenthalt. Denn guter Service geht auf die Bed\u00fcrfnisse des Gastes ein. Ein herausragender Service kommt diesen zuvor.<\/div>\n<\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-9 fusion_builder_column_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-image:url(&#039;https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/3.jpg&#039;);--awb-bg-position:center center;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:0px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:0px;--awb-spacing-left-small:0px;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column fusion-empty-column-bg-image fusion-column-has-bg-image\" data-bg-url=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/3.jpg\"><img decoding=\"async\" class=\"fusion-empty-dims-img-placeholder fusion-no-large-visibility fusion-no-medium-visibility\" aria-label=\"3\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27960%27%20height%3D%27678%27%20viewBox%3D%270%200%20960%20678%27%3E%3Crect%20width%3D%27960%27%20height%3D%27678%27%20fill-opacity%3D%220%22%2F%3E%3C%2Fsvg%3E\" alt=\"\" title=\"\"><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-8 fusion-flex-container has-pattern-background has-mask-background hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-top:40px;--awb-padding-right:80px;--awb-padding-bottom:40px;--awb-padding-left:80px;--awb-padding-top-small:20px;--awb-padding-right-small:10px;--awb-padding-bottom-small:40px;--awb-padding-left-small:10px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"width:calc( 100% + 20px ) !important;max-width:calc( 100% + 20px ) !important;margin-left: calc(-20px \/ 2 );margin-right: calc(-20px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-10 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-padding-top:200px;--awb-padding-right:50px;--awb-padding-bottom:200px;--awb-padding-left:50px;--awb-padding-right-medium:15px;--awb-padding-left-medium:15px;--awb-padding-top-small:30px;--awb-padding-right-small:15px;--awb-padding-bottom-small:30px;--awb-padding-left-small:15px;--awb-bg-image:url(&#039;https:\/\/www.themora.com\/wp-content\/uploads\/2025\/10\/Group-1000005302-1024x1024.png&#039;);--awb-bg-position:center bottom;--awb-bg-size:cover;--awb-bg-size-medium:cover;--awb-bg-size-small:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:10px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:10px;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:10px;--awb-spacing-left-medium:10px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:10px;--awb-margin-bottom-small:20px;--awb-spacing-left-small:10px;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column fusion-column-has-bg-image\" data-bg-url=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/10\/Group-1000005302-1024x1024.png\"><div class=\"fusion-title title fusion-title-5 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color1);--awb-margin-top:20px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-center\" style=\"margin:0;\">The Mora Zanzibar<\/h2><\/div><div class=\"fusion-text fusion-text-7\" style=\"--awb-content-alignment:center;--awb-text-color:var(--awb-color1);\"><p>Wenn Sie bereit sind, das Drehbuch beiseitezulegen und Ihrem Gef\u00fchl zu folgen, ist <strong>The Mora Zanzibar<\/strong> das Luxusresort, von dem Sie immer getr\u00e4umt haben. Umgeben von unber\u00fchrten Str\u00e4nden und kristallklarem Wasser ist es ein Zufluchtsort, an dem die Zeit langsamer vergeht und jeder Tag in Ihrem eigenen Rhythmus verl\u00e4uft. Mit einem hohen Ma\u00df an Flexibilit\u00e4t und einem individuell abgestimmten Ansatz ist dies ein Urlaub ganz nach Ihrem Zeitplan \u2014 und ganz nach Ihren Vorstellungen.<\/p>\n<\/div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-4 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"https:\/\/www.themora.com\/de\/willkommen-in-sansibar\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">ENTDECKEN SIE THE MORA ZANZIBAR<\/span><\/a><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-11 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-padding-top:200px;--awb-padding-right:50px;--awb-padding-bottom:200px;--awb-padding-left:50px;--awb-padding-right-medium:15px;--awb-padding-left-medium:15px;--awb-padding-top-small:30px;--awb-padding-right-small:15px;--awb-padding-bottom-small:30px;--awb-padding-left-small:15px;--awb-bg-image:url(&#039;https:\/\/www.themora.com\/wp-content\/uploads\/2025\/10\/Group-10000053021-1024x1024.png&#039;);--awb-bg-position:center bottom;--awb-bg-size:cover;--awb-bg-size-medium:cover;--awb-bg-size-small:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:10px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:10px;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:10px;--awb-spacing-left-medium:10px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:10px;--awb-spacing-left-small:10px;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column fusion-column-has-bg-image\" data-bg-url=\"https:\/\/www.themora.com\/wp-content\/uploads\/2025\/10\/Group-10000053021-1024x1024.png\"><div class=\"fusion-title title fusion-title-6 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:#ffffff;--awb-margin-top:20px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-center\" style=\"margin:0;\">The Mora Sahara-Tozeur<\/h2><\/div><div class=\"fusion-text fusion-text-8\" style=\"--awb-content-alignment:center;--awb-text-color:var(--awb-color1);\"><p>Wenn Sie bereit sind, Ihrem Gef\u00fchl ins Herz der W\u00fcste zu folgen, erwartet Sie <strong>The Mora Sahara Tozeur<\/strong> \u2014 ein Refugium entspannten Luxus\u2019, wo nordafrikanische Eleganz auf die goldenen D\u00fcnen Tunesiens trifft. Mit sorgf\u00e4ltig kuratierten Erlebnissen, feiner K\u00fcche und friedlichen W\u00fcstenblicken ist jeder Moment eine Einladung, innezuhalten, zu erkunden und sich unter dem Sternenhimmel wieder zu verbinden.<\/p>\n<\/div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-5 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"https:\/\/www.themora.com\/de\/sahara-tozeur\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">ENTDECKEN SIE THE MORA TOZEUR<\/span><\/a><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-9 fusion-flex-container has-pattern-background has-mask-background fusion-parallax-none nonhundred-percent-fullwidth non-hundred-percent-height-scrolling background-image-filter\" style=\"--awb-background-position:right center;--awb-background-position-small:center bottom;--awb-background-repeat-small:no-repeat;--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-top:60px;--awb-padding-bottom:80px;--awb-padding-right-medium:20px;--awb-padding-bottom-medium:80px;--awb-padding-left-medium:20px;--awb-padding-right-small:10px;--awb-padding-bottom-small:80px;--awb-padding-left-small:10px;--awb-background-image:url(&quot;https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/Background-1024x261.png&quot;);--awb-background-image-small:url(&#039;https:\/\/www.themora.com\/wp-content\/uploads\/2025\/03\/Group-1000005420.png&#039;);--awb-background-size:cover;--awb-background-size-small:cover;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-center fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-12 fusion_builder_column_2_3 2_3 fusion-flex-column\" style=\"--awb-padding-top:30px;--awb-padding-top-medium:0px;--awb-padding-top-small:0px;--awb-padding-right-small:15px;--awb-padding-left-small:15px;--awb-bg-size:cover;--awb-width-large:66.666666666667%;--awb-margin-top-large:0px;--awb-spacing-right-large:2.88%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:2.88%;--awb-width-medium:66.666666666667%;--awb-order-medium:0;--awb-spacing-right-medium:2.88%;--awb-spacing-left-medium:2.88%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-7 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:#ffffff;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-center\" style=\"margin:0;\">Den Rahmen freimachen<\/h2><\/div><div class=\"fusion-text fusion-text-9 fusion-text-no-margin\" style=\"--awb-text-color:#ffffff;--awb-margin-bottom:20px;\"><p style=\"text-align: center;\">Wir wissen, dass die besten Gespr\u00e4che, Ideen und Begegnungen oft die sind, die \u00fcberraschend kommen. Deshalb m\u00f6chten wir unseren G\u00e4sten ein Gef\u00fchl von Struktur vermitteln, das in seiner Flexibilit\u00e4t befreiend wirkt \u2013 wir verzichten auf starre Regeln und Reibungspunkte, um Raum f\u00fcr gl\u00fcckliche Zuf\u00e4lle zu schaffen. So k\u00f6nnen sie den Augenblick leben.<\/p>\n<\/div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-6 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"#search_availability\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Verf\u00fcgbarkeit pr\u00fcfen<\/span><\/a><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-10 fusion-flex-container has-pattern-background has-mask-background nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-top:40px;--awb-padding-top-medium:20px;--awb-padding-right-small:15px;--awb-padding-left-small:15px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" id=\"selector_attractions_and_activities\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-center fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-13 fusion_builder_column_2_3 2_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:66.666666666667%;--awb-margin-top-large:0px;--awb-spacing-right-large:2.88%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:2.88%;--awb-width-medium:66.666666666667%;--awb-order-medium:0;--awb-spacing-right-medium:2.88%;--awb-spacing-left-medium:2.88%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-8 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-center\" style=\"margin:0;\"><p style=\"text-align: center;\"><span style=\"font-family: pp-woodland;\">Ad-hoc-Service<\/span><\/p><\/h2><\/div><div class=\"fusion-text fusion-text-10\" style=\"--awb-text-color:var(--awb-color8);\"><p style=\"text-align: center;\">Ein wirklich au\u00dfergew\u00f6hnlicher Service l\u00e4sst sich nicht auf eine Liste von Verhaltensregeln reduzieren. Wir wissen, dass Sie nicht wie jeder andere sind, also werden wir Sie auch nie so behandeln. Unser Service geht auf Ihre individuellen Bed\u00fcrfnisse ein, ganz gleich, welche es sein m\u00f6gen.<\/p>\n<\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-11 fusion-flex-container has-pattern-background has-mask-background hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-small-visibility\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-right:80px;--awb-padding-bottom:30px;--awb-padding-left:80px;--awb-padding-right-small:10px;--awb-padding-bottom-small:40px;--awb-padding-left-small:10px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-14 fusion_builder_column_1_4 1_4 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:25%;--awb-margin-top-large:0px;--awb-spacing-right-large:10px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:10px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:10px;--awb-spacing-left-medium:10px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-margin-bottom:15px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-9 hover-type-none\"><img decoding=\"async\" width=\"850\" height=\"1102\" title=\"The_Mora_Zanzibar_Sport_Pool(3)(1)\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31.jpg\" class=\"img-responsive wp-image-16557\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-200x259.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-400x519.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-600x778.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-800x1037.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31.jpg 850w\" sizes=\"(max-width: 640px) 100vw, 400px\" alt=\"\"><\/span><\/div><div class=\"fusion-title title fusion-title-9 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-bottom:0px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h3 class=\"fusion-title-heading title-heading-left\" style=\"margin:0;\"><p style=\"text-align: left;\"><span style=\"font-family: pp-woodland;\">Check-in nach Ihrer Wahl<\/span><\/p><\/h3><\/div><div class=\"fusion-text fusion-text-11\" style=\"--awb-text-color:var(--awb-color8);\"><p>Digitaler Vorab-Check-in | In-Room Check-in Option f\u00fcr h\u00f6here Zimmerkategorien | Pers\u00f6nliche und freundliche Begr\u00fc\u00dfung bei Ankunft | Lokal inspiriertes Willkommensgetr\u00e4nk und Snack<\/p>\n<\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-15 fusion_builder_column_1_4 1_4 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:25%;--awb-margin-top-large:0px;--awb-spacing-right-large:10px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:10px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:10px;--awb-spacing-left-medium:10px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-margin-bottom:15px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-10 hover-type-none\"><img decoding=\"async\" width=\"850\" height=\"1102\" title=\"The_Mora_Zanzibar_Sport_Pool(2)\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2.jpg\" class=\"img-responsive wp-image-16501\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-200x259.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-400x519.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-600x778.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-800x1037.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2.jpg 850w\" sizes=\"(max-width: 640px) 100vw, 400px\" alt=\"\"><\/span><\/div><div class=\"fusion-title title fusion-title-10 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-bottom:0px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h3 class=\"fusion-title-heading title-heading-left\" style=\"margin:0;\"><p style=\"text-align: left;\"><span style=\"font-family: pp-woodland;\">Last-day-W\u00e4scheservice<\/span><\/p><\/h3><\/div><div class=\"fusion-text fusion-text-12\" style=\"--awb-text-color:var(--awb-color8);\"><p>R\u00fcckgabe der W\u00e4sche innerhalb von 12 Stunden | Bezahlung pro W\u00e4schesack und nicht pro Kleidungsst\u00fcck<\/p>\n<\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-16 fusion_builder_column_1_4 1_4 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:25%;--awb-margin-top-large:0px;--awb-spacing-right-large:10px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:10px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:10px;--awb-spacing-left-medium:10px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-margin-bottom:15px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-11 hover-type-none\"><img decoding=\"async\" width=\"850\" height=\"1102\" title=\"The_Mora_Zanzibar_Sport_Pool(3)\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3.jpg\" class=\"img-responsive wp-image-16505\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-200x259.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-400x519.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-600x778.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-800x1037.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3.jpg 850w\" sizes=\"(max-width: 640px) 100vw, 400px\" alt=\"\"><\/span><\/div><div class=\"fusion-title title fusion-title-11 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-bottom:0px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h3 class=\"fusion-title-heading title-heading-left\" style=\"margin:0;\"><p style=\"text-align: left;\"><span style=\"font-family: pp-woodland;\">Mehr Platz im Koffer<\/span><\/p><\/h3><\/div><div class=\"fusion-text fusion-text-13\" style=\"--awb-text-color:var(--awb-color8);\"><p>Vergissmeinnicht-Gegenst\u00e4nde vor Ort verf\u00fcgbar (z. B. Ladeger\u00e4te, Adapter) | Auswahl an Brettspielen\/Spielzeug f\u00fcr Kinder | Schnorchelausr\u00fcstung | Nachhaltige Badartikel auf dem Zimmer<\/p>\n<\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-17 fusion_builder_column_1_4 1_4 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:25%;--awb-margin-top-large:0px;--awb-spacing-right-large:10px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:10px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:10px;--awb-spacing-left-medium:10px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-margin-bottom:15px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-12 hover-type-none\"><img decoding=\"async\" width=\"850\" height=\"1102\" title=\"The_Mora_Zanzibar_Sport_Pool(4)\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4.jpg\" class=\"img-responsive wp-image-16509\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-200x259.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-400x519.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-600x778.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-800x1037.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4.jpg 850w\" sizes=\"(max-width: 640px) 100vw, 400px\" alt=\"\"><\/span><\/div><div class=\"fusion-title title fusion-title-12 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-bottom:0px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h3 class=\"fusion-title-heading title-heading-left\" style=\"margin:0;\"><p style=\"text-align: left;\"><span style=\"font-family: pp-woodland;\">Individueller Service<\/span><\/p><\/h3><\/div><div class=\"fusion-text fusion-text-14\" style=\"--awb-text-color:var(--awb-color8);\"><p>Freundliches, zuvorkommendes und sachkundiges Personal | Auswahl an Verw\u00f6hnpaketen zur Aufwertung des Aufenthalts<\/p>\n<\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-12 fusion-flex-container has-pattern-background has-mask-background hundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-medium-visibility fusion-no-large-visibility\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-right:80px;--awb-padding-bottom:30px;--awb-padding-left:80px;--awb-padding-right-small:30px;--awb-padding-bottom-small:0px;--awb-padding-left-small:30px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-18 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-padding-bottom-small:0px;--awb-overflow:hidden;--awb-bg-size:cover;--awb-border-radius:15px 15px 15px 15px;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-margin-bottom-small:0;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-carousel fusion-image-carousel-auto fusion-image-carousel-1 fusion-no-medium-visibility fusion-no-large-visibility awb-image-carousel-top-below-caption height_custom\"><div class=\"awb-carousel awb-swiper awb-swiper-carousel awb-carousel--carousel awb-swiper-dots-position-bottom awb-imageframe-style awb-imageframe-style-below awb-imageframe-style-1\" data-layout=\"carousel\" data-autoplay=\"no\" data-autoplayspeed=\"2500\" data-autoplaypause=\"no\" data-loop=\"yes\" data-columns=\"1\" data-columnsmedium=\"1\" data-columnssmall=\"1\" data-itemmargin=\"40\" data-itemwidth=\"180\" data-touchscroll=\"drag\" data-freemode=\"no\" data-imagesize=\"auto\" data-scrollitems=\"1\" data-centeredslides=\"no\" data-rotationangle=\"50\" data-depth=\"100\" data-speed=\"500\" data-shadow=\"no\" data-pagination=\"bullets\" style=\"--awb-columns:1;--awb-column-spacing:40px;--awb-caption-title-color:var(--awb-color8);--awb-caption-title-size:30px;--awb-caption-text-color:var(--awb-color8);--awb-caption-margin-bottom:25px;--awb-dots-align:center;--awb-caption-title-font-family:&quot;PP Woodland&quot;;--awb-caption-title-font-style:normal;--awb-caption-title-font-weight:400;--awb-caption-text-font-family:&quot;PP Woodland&quot;;--awb-caption-text-font-style:normal;--awb-caption-text-font-weight:400;\"><div class=\"swiper-wrapper awb-image-carousel-wrapper fusion-flex-align-items-stretch\"><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"850\" height=\"1102\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-200x259.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-231x300.jpg 231w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-400x519.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-600x778.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-768x996.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-790x1024.jpg 790w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31-800x1037.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool31.jpg 850w\" sizes=\"(max-width: 850px) 100vw, 850px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:left;\"><div class=\"awb-imageframe-caption\"><h2 class=\"awb-imageframe-caption-title\">Check-in nach Ihrer Wahl<\/h2><p class=\"awb-imageframe-caption-text\">Digitaler Vorab-Check-in | In-Room Check-in Option f\u00fcr h\u00f6here Zimmerkategorien | Pers\u00f6nliche und freundliche Begr\u00fc\u00dfung bei Ankunft | Lokal inspiriertes Willkommensgetr\u00e4nk und Snack<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"850\" height=\"1102\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-200x259.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-231x300.jpg 231w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-400x519.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-600x778.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-768x996.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-790x1024.jpg 790w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2-800x1037.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool2.jpg 850w\" sizes=\"(max-width: 850px) 100vw, 850px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:left;\"><div class=\"awb-imageframe-caption\"><h2 class=\"awb-imageframe-caption-title\">Last-day-W\u00e4scheservice<\/h2><p class=\"awb-imageframe-caption-text\">R\u00fcckgabe der W\u00e4sche innerhalb von 12 Stunden | Bezahlung pro W\u00e4schesack und nicht pro Kleidungsst\u00fcck<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"850\" height=\"1102\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-200x259.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-231x300.jpg 231w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-400x519.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-600x778.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-768x996.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-790x1024.jpg 790w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3-800x1037.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool3.jpg 850w\" sizes=\"(max-width: 850px) 100vw, 850px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:left;\"><div class=\"awb-imageframe-caption\"><h2 class=\"awb-imageframe-caption-title\">Mehr Platz im Koffer<\/h2><p class=\"awb-imageframe-caption-text\">Vergissmeinnicht-Gegenst\u00e4nde vor Ort verf\u00fcgbar (z. B. Ladeger\u00e4te, Adapter) | Auswahl an Brettspielen\/Spielzeug f\u00fcr Kinder | Schnorchelausr\u00fcstung | Nachhaltige Badartikel auf dem Zimmer<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"850\" height=\"1102\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-200x259.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-231x300.jpg 231w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-400x519.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-600x778.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-768x996.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-790x1024.jpg 790w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4-800x1037.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool4.jpg 850w\" sizes=\"(max-width: 850px) 100vw, 850px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:left;\"><div class=\"awb-imageframe-caption\"><h2 class=\"awb-imageframe-caption-title\">Individueller Service<\/h2><p class=\"awb-imageframe-caption-text\">Freundliches, zuvorkommendes und sachkundiges Personal | Auswahl an Verw\u00f6hnpaketen zur Aufwertung des Aufenthalts<\/p><\/div><\/div><\/div><\/div><\/div><div class=\"awb-swiper-button awb-swiper-button-prev\"><i class=\"awb-icon-angle-left\" aria-hidden=\"true\"><\/i><\/div><div class=\"awb-swiper-button awb-swiper-button-next\"><i class=\"awb-icon-angle-right\" aria-hidden=\"true\"><\/i><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-13 fusion-flex-container has-pattern-background has-mask-background nonhundred-percent-fullwidth non-hundred-percent-height-scrolling promotions-links discover-our-promotions\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-right-small:15px;--awb-padding-left-small:15px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-19 fusion_builder_column_2_3 2_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:66.666666666667%;--awb-margin-top-large:0px;--awb-spacing-right-large:2.88%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:2.88%;--awb-width-medium:66.666666666667%;--awb-order-medium:0;--awb-spacing-right-medium:2.88%;--awb-spacing-left-medium:2.88%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-13 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-center\" style=\"margin:0;\">Kulinarische Freiheit<\/h2><\/div><div class=\"fusion-text fusion-text-15\" style=\"--awb-text-color:var(--awb-color8);\"><p style=\"text-align: center;\">Im The Mora geht der Begriff der kulinarischen Freiheit weit \u00fcber die einfache Auswahl eines Gerichts von der Speisekarte hinaus. Stattdessen finden Sie hier ganzt\u00e4gige Mahlzeiten, eine Minibar mit Ihren Lieblingss\u00e4ften und alkoholischen Getr\u00e4nken sowie ein Speisenangebot, das sowohl Vielfalt als auch Vertrautes umfasst. Lehnen Sie sich zur\u00fcck und genie\u00dfen Sie den Service, wann immer Sie wollen \u2013 der einzige Zeitplan, den wir einhalten, ist Ihrer.<\/p>\n<\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-14 fusion-flex-container has-pattern-background has-mask-background hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-right:130px;--awb-padding-bottom:30px;--awb-padding-left:130px;--awb-padding-right-medium:30px;--awb-padding-left-medium:30px;--awb-padding-top-small:0px;--awb-padding-right-small:30px;--awb-padding-bottom-small:30px;--awb-padding-left-small:30px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-20 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-flex-align-self-stretch fusion-no-small-visibility\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-carousel fusion-image-carousel-auto fusion-image-carousel-2 fusion-carousel-border awb-image-carousel-top-below-caption custom-carrusel-target custom-carrusel-desktop custom-position-button-nav\"><div class=\"awb-carousel awb-swiper awb-swiper-carousel awb-carousel--carousel awb-swiper-dots-position-bottom awb-imageframe-style awb-imageframe-style-below awb-imageframe-style-2\" data-layout=\"carousel\" data-autoplay=\"no\" data-autoplayspeed=\"2500\" data-autoplaypause=\"no\" data-loop=\"yes\" data-columns=\"2.0\" data-columnsmedium=\"1\" data-columnssmall=\"1\" data-itemmargin=\"10\" data-itemwidth=\"180\" data-touchscroll=\"drag\" data-freemode=\"no\" data-imagesize=\"auto\" data-scrollitems=\"1\" data-centeredslides=\"no\" data-rotationangle=\"50\" data-depth=\"100\" data-speed=\"500\" data-shadow=\"no\" data-pagination=\"bullets\" style=\"--awb-columns:2.0;--awb-column-spacing:10px;--awb-caption-title-color:var(--awb-color8);--awb-caption-title-size:24px;--awb-caption-title-letter-spacing:0px;--awb-caption-text-color:var(--awb-color8);--awb-caption-text-size:14px;--awb-border-width:1px;--awb-border-color:#e9eaee;--awb-dots-align:center;--awb-caption-title-font-family:&quot;PP Woodland&quot;;--awb-caption-title-font-style:normal;--awb-caption-title-font-weight:400;--awb-caption-text-font-family:&quot;PP Woodland&quot;;--awb-caption-text-font-style:normal;--awb-caption-text-font-weight:400;\"><div class=\"swiper-wrapper awb-image-carousel-wrapper fusion-flex-align-items-stretch\"><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1484\" height=\"1197\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-200x161.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-400x323.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-600x484.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-800x645.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-1200x968.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5.jpg 1484w\" sizes=\"(min-width: 2200px) 100vw, (min-width: 712px) 595px, (min-width: 640px) 712px, \" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Ganzt\u00e4gige Speisekarte<\/h3><p class=\"awb-imageframe-caption-text\">Sie k\u00f6nnen aus einer Reihe von Optionen f\u00fcr Fr\u00fchst\u00fcck, Mittag- und Abendessen w\u00e4hlen, die jederzeit bestellt werden k\u00f6nnen | Mindestens ein Gastrobereich ist rund um die Uhr ge\u00f6ffnet<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1484\" height=\"1197\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-200x161.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-400x323.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-600x484.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-800x645.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-1200x968.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6.jpg 1484w\" sizes=\"(min-width: 2200px) 100vw, (min-width: 712px) 595px, (min-width: 640px) 712px, \" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Personalisierte Minibar<\/h3><p class=\"awb-imageframe-caption-text\">Bei Ihrer Ankunft stellen wir Ihnen eine volle Minibar mit all Ihren Lieblingsgetr\u00e4nken nach Ihren W\u00fcnschen zur Verf\u00fcgung | T\u00e4gliche Auff\u00fcllung der Minibar<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1484\" height=\"1197\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-200x161.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-400x323.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-600x484.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-800x645.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-1200x968.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7.jpg 1484w\" sizes=\"(min-width: 2200px) 100vw, (min-width: 712px) 595px, (min-width: 640px) 712px, \" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">The Mora Tempori Bar Konzept<\/h3><p class=\"awb-imageframe-caption-text\">Ein ma\u00dfgeschneidertes Cocktail-Konzept, zusammengestellt von einem Team aus international renommierten Mixologen | Geschmacksextraktion mit modernen Mixologie-Techniken | Eine Auswahl an alkoholfreien und alkoholarmen Getr\u00e4nken<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1484\" height=\"1196\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-200x161.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-400x322.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-600x484.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-800x645.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-1200x967.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8.jpg 1484w\" sizes=\"(min-width: 2200px) 100vw, (min-width: 712px) 595px, (min-width: 640px) 712px, \" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Das Men\u00fc losgel\u00f6st von der Location<\/h3><p class=\"awb-imageframe-caption-text\">Ein universelles Men\u00fc, das an allen Spezialit\u00e4ten-Gastrobereichen erh\u00e4ltlich ist, f\u00fcr G\u00e4ste, die weniger abenteuerlustig sind, aber dennoch das Ambiente unserer Gastrobereiche genie\u00dfen m\u00f6chten | Das Men\u00fc wird eine Auswahl an sch\u00f6n angerichteten und hochwertigen Gerichten enthalten, die gleichzeitig mit den Spezialit\u00e4ten serviert werden k\u00f6nnen<\/p><\/div><\/div><\/div><\/div><\/div><div class=\"awb-swiper-button awb-swiper-button-prev\"><i class=\"awb-icon-angle-left\" aria-hidden=\"true\"><\/i><\/div><div class=\"awb-swiper-button awb-swiper-button-next\"><i class=\"awb-icon-angle-right\" aria-hidden=\"true\"><\/i><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-21 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-flex-align-self-stretch fusion-no-medium-visibility fusion-no-large-visibility\" style=\"--awb-overflow:hidden;--awb-bg-color:#ffffff;--awb-bg-color-hover:#ffffff;--awb-bg-size:cover;--awb-border-radius:5px 5px 5px 5px;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-carousel fusion-image-carousel-auto fusion-image-carousel-3 fusion-carousel-border awb-image-carousel-top-below-caption custom-carrusel-target mobile\"><div class=\"awb-carousel awb-swiper awb-swiper-carousel awb-carousel--carousel awb-swiper-dots-position-bottom awb-imageframe-style awb-imageframe-style-below awb-imageframe-style-3\" data-layout=\"carousel\" data-autoplay=\"no\" data-autoplayspeed=\"2500\" data-autoplaypause=\"no\" data-loop=\"yes\" data-columns=\"1\" data-columnsmedium=\"1\" data-columnssmall=\"1\" data-itemmargin=\"10\" data-itemwidth=\"180\" data-touchscroll=\"drag\" data-freemode=\"no\" data-imagesize=\"auto\" data-scrollitems=\"1\" data-centeredslides=\"no\" data-rotationangle=\"50\" data-depth=\"100\" data-speed=\"500\" data-shadow=\"no\" data-pagination=\"bullets\" style=\"--awb-columns:1;--awb-column-spacing:10px;--awb-caption-title-color:var(--awb-color8);--awb-caption-title-size:24px;--awb-caption-title-letter-spacing:0px;--awb-caption-text-color:var(--awb-color8);--awb-caption-text-size:14px;--awb-border-width:1px;--awb-border-color:#e9eaee;--awb-dots-align:center;--awb-caption-title-font-family:&quot;PP Woodland&quot;;--awb-caption-title-font-style:normal;--awb-caption-title-font-weight:400;--awb-caption-text-font-family:&quot;PP Woodland&quot;;--awb-caption-text-font-style:normal;--awb-caption-text-font-weight:400;\"><div class=\"swiper-wrapper awb-image-carousel-wrapper fusion-flex-align-items-stretch\"><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1484\" height=\"1197\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-200x161.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-300x242.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-400x323.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-600x484.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-768x619.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-800x645.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-1024x826.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5-1200x968.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool5.jpg 1484w\" sizes=\"(max-width: 1484px) 100vw, 1484px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Ganzt\u00e4gige Speisekarte<\/h3><p class=\"awb-imageframe-caption-text\">Sie k\u00f6nnen aus einer Reihe von Optionen f\u00fcr Fr\u00fchst\u00fcck, Mittag- und Abendessen w\u00e4hlen, die jederzeit bestellt werden k\u00f6nnen | Mindestens ein Gastrobereich ist rund um die Uhr ge\u00f6ffnet<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1484\" height=\"1197\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-200x161.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-300x242.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-400x323.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-600x484.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-768x619.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-800x645.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-1024x826.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6-1200x968.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool6.jpg 1484w\" sizes=\"(max-width: 1484px) 100vw, 1484px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Personalisierte Minibar<\/h3><p class=\"awb-imageframe-caption-text\">Bei Ihrer Ankunft stellen wir Ihnen eine volle Minibar mit all Ihren Lieblingsgetr\u00e4nken nach Ihren W\u00fcnschen zur Verf\u00fcgung | T\u00e4gliche Auff\u00fcllung der Minibar<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1484\" height=\"1197\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-200x161.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-300x242.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-400x323.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-600x484.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-768x619.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-800x645.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-1024x826.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7-1200x968.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool7.jpg 1484w\" sizes=\"(max-width: 1484px) 100vw, 1484px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">The Mora Tempori Bar Konzept<\/h3><p class=\"awb-imageframe-caption-text\">Ein ma\u00dfgeschneidertes Cocktail-Konzept, zusammengestellt von einem Team aus international renommierten Mixologen | Geschmacksextraktion mit modernen Mixologie-Techniken | Eine Auswahl an alkoholfreien und alkoholarmen Getr\u00e4nken<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1484\" height=\"1196\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-200x161.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-300x242.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-400x322.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-600x484.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-768x619.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-800x645.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-1024x825.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8-1200x967.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool8.jpg 1484w\" sizes=\"(max-width: 1484px) 100vw, 1484px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Das Men\u00fc losgel\u00f6st von der Location<\/h3><p class=\"awb-imageframe-caption-text\">Ein universelles Men\u00fc, das an allen Spezialit\u00e4ten-Gastrobereichen erh\u00e4ltlich ist, f\u00fcr G\u00e4ste, die weniger abenteuerlustig sind, aber dennoch das Ambiente unserer Gastrobereiche genie\u00dfen m\u00f6chten | Das Men\u00fc wird eine Auswahl an sch\u00f6n angerichteten und hochwertigen Gerichten enthalten, die gleichzeitig mit den Spezialit\u00e4ten serviert werden k\u00f6nnen<\/p><\/div><\/div><\/div><\/div><\/div><div class=\"awb-swiper-button awb-swiper-button-prev\"><i class=\"awb-icon-angle-left\" aria-hidden=\"true\"><\/i><\/div><div class=\"awb-swiper-button awb-swiper-button-next\"><i class=\"awb-icon-angle-right\" aria-hidden=\"true\"><\/i><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-15 fusion-flex-container has-pattern-background has-mask-background hundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-right:0px;--awb-padding-left:0px;--awb-padding-bottom-small:30px;--awb-margin-bottom:0px;--awb-background-color:var(--awb-color8);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-stretch fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"width:calc( 100% + 0px ) !important;max-width:calc( 100% + 0px ) !important;margin-left: calc(-0px \/ 2 );margin-right: calc(-0px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-22 fusion_builder_column_1_2 1_2 fusion-flex-column\" style=\"--awb-padding-bottom:0px;--awb-bg-image:url(&#039;https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-1000005277.png&#039;);--awb-bg-position:center center;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:0px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:0px;--awb-margin-bottom-small:20px;--awb-spacing-left-small:0px;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column fusion-column-has-bg-image\" data-bg-url=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-1000005277.png\"><div class=\"fusion-image-element fusion-no-medium-visibility fusion-no-large-visibility\" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-13 hover-type-none\"><img decoding=\"async\" width=\"1920\" height=\"1917\" title=\"Group 1000005277\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-1000005277.png\" class=\"img-responsive wp-image-16493\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-1000005277-200x200.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-1000005277-400x399.png 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-1000005277-600x599.png 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-1000005277-800x799.png 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-1000005277-1200x1198.png 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-1000005277.png 1920w\" sizes=\"(max-width: 640px) 100vw, 800px\" alt=\"\"><\/span><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-23 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-flex-align-self-center\" style=\"--awb-padding-right:200px;--awb-padding-left:120px;--awb-padding-right-medium:15px;--awb-padding-left-medium:15px;--awb-padding-right-small:15px;--awb-padding-left-small:15px;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:20px;--awb-spacing-left-large:0px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:0px;--awb-spacing-left-small:0px;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-14 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color6);--awb-margin-top:20px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-left sm-text-align-center\" style=\"margin:0;\">Erhabene Erlebnisse<\/h2><\/div><div class=\"fusion-text fusion-text-16 sm-text-align-center\" style=\"--awb-text-color:var(--awb-color6);\"><p>Unsere G\u00e4steerfahrungen bringen Ihnen die unglaublichen Ziele n\u00e4her, die uns inspirieren. Zeit, innezuhalten und das Wunder in jedem Augenblick zu entfalten. Begeben Sie sich auf epische Abenteuer und tauchen Sie ein in den Reichtum der hiesigen Landschaft und Kultur. Jede Sekunde geh\u00f6rt wirklich Ihnen.<\/p>\n<\/div><div class=\"accordian fusion-accordian text-white\" style=\"--awb-margin-bottom:0px;--awb-border-size:1px;--awb-icon-size:10px;--awb-content-font-size:var(--awb-typography4-font-size);--awb-icon-alignment:left;--awb-hover-color:var(--awb-color2);--awb-border-color:var(--awb-color6);--awb-background-color:var(--awb-color1);--awb-divider-color:var(--awb-color8);--awb-divider-hover-color:var(--awb-color8);--awb-icon-color:var(--awb-color6);--awb-title-color:var(--awb-color6);--awb-content-color:var(--awb-color6);--awb-icon-box-color:var(--awb-color6);--awb-toggle-hover-accent-color:var(--awb-color6);--awb-toggle-active-accent-color:var(--awb-color6);--awb-title-font-family:var(--awb-typography1-font-family);--awb-title-font-weight:var(--awb-typography1-font-weight);--awb-title-font-style:var(--awb-typography1-font-style);--awb-title-font-size:16px;--awb-title-letter-spacing:var(--awb-typography1-letter-spacing);--awb-title-line-height:var(--awb-typography1-line-height);--awb-content-font-family:&quot;ABCMarfa-Light&quot;;--awb-content-font-style:normal;--awb-content-font-weight:400;\"><div class=\"panel-group fusion-toggle-icon-unboxed\" id=\"accordion-15065-1\"><div class=\"fusion-panel panel-default panel-63ff351c217f42137 fusion-toggle-no-divider\" style=\"--awb-title-color:var(--awb-color6);--awb-content-color:var(--awb-color6);\"><div class=\"panel-heading\"><h4 class=\"panel-title toggle\" id=\"toggle_63ff351c217f42137\"><a class=\"active\" aria-expanded=\"true\" aria-controls=\"63ff351c217f42137\" role=\"button\" data-toggle=\"collapse\" data-parent=\"#accordion-15065-1\" data-target=\"#63ff351c217f42137\" href=\"#63ff351c217f42137\"><span class=\"fusion-toggle-icon-wrapper\" aria-hidden=\"true\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><i class=\"fa-fusion-box inactive-icon fa-angle-right fas\" aria-hidden=\"true\"><\/i><\/span><span class=\"fusion-toggle-heading\">Pers\u00f6nliche Empfehlungen<\/span><\/a><\/h4><\/div><div id=\"63ff351c217f42137\" class=\"panel-collapse collapse in\" aria-labelledby=\"toggle_63ff351c217f42137\"><div class=\"panel-body toggle-content fusion-clearfix\">Einheimische und sachkundige Mitarbeiter, die Ihnen Empfehlungen zu den wichtigsten Sehensw\u00fcrdigkeiten in der Region geben k\u00f6nnen | Sie erhalten ein individuelles Erlebnis, das genau auf Sie und Ihren Zeitplan zugeschnitten ist<\/div><\/div><\/div><div class=\"fusion-panel panel-default panel-481eeb6e77647e7f0 fusion-toggle-no-divider\" style=\"--awb-title-color:var(--awb-color6);--awb-content-color:var(--awb-color6);\"><div class=\"panel-heading\"><h4 class=\"panel-title toggle\" id=\"toggle_481eeb6e77647e7f0\"><a aria-expanded=\"false\" aria-controls=\"481eeb6e77647e7f0\" role=\"button\" data-toggle=\"collapse\" data-parent=\"#accordion-15065-1\" data-target=\"#481eeb6e77647e7f0\" href=\"#481eeb6e77647e7f0\"><span class=\"fusion-toggle-icon-wrapper\" aria-hidden=\"true\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><i class=\"fa-fusion-box inactive-icon fa-angle-right fas\" aria-hidden=\"true\"><\/i><\/span><span class=\"fusion-toggle-heading\">Kleine Gruppen<\/span><\/a><\/h4><\/div><div id=\"481eeb6e77647e7f0\" class=\"panel-collapse collapse \" aria-labelledby=\"toggle_481eeb6e77647e7f0\"><div class=\"panel-body toggle-content fusion-clearfix\">Sie haben die Wahl, Ihre Reise so privat zu gestalten, wie Sie es w\u00fcnschen, mit kleineren Gruppen als Standard f\u00fcr alle Erlebnisse | Private Touren sind f\u00fcr jede Gruppengr\u00f6\u00dfe verf\u00fcgbar.<\/div><\/div><\/div><div class=\"fusion-panel panel-default panel-656926626eb2241ba fusion-toggle-no-divider\" style=\"--awb-title-color:var(--awb-color6);--awb-content-color:var(--awb-color6);\"><div class=\"panel-heading\"><h4 class=\"panel-title toggle\" id=\"toggle_656926626eb2241ba\"><a aria-expanded=\"false\" aria-controls=\"656926626eb2241ba\" role=\"button\" data-toggle=\"collapse\" data-parent=\"#accordion-15065-1\" data-target=\"#656926626eb2241ba\" href=\"#656926626eb2241ba\"><span class=\"fusion-toggle-icon-wrapper\" aria-hidden=\"true\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><i class=\"fa-fusion-box inactive-icon fa-angle-right fas\" aria-hidden=\"true\"><\/i><\/span><span class=\"fusion-toggle-heading\">Flexible Zeitpl\u00e4ne<\/span><\/a><\/h4><\/div><div id=\"656926626eb2241ba\" class=\"panel-collapse collapse \" aria-labelledby=\"toggle_656926626eb2241ba\"><div class=\"panel-body toggle-content fusion-clearfix\">Sie haben die Wahl, so wenig oder so viel Zeit an einem Ort zu verbringen, wie Sie m\u00f6chten, mit flexiblen Zeitpl\u00e4nen | Unsere Reiseleiter passen den Tagesablauf an Ihre Erwartungen und Interessen an.<\/div><\/div><\/div><div class=\"fusion-panel panel-default panel-6c054abf48cd20836 fusion-toggle-no-divider\" style=\"--awb-title-color:var(--awb-color6);--awb-content-color:var(--awb-color6);\"><div class=\"panel-heading\"><h4 class=\"panel-title toggle\" id=\"toggle_6c054abf48cd20836\"><a aria-expanded=\"false\" aria-controls=\"6c054abf48cd20836\" role=\"button\" data-toggle=\"collapse\" data-parent=\"#accordion-15065-1\" data-target=\"#6c054abf48cd20836\" href=\"#6c054abf48cd20836\"><span class=\"fusion-toggle-icon-wrapper\" aria-hidden=\"true\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><i class=\"fa-fusion-box inactive-icon fa-angle-right fas\" aria-hidden=\"true\"><\/i><\/span><span class=\"fusion-toggle-heading\">Qualit\u00e4t garantiert<\/span><\/a><\/h4><\/div><div id=\"6c054abf48cd20836\" class=\"panel-collapse collapse \" aria-labelledby=\"toggle_6c054abf48cd20836\"><div class=\"panel-body toggle-content fusion-clearfix\">Alle unsere Erlebnisse entsprechen unseren strengen Qualit\u00e4tsanforderungen. Wir m\u00f6chten, dass unsere G\u00e4ste aus den richtigen Gr\u00fcnden ein unvergessliches Erlebnis haben | Kontinuierliche \u00dcberpr\u00fcfung der Erfahrungen, um die Zufriedenheit der G\u00e4ste sicherzustellen<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-16 fusion-flex-container has-pattern-background has-mask-background nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-top:40px;--awb-padding-top-small:20px;--awb-padding-right-small:30px;--awb-padding-bottom-small:0px;--awb-padding-left-small:30px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-24 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-flex-align-self-center\" style=\"--awb-padding-right:100px;--awb-padding-left:50px;--awb-padding-right-medium:15px;--awb-padding-left-medium:15px;--awb-padding-right-small:0px;--awb-padding-left-small:0px;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:0px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-15 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-top:20px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-left sm-text-align-center\" style=\"margin:0;\">Immerw\u00e4hrendes Wohlbefinden<\/h2><\/div><div class=\"fusion-text fusion-text-17 sm-text-align-center\" style=\"--awb-text-color:var(--awb-color8);\"><p>Unser durchdachtes Wohlf\u00fchlangebot bietet Ihnen den n\u00f6tigen Raum, um sich auszustrecken, zu entspannen und von den Ablenkungen des Alltags abzuschalten. Genie\u00dfen Sie Momente, die fortdauern. Einzelunterricht, hybride Behandlungen und Wohlf\u00fchlberatung an Ort und Stelle.<\/p>\n<\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-25 fusion_builder_column_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:3.84%;--awb-spacing-left-medium:3.84%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-carousel fusion-image-carousel-auto fusion-image-carousel-4 fusion-no-small-visibility fusion-no-medium-visibility fusion-carousel-border awb-image-carousel-top-below-caption custom-carrusel-target equal-height\"><div class=\"awb-carousel awb-swiper awb-swiper-carousel awb-carousel--carousel awb-swiper-dots-position-bottom awb-imageframe-style awb-imageframe-style-below awb-imageframe-style-4\" data-layout=\"carousel\" data-autoplay=\"no\" data-autoplayspeed=\"2500\" data-autoplaypause=\"no\" data-loop=\"yes\" data-columns=\"1\" data-columnsmedium=\"1\" data-columnssmall=\"1\" data-itemmargin=\"10\" data-itemwidth=\"180\" data-touchscroll=\"drag\" data-freemode=\"no\" data-imagesize=\"auto\" data-scrollitems=\"1\" data-centeredslides=\"no\" data-rotationangle=\"50\" data-depth=\"100\" data-speed=\"500\" data-shadow=\"no\" data-pagination=\"bullets\" style=\"--awb-columns:1;--awb-column-spacing:10px;--awb-caption-title-color:var(--awb-color8);--awb-caption-title-size:24px;--awb-caption-text-color:var(--awb-color8);--awb-caption-text-size:14px;--awb-border-width:1px;--awb-border-color:#e9eaee;--awb-dots-align:center;--awb-caption-title-font-family:&quot;PP Woodland&quot;;--awb-caption-title-font-style:normal;--awb-caption-title-font-weight:400;--awb-caption-text-font-family:&quot;PP Woodland&quot;;--awb-caption-text-font-style:normal;--awb-caption-text-font-weight:400;\"><div class=\"swiper-wrapper awb-image-carousel-wrapper fusion-flex-align-items-stretch\"><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1348\" height=\"974\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-200x145.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-300x217.png 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-400x289.png 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-600x434.png 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-768x555.png 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-800x578.png 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-1024x740.png 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-1200x867.png 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521.png 1348w\" sizes=\"(max-width: 1348px) 100vw, 1348px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:center;\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Bespoke spa treatment<\/h3><p class=\"awb-imageframe-caption-text\">For ultimate relaxation, you can enjoy a remote spa treatment that can be arranged anywhere within the resort | Our younger guests can indulge in treatments too with a specifically designed menu just for them<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1346\" height=\"970\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-200x144.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-300x216.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-400x288.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-600x432.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-768x553.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-800x577.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-1024x738.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-1200x865.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9.jpg 1346w\" sizes=\"(max-width: 1346px) 100vw, 1346px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:center;\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Wellness workshops<\/h3><p class=\"awb-imageframe-caption-text\">A variety of classes with a holistic approach that focus on the mind, body and soul | Classes are cleverly scheduled to reflect the mood into the moment so our guests can pause to reflect and relax<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1348\" height=\"974\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-200x145.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-300x217.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-400x289.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-600x434.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-768x555.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-800x578.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-1024x740.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-1200x867.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10.jpg 1348w\" sizes=\"(max-width: 1348px) 100vw, 1348px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:center;\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Personalised coaching sessions<\/h3><p class=\"awb-imageframe-caption-text\">For our guests seeking a more intensive workout during their stay: we have highly skilled fitness instructors available throughout the day to help you with your fitness goals and ambitions<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1348\" height=\"996\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-200x148.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-300x222.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-400x296.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-600x443.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-768x567.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-800x591.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-1024x757.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-1200x887.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11.jpg 1348w\" sizes=\"(max-width: 1348px) 100vw, 1348px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:center;\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Wellbeing Expert<\/h3><p class=\"awb-imageframe-caption-text\">We recognise that each guest will connect with nature in their own unique way. That\u2019s why we have dedicated wellbeing consultants on hand to ensure you can follow your mood into the moment<\/p><\/div><\/div><\/div><\/div><\/div><div class=\"awb-swiper-button awb-swiper-button-prev\"><i class=\"awb-icon-angle-left\" aria-hidden=\"true\"><\/i><\/div><div class=\"awb-swiper-button awb-swiper-button-next\"><i class=\"awb-icon-angle-right\" aria-hidden=\"true\"><\/i><\/div><\/div><\/div><div class=\"fusion-image-carousel fusion-image-carousel-auto fusion-image-carousel-5 fusion-no-large-visibility fusion-carousel-border awb-image-carousel-top-below-caption custom-carrusel-target mobile equal-height\"><div class=\"awb-carousel awb-swiper awb-swiper-carousel awb-carousel--carousel awb-swiper-dots-position-bottom awb-imageframe-style awb-imageframe-style-below awb-imageframe-style-5\" data-layout=\"carousel\" data-autoplay=\"no\" data-autoplayspeed=\"2500\" data-autoplaypause=\"no\" data-loop=\"yes\" data-columns=\"1\" data-columnsmedium=\"1\" data-columnssmall=\"1\" data-itemmargin=\"10\" data-itemwidth=\"180\" data-touchscroll=\"drag\" data-freemode=\"no\" data-imagesize=\"auto\" data-scrollitems=\"1\" data-centeredslides=\"no\" data-rotationangle=\"50\" data-depth=\"100\" data-speed=\"500\" data-shadow=\"no\" data-pagination=\"bullets\" style=\"--awb-columns:1;--awb-column-spacing:10px;--awb-caption-title-color:var(--awb-color8);--awb-caption-title-size:24px;--awb-caption-text-color:var(--awb-color8);--awb-caption-text-size:14px;--awb-border-width:1px;--awb-border-color:#e9eaee;--awb-dots-align:center;--awb-caption-title-font-family:&quot;PP Woodland&quot;;--awb-caption-title-font-style:normal;--awb-caption-title-font-weight:400;--awb-caption-text-font-family:&quot;PP Woodland&quot;;--awb-caption-text-font-style:normal;--awb-caption-text-font-weight:400;\"><div class=\"swiper-wrapper awb-image-carousel-wrapper fusion-flex-align-items-stretch\"><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1348\" height=\"974\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-200x145.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-300x217.png 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-400x289.png 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-600x434.png 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-768x555.png 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-800x578.png 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-1024x740.png 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521-1200x867.png 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/Group-10000053521.png 1348w\" sizes=\"(max-width: 1348px) 100vw, 1348px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:center;\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Bespoke spa treatment<\/h3><p class=\"awb-imageframe-caption-text\">For ultimate relaxation, you can enjoy a remote spa treatment that can be arranged anywhere within the resort | Our younger guests can indulge in treatments too with a specifically designed menu just for them<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1346\" height=\"970\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-200x144.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-300x216.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-400x288.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-600x432.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-768x553.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-800x577.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-1024x738.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9-1200x865.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool9.jpg 1346w\" sizes=\"(max-width: 1346px) 100vw, 1346px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:center;\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Wellness workshops<\/h3><p class=\"awb-imageframe-caption-text\">A variety of classes with a holistic approach that focus on the mind, body and soul | Classes are cleverly scheduled to reflect the mood into the moment so our guests can pause to reflect and relax<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1348\" height=\"974\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-200x145.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-300x217.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-400x289.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-600x434.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-768x555.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-800x578.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-1024x740.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10-1200x867.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool10.jpg 1348w\" sizes=\"(max-width: 1348px) 100vw, 1348px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:center;\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Personalised coaching sessions<\/h3><p class=\"awb-imageframe-caption-text\">For our guests seeking a more intensive workout during their stay: we have highly skilled fitness instructors available throughout the day to help you with your fitness goals and ambitions<\/p><\/div><\/div><\/div><\/div><div class=\"swiper-slide\"><div class=\"fusion-carousel-item-wrapper\"><div class=\"fusion-image-wrapper hover-type-none\"><img decoding=\"async\" width=\"1348\" height=\"996\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-200x148.jpg 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-300x222.jpg 300w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-400x296.jpg 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-600x443.jpg 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-768x567.jpg 768w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-800x591.jpg 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-1024x757.jpg 1024w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11-1200x887.jpg 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/The_Mora_Zanzibar_Sport_Pool11.jpg 1348w\" sizes=\"(max-width: 1348px) 100vw, 1348px\" title=\"\"><\/div><div class=\"awb-imageframe-caption-container\" style=\"text-align:center;\"><div class=\"awb-imageframe-caption\"><h3 class=\"awb-imageframe-caption-title\">Wellbeing Expert<\/h3><p class=\"awb-imageframe-caption-text\">We recognise that each guest will connect with nature in their own unique way. That\u2019s why we have dedicated wellbeing consultants on hand to ensure you can follow your mood into the moment<\/p><\/div><\/div><\/div><\/div><\/div><div class=\"awb-swiper-button awb-swiper-button-prev\"><i class=\"awb-icon-angle-left\" aria-hidden=\"true\"><\/i><\/div><div class=\"awb-swiper-button awb-swiper-button-next\"><i class=\"awb-icon-angle-right\" aria-hidden=\"true\"><\/i><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-17 fusion-flex-container has-pattern-background has-mask-background nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-bottom:40px;--awb-padding-right-small:0px;--awb-padding-bottom-small:20px;--awb-padding-left-small:0px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-26 fusion_builder_column_1_2 1_2 fusion-flex-column\" style=\"--awb-padding-right-medium:15px;--awb-padding-left-medium:15px;--awb-padding-right-small:15px;--awb-padding-left-small:15px;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:3.84%;--awb-spacing-left-medium:3.84%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-16 fusion-no-medium-visibility fusion-no-large-visibility fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-top:20px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-left sm-text-align-center\" style=\"margin:0;\">Befreiung &amp; Spa\u00df<\/h2><\/div><div class=\"fusion-image-element\" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-14 hover-type-none\"><img decoding=\"async\" width=\"1454\" height=\"1264\" title=\"image 14(6)\" src=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/image-146.png\" class=\"img-responsive wp-image-16497\" srcset=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/image-146-200x174.png 200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/image-146-400x348.png 400w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/image-146-600x522.png 600w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/image-146-800x695.png 800w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/image-146-1200x1043.png 1200w, https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/image-146.png 1454w\" sizes=\"(max-width: 640px) 100vw, 600px\" alt=\"\"><\/span><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-27 fusion_builder_column_1_2 1_2 fusion-flex-column fusion-flex-align-self-center\" style=\"--awb-padding-right:50px;--awb-padding-left:50px;--awb-padding-right-medium:15px;--awb-padding-left-medium:15px;--awb-padding-right-small:15px;--awb-padding-left-small:15px;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:0px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-17 fusion-no-small-visibility fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-top:20px;--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-left sm-text-align-center\" style=\"margin:0;\">Befreiung &amp; Spa\u00df<\/h2><\/div><div class=\"fusion-text fusion-text-18 md-text-align-left sm-text-align-left\" style=\"--awb-text-color:var(--awb-color8);\"><p>Wir setzen uns daf\u00fcr ein, dass unsere kleinen G\u00e4ste die gleichen Momente der Freude und des Staunens erleben k\u00f6nnen wie ihre Eltern. Wir tun alles, um sicherzustellen, dass sie alles haben, was sie zum Entspannen und Erholen brauchen. Warum sollten auch nur die Erwachsenen den ganzen Spa\u00df haben?<\/p>\n<\/div><div class=\"accordian fusion-accordian\" style=\"--awb-margin-bottom:0px;--awb-padding-bottom:0px;--awb-border-size:1px;--awb-icon-size:10px;--awb-content-font-size:var(--awb-typography4-font-size);--awb-icon-alignment:left;--awb-hover-color:var(--awb-color2);--awb-border-color:var(--awb-color6);--awb-background-color:var(--awb-color1);--awb-divider-color:var(--awb-color8);--awb-divider-hover-color:var(--awb-color8);--awb-icon-color:var(--awb-color8);--awb-title-color:var(--awb-color8);--awb-content-color:var(--awb-color8);--awb-icon-box-color:var(--awb-color6);--awb-toggle-hover-accent-color:var(--awb-color8);--awb-toggle-active-accent-color:var(--awb-color8);--awb-title-font-family:var(--awb-typography1-font-family);--awb-title-font-weight:var(--awb-typography1-font-weight);--awb-title-font-style:var(--awb-typography1-font-style);--awb-title-font-size:16px;--awb-title-letter-spacing:var(--awb-typography1-letter-spacing);--awb-title-line-height:var(--awb-typography1-line-height);--awb-content-font-family:&quot;ABCMarfa-Light&quot;;--awb-content-font-style:normal;--awb-content-font-weight:400;\"><div class=\"panel-group fusion-toggle-icon-unboxed\" id=\"accordion-15065-2\"><div class=\"fusion-panel panel-default panel-ceb6ef3f7a4fc56e8 fusion-toggle-no-divider\" style=\"--awb-title-color:var(--awb-color8);--awb-content-color:var(--awb-color8);\"><div class=\"panel-heading\"><h4 class=\"panel-title toggle\" id=\"toggle_ceb6ef3f7a4fc56e8\"><a class=\"active\" aria-expanded=\"true\" aria-controls=\"ceb6ef3f7a4fc56e8\" role=\"button\" data-toggle=\"collapse\" data-parent=\"#accordion-15065-2\" data-target=\"#ceb6ef3f7a4fc56e8\" href=\"#ceb6ef3f7a4fc56e8\"><span class=\"fusion-toggle-icon-wrapper\" aria-hidden=\"true\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><i class=\"fa-fusion-box inactive-icon fa-angle-right fas\" aria-hidden=\"true\"><\/i><\/span><span class=\"fusion-toggle-heading\">Flexible Kinderbetreuung<\/span><\/a><\/h4><\/div><div id=\"ceb6ef3f7a4fc56e8\" class=\"panel-collapse collapse in\" aria-labelledby=\"toggle_ceb6ef3f7a4fc56e8\"><div class=\"panel-body toggle-content fusion-clearfix\">F\u00fcr unsere kleinen G\u00e4ste, die sich zu jeder Tageszeit vergn\u00fcgen k\u00f6nnen | Tags\u00fcber wird eine intensive Kinderbetreuung angeboten, die sich an den \u00f6rtlichen Gegebenheiten orientiert<\/div><\/div><\/div><div class=\"fusion-panel panel-default panel-ecb64bec996d5292f fusion-toggle-no-divider\" style=\"--awb-title-color:var(--awb-color8);--awb-content-color:var(--awb-color8);\"><div class=\"panel-heading\"><h4 class=\"panel-title toggle\" id=\"toggle_ecb64bec996d5292f\"><a aria-expanded=\"false\" aria-controls=\"ecb64bec996d5292f\" role=\"button\" data-toggle=\"collapse\" data-parent=\"#accordion-15065-2\" data-target=\"#ecb64bec996d5292f\" href=\"#ecb64bec996d5292f\"><span class=\"fusion-toggle-icon-wrapper\" aria-hidden=\"true\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><i class=\"fa-fusion-box inactive-icon fa-angle-right fas\" aria-hidden=\"true\"><\/i><\/span><span class=\"fusion-toggle-heading\">Familienexperte<\/span><\/a><\/h4><\/div><div id=\"ecb64bec996d5292f\" class=\"panel-collapse collapse \" aria-labelledby=\"toggle_ecb64bec996d5292f\"><div class=\"panel-body toggle-content fusion-clearfix\">Wir m\u00f6chten, dass der Aufenthalt unserer jungen G\u00e4ste so individuell wie m\u00f6glich ist. Der Familienexperte kann ma\u00dfgeschneiderte Erlebnisse empfehlen, planen und durchf\u00fchren, so dass die kleinen G\u00e4ste genauso gut unterhalten werden wie die gro\u00dfen.<\/div><\/div><\/div><div class=\"fusion-panel panel-default panel-1406ce2a9a2ac079f fusion-toggle-no-divider\" style=\"--awb-title-color:var(--awb-color8);--awb-content-color:var(--awb-color8);\"><div class=\"panel-heading\"><h4 class=\"panel-title toggle\" id=\"toggle_1406ce2a9a2ac079f\"><a aria-expanded=\"false\" aria-controls=\"1406ce2a9a2ac079f\" role=\"button\" data-toggle=\"collapse\" data-parent=\"#accordion-15065-2\" data-target=\"#1406ce2a9a2ac079f\" href=\"#1406ce2a9a2ac079f\"><span class=\"fusion-toggle-icon-wrapper\" aria-hidden=\"true\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><i class=\"fa-fusion-box inactive-icon fa-angle-right fas\" aria-hidden=\"true\"><\/i><\/span><span class=\"fusion-toggle-heading\">Men\u00fc f\u00fcr junge G\u00e4ste<\/span><\/a><\/h4><\/div><div id=\"1406ce2a9a2ac079f\" class=\"panel-collapse collapse \" aria-labelledby=\"toggle_1406ce2a9a2ac079f\"><div class=\"panel-body toggle-content fusion-clearfix\">In allen unseren Spezialit\u00e4ten-Gastrobereichen werden wir sicherstellen, dass unsere kleinen G\u00e4ste eine eigene Speisekarte mit hochwertigen, nahrhaften und leckeren Mahlzeiten erhalten | Aufmachung nach denselben Standards wie bei den Mahlzeiten f\u00fcr Erwachsene<\/div><\/div><\/div><div class=\"fusion-panel panel-default panel-ea2b689b4b992ce4b fusion-toggle-no-divider\" style=\"--awb-title-color:var(--awb-color8);--awb-content-color:var(--awb-color8);\"><div class=\"panel-heading\"><h4 class=\"panel-title toggle\" id=\"toggle_ea2b689b4b992ce4b\"><a aria-expanded=\"false\" aria-controls=\"ea2b689b4b992ce4b\" role=\"button\" data-toggle=\"collapse\" data-parent=\"#accordion-15065-2\" data-target=\"#ea2b689b4b992ce4b\" href=\"#ea2b689b4b992ce4b\"><span class=\"fusion-toggle-icon-wrapper\" aria-hidden=\"true\"><i class=\"fa-fusion-box active-icon fa-angle-down fas\" aria-hidden=\"true\"><\/i><i class=\"fa-fusion-box inactive-icon fa-angle-right fas\" aria-hidden=\"true\"><\/i><\/span><span class=\"fusion-toggle-heading\">Nanny-Service<\/span><\/a><\/h4><\/div><div id=\"ea2b689b4b992ce4b\" class=\"panel-collapse collapse \" aria-labelledby=\"toggle_ea2b689b4b992ce4b\"><div class=\"panel-body toggle-content fusion-clearfix\">Unsere kleinen G\u00e4ste sind bei unseren qualifizierten Nannys in guten H\u00e4nden, die sich stets um ihr Wohl k\u00fcmmern | Verf\u00fcgbar zu den meisten Tageszeiten<\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-28 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-margin-top-small:20px;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-7 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"#search_availability\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Verf\u00fcgbarkeit pr\u00fcfen<\/span><\/a><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-18 fusion-flex-container has-pattern-background has-mask-background nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-padding-bottom:40px;--awb-padding-top-small:30px;--awb-padding-right-small:15px;--awb-padding-bottom-small:20px;--awb-padding-left-small:15px;--awb-background-color:var(--awb-color6);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-center fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-29 fusion_builder_column_1_1 1_1 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-overflow:hidden;--awb-bg-size:cover;--awb-box-shadow:10px 10px 8px -10px #8e8e8e;;--awb-border-radius:15px 15px 15px 15px;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:20px;--awb-spacing-left-large:0px;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column\"><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-center fusion-flex-justify-content-center fusion-flex-content-wrap\" style=\"--awb-flex-grow:0;--awb-flex-grow-medium:0;--awb-flex-grow-small:0;--awb-flex-shrink:0;--awb-flex-shrink-medium:0;--awb-flex-shrink-small:0;width:104% !important;max-width:104% !important;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-3 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-padding-top:0px;--awb-padding-right:0px;--awb-padding-bottom:0px;--awb-padding-left:0px;--awb-bg-image:url(&#039;https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/DJI_0069-18.png&#039;);--awb-bg-image-small:url(&#039;https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/DJI_0069-18.png&#039;);--awb-bg-position:center center;--awb-bg-position-small:center top;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:0px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column fusion-empty-column-bg-image fusion-column-has-bg-image fusion-column-has-bg-image-small\" data-bg-url=\"https:\/\/www.themora.com\/wp-content\/uploads\/2026\/02\/DJI_0069-18.png\"><img decoding=\"async\" class=\"fusion-empty-dims-img-placeholder\" aria-label=\"DJI_0069 1(8)\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%271338%27%20height%3D%271695%27%20viewBox%3D%270%200%201338%201695%27%3E%3Crect%20width%3D%271338%27%20height%3D%271695%27%20fill-opacity%3D%220%22%2F%3E%3C%2Fsvg%3E\" alt=\"\" title=\"\"><img decoding=\"async\" class=\"fusion-empty-dims-img-placeholder-small\" aria-label=\"DJI_0069 1(8)\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%271338%27%20height%3D%271695%27%20viewBox%3D%270%200%201338%201695%27%3E%3Crect%20width%3D%271338%27%20height%3D%271695%27%20fill-opacity%3D%220%22%2F%3E%3C%2Fsvg%3E\" alt=\"\" title=\"\"><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-4 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-padding-top:30px;--awb-padding-right:50px;--awb-padding-bottom:30px;--awb-padding-left:50px;--awb-padding-top-medium:20px;--awb-padding-right-medium:15px;--awb-padding-bottom-medium:20px;--awb-padding-left-medium:15px;--awb-padding-top-small:20px;--awb-padding-right-small:15px;--awb-padding-bottom-small:20px;--awb-padding-left-small:15px;--awb-bg-color:#ffffff;--awb-bg-color-hover:#ffffff;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:0px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:0px;--awb-spacing-left-large:0px;--awb-width-medium:50%;--awb-order-medium:0;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\" data-scroll-devices=\"small-visibility,medium-visibility,large-visibility\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-center fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-18 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-text-color:var(--awb-color8);--awb-margin-top-small:10px;--awb-margin-right-small:0px;--awb-margin-bottom-small:10px;--awb-margin-left-small:0px;\"><h2 class=\"fusion-title-heading title-heading-left\" style=\"margin:0;\">Newsletter<\/h2><\/div><div class=\"fusion-text fusion-text-19\"><p>Ready to unlock a world of laid-back luxury and exceptional service? <strong>Subscribe to our newsletter<\/strong> to be the first to receive insider updates, personalised offers, and delightful surprises. Elevate your inbox with The Mora \u2013 where each newsletter is a gateway to a world of unique and unforgettable moments.<\/p>\n<\/div><iframe src=\"https:\/\/web.inxmail.com\/the_mora\/registration.jsp\" scrolling=\"no\" style=\"min-height:750px\" width=\"100%\"><\/iframe><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":7,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"100-width.php","meta":{"footnotes":""},"class_list":["post-15065","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.themora.com\/de\/wp-json\/wp\/v2\/pages\/15065","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.themora.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.themora.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.themora.com\/de\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.themora.com\/de\/wp-json\/wp\/v2\/comments?post=15065"}],"version-history":[{"count":5,"href":"https:\/\/www.themora.com\/de\/wp-json\/wp\/v2\/pages\/15065\/revisions"}],"predecessor-version":[{"id":16585,"href":"https:\/\/www.themora.com\/de\/wp-json\/wp\/v2\/pages\/15065\/revisions\/16585"}],"wp:attachment":[{"href":"https:\/\/www.themora.com\/de\/wp-json\/wp\/v2\/media?parent=15065"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}