{"id":1691,"date":"2026-03-18T09:35:51","date_gmt":"2026-03-18T07:35:51","guid":{"rendered":"https:\/\/chrispywaterpark.gr\/galerie\/"},"modified":"2026-04-08T13:00:15","modified_gmt":"2026-04-08T10:00:15","slug":"galerie","status":"publish","type":"page","link":"https:\/\/chrispywaterpark.gr\/de\/galerie\/","title":{"rendered":"Galerie"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1691\" class=\"elementor elementor-1691 elementor-221\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b9490e e-con-full e-flex e-con e-parent\" data-id=\"2b9490e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f619c3 elementor-widget elementor-widget-template\" data-id=\"6f619c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"1264\" class=\"elementor elementor-1264 elementor-318 elementor-318\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-49117320 e-flex e-con-boxed e-con e-parent\" data-id=\"49117320\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8d9f2e9 elementor-widget elementor-widget-html\" data-id=\"8d9f2e9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/flatpickr\/dist\/flatpickr.min.css\">\r\n\r\n<form class=\"av-form\" id=\"booking-form\">\r\n    <div class=\"option1 option-av\">\r\n        <label for=\"checkin-picker\">Einchecken<\/label>\r\n        <div>\r\n            <input type=\"text\" id=\"checkin-picker\" required=\"\" readonly>\r\n        <\/div>\r\n    <\/div>\r\n    \r\n    <div class=\"option2 option-av\">\r\n        <label for=\"checkout-picker\">Auschecken<\/label>\r\n        <div>\r\n            <input type=\"text\" id=\"checkout-picker\" required=\"\" readonly>\r\n        <\/div>\r\n    <\/div>\r\n    \r\n    <div class=\"option3 option-av\">\r\n        <label>G\u00e4ste<\/label>\r\n        <div class=\"guest-counter\">\r\n            <button type=\"button\" class=\"ctrl-btn minus\" aria-label=\"Decrease guests\">-<\/button>\r\n            <span id=\"guest-count-display\">2 G\u00e4ste<\/span>\r\n            <button type=\"button\" class=\"ctrl-btn plus\" aria-label=\"Increase guests\">+<\/button>\r\n        <\/div>\r\n    <\/div>\r\n    \r\n    <div class=\"option4 option-av\">\r\n        <button type=\"submit\" class=\"sirios-btn filled\">Verf\u00fcgbarkeit pr\u00fcfen<\/button>\r\n    <\/div>\r\n<\/form>\r\n\r\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/flatpickr\"><\/script>\r\n<script>\r\ndocument.addEventListener('DOMContentLoaded', () => {\r\n    \/\/ 1. Setup Dates\r\n    const today = new Date();\r\n    \r\n    const tomorrow = new Date(today);\r\n    tomorrow.setDate(tomorrow.getDate() + 1);\r\n\r\n    const dayAfterTomorrow = new Date(tomorrow);\r\n    dayAfterTomorrow.setDate(dayAfterTomorrow.getDate() + 1);\r\n\r\n    \/\/ 2. Initialize Calendars\r\n    const checkOutPicker = flatpickr(\"#checkout-picker\", {\r\n        dateFormat: \"d M Y\",\r\n        minDate: dayAfterTomorrow,\r\n        defaultDate: dayAfterTomorrow\r\n    });\r\n\r\n    const checkInPicker = flatpickr(\"#checkin-picker\", {\r\n        dateFormat: \"d M Y\",\r\n        minDate: \"today\",\r\n        defaultDate: tomorrow,\r\n        onChange: function(selectedDates, dateStr, instance) {\r\n            if (selectedDates.length > 0) {\r\n                \/\/ Ensure checkout is always at least 1 day after checkin\r\n                const newMinOut = new Date(selectedDates[0]);\r\n                newMinOut.setDate(newMinOut.getDate() + 1);\r\n                checkOutPicker.set('minDate', newMinOut);\r\n                \r\n                \/\/ If current checkout is before the new minimum, push it forward\r\n                if (checkOutPicker.selectedDates[0] < newMinOut) {\r\n                    checkOutPicker.setDate(newMinOut);\r\n                }\r\n            }\r\n        }\r\n    });\r\n\r\n    \/\/ 3. Guest Counter Logic\r\n    const minusBtn = document.querySelector('.ctrl-btn.minus');\r\n    const plusBtn = document.querySelector('.ctrl-btn.plus');\r\n    const displaySpan = document.getElementById('guest-count-display');\r\n\r\n    let currentGuests = 2; \/\/ Default starting guests\r\n    const minGuests = 1;\r\n    const maxGuests = 9;\r\n\r\n    const updateGuestCount = () => {\r\n        if (currentGuests === 1) {\r\n            displaySpan.textContent = \"1 Guest\";\r\n        } else {\r\n            displaySpan.textContent = `${currentGuests} Guests`;\r\n        }\r\n    };\r\n\r\n    minusBtn.addEventListener('click', () => {\r\n        if (currentGuests > minGuests) {\r\n            currentGuests--;\r\n            updateGuestCount();\r\n        }\r\n    });\r\n\r\n    plusBtn.addEventListener('click', () => {\r\n        if (currentGuests < maxGuests) {\r\n            currentGuests++;\r\n            updateGuestCount();\r\n        }\r\n    });\r\n\r\n    \/\/ 4. URL Generation & Form Submission Override\r\n    const form = document.getElementById('booking-form');\r\n    \r\n    form.addEventListener('submit', (e) => {\r\n        e.preventDefault(); \/\/ Stop standard submission\r\n\r\n        \/\/ Grab the raw Date objects from Flatpickr\r\n        const checkinDate = checkInPicker.selectedDates[0];\r\n        const checkoutDate = checkOutPicker.selectedDates[0];\r\n\r\n        \/\/ Format check-in as YYYY-MM-DD using Flatpickr's built-in utility\r\n        const formattedCheckin = flatpickr.formatDate(checkinDate, \"Y-m-d\");\r\n\r\n        \/\/ Calculate total nights\r\n        const diffTime = Math.abs(checkoutDate - checkinDate);\r\n        const nights = Math.ceil(diffTime \/ (1000 * 60 * 60 * 24));\r\n\r\n        \/\/ Define remaining variables\r\n        const rooms = 1; \/\/ Assuming default 1 room\r\n        const adults = currentGuests;\r\n\r\n        \/\/ Construct the final URL\r\n        const targetUrl = `https:\/\/chrispywaterparkresort.reserve-online.net\/?property=CHRISPYWR&checkin=${formattedCheckin}&rooms=${rooms}&nights=${nights}&adults=${adults}`;\r\n\r\n        \/\/ Open in a new tab\r\n        window.open(targetUrl, '_blank');\r\n    });\r\n});\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-784d734 e-flex e-con-boxed e-con e-child\" data-id=\"784d734\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-766775a elementor-widget elementor-widget-heading\" data-id=\"766775a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Galerie<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5eab69d elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"5eab69d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein fantastisches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Familienresort besuchen.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c5540c3 elementor-gallery--filter-align-left elementor-widget elementor-widget-gallery\" data-id=\"c5540c3\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"gallery-global\" data-settings=\"{&quot;gallery_layout&quot;:&quot;masonry&quot;,&quot;columns_tablet&quot;:3,&quot;columns_mobile&quot;:2,&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;columns&quot;:4,&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_laptop&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;show_all_galleries&quot;:&quot;yes&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}\" data-widget_type=\"gallery.default\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-gallery__titles-container e--pointer-underline e--animation-fade\" aria-label=\"Galeriefilter\">\n\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"all\">\n\t\t\t\t\t\tAlle\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"0\">\n\t\t\t\t\t\tSuperior Zweibett-\/Doppelzimmer Schlafzimmer\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"1\">\n\t\t\t\t\t\tSuperior Familie 1 Schlafzimmer\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"2\">\n\t\t\t\t\t\tSuperior Zweibett-\/Doppelzimmer Schlafzimmer mit privatem Pool\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"3\">\n\t\t\t\t\t\tSuperior Family 1 Schlafzimmer mit privatem Pool Schlafzimmer\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"4\">\n\t\t\t\t\t\tStandard Zweibett-\/Doppelzimmer Schlafzimmer\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"5\">\n\t\t\t\t\t\tStandard Familie Duplex Maizonette Schlafzimmer\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"6\">\n\t\t\t\t\t\tEinrichtungen\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"7\">\n\t\t\t\t\t\tDining\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"8\">\n\t\t\t\t\t\tWasserpark\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-gallery__container\">\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM3NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1GYW1pbHktRHVwbGV4LU1haXpvbmV0dGUtOS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-9-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-20.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-20-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ4MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY5OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC0xLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-1-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ4MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Superior Zweibett-\/Doppelzimmer\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-20.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc4MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMjAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-20-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"location chrispy waterpark resort\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTUzOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM3NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1GYW1pbHktRHVwbGV4LU1haXpvbmV0dGUtNi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-6-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-14-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTExLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-11-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-10-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-12-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-3-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-13-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-2-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-22.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTIyLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-22-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-18.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTE4LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-18-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-3-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-31.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTMxLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-31-768x433.webp\" data-width=\"768\" data-height=\"433\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyMCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTE0LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-14-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-34.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMwNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTM0LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-34-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMwNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstNy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ4NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTExLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-11-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-3-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ4NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-8-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTUzOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-6-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-11-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTUzNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-8-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI4MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTEyLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-12-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-13-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY5OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC0xMS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-11-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-2-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-21.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-21-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-19.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-19-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-11-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-17.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMwMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-17-768x1024.webp\" data-width=\"768\" data-height=\"1024\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-18.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc4MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-18-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-2-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-17.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTE3LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-17-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-27.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTI3LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-27-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ4NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTEwLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-10-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-15.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-15-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-29.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-29-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTEzLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-13-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY5NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC03LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-7-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLVByaXZhdGUtUG9vbC03LTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-7-1-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM3NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1GYW1pbHktRHVwbGV4LU1haXpvbmV0dGUtNy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-30.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTMwLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-30-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-5-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ1OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLVByaXZhdGUtUG9vbC01LTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-5-1-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"Superior Familie 1 Schlafzimmer Privater Pool\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM0OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1Ud2luLURvdWJsZS1Sb29tLTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-4-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLVByaXZhdGUtUG9vbC00LTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-4-1-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-9-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI4NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLVByaXZhdGUtUG9vbC05LTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-9-1-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMwNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstOS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-9-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-6-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLVByaXZhdGUtUG9vbC02LTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-6-1-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"Stornierungsbedingungen\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-24.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-24-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY5NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC05LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-9-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ4OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTEzLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-13-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI4NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC00LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-15.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-15-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-2-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI4NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLVByaXZhdGUtUG9vbC0yLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-2-1-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM0OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1Ud2luLURvdWJsZS1Sb29tLTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-3-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM3NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1GYW1pbHktRHVwbGV4LU1haXpvbmV0dGUtOC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-8-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-25.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczMCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTI1LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-25-768x1365.webp\" data-width=\"768\" data-height=\"1365\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI5NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1GYW1pbHktRHVwbGV4LU1haXpvbmV0dGUtNS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-16.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTE2LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-16-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY5NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC0xMC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-10-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI5MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1GYW1pbHktRHVwbGV4LU1haXpvbmV0dGUtMS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-1-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Standard Familie Duplex Maisonette\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI4MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM1MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1Ud2luLURvdWJsZS1Sb29tLTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-6-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-29.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTI5LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-29-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-8-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLVByaXZhdGUtUG9vbC04LTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-8-1-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI4OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1Ud2luLURvdWJsZS1Sb29tLTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-2-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Standard Zweibett-\/Doppelzimmer\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-22.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-22-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-10-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstOC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-8-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI4MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-2-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-9-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC0zLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-3-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstNC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-4-768x1024.webp\" data-width=\"768\" data-height=\"1024\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-19.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTE5LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-19-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI3OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-8-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-23.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTIzLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-23-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-18.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-18-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-16.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-16-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTEyLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-12-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-24.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTI0LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-24-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTUzNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-2-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-1-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLVByaXZhdGUtUG9vbC0xLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-1-1-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMwMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-14-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc3MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-3-768x650.webp\" data-width=\"768\" data-height=\"650\" aria-label=\"location chrispy waterpark resort\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-1-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Superior Familie 1 Schlafzimmer\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-1-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"hotel jobs in chania\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctOS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-9-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-1-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-19.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc4MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstMTkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-19-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM1MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1Ud2luLURvdWJsZS1Sb29tLTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-8-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-3-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLVByaXZhdGUtUG9vbC0zLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-Private-Pool-3-1-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY5MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC01LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM3OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1GYW1pbHktRHVwbGV4LU1haXpvbmV0dGUtNC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-20.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTIwLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-20-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ4NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-9-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI5MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1GYW1pbHktRHVwbGV4LU1haXpvbmV0dGUtMy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-3-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-28.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTI4LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-28-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-21.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM5MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTIxLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-21-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"Geb\u00fchr f\u00fcr die Bew\u00e4ltigung der Klimakrise\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-33.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTMzLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-33-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM1MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1Ud2luLURvdWJsZS1Sb29tLTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-7-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI5MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1Ud2luLURvdWJsZS1Sb29tLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-1-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-27.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-27-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMwOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstNi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-6-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMwNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-1-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctNy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ4MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-6-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-23.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-23-768x1150.webp\" data-width=\"768\" data-height=\"1150\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-15.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcyMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTE1LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-15-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-26.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-26-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM1MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1Ud2luLURvdWJsZS1Sb29tLTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ5NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC0xMi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-12-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"Superior Zweibett-\/Doppelzimmer Privater Pool\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"8\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMwMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9XYXRlcnBhcmstNS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Waterpark-5-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTM3OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1GYW1pbHktRHVwbGV4LU1haXpvbmV0dGUtMi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Family-Duplex-Maizonette-2-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-16.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-16-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctOC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-8-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ4MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI5MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdGFuZGFyZC1Ud2luLURvdWJsZS1Sb29tLTkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Standard-Twin-Double-Room-9-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTUzNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-1-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI3OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-3-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY5NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC04LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-8-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxMCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-28.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-28-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctNi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-6-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI4MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1GYW1pbHktMS1CZWRyb29tLTE0LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Family-1-Bedroom-14-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctNS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-17.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-17-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-6-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc0MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctNC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcwMCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC0yLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-2-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTEwLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-10-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTcxMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-26.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTI2LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-26-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTY5MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9TdXBlcmlvci1Ud2luLURvdWJsZS1Sb29tLVByaXZhdGUtUG9vbC02LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Superior-Twin-Double-Room-Private-Pool-6-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc1MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-12-768x1151.webp\" data-width=\"768\" data-height=\"1151\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-32.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTMyLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-32-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-35.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTczOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9GYWNpbGl0aWVzLTM1LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Facilities-35-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"7\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-25.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTc2MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9EaW5pbmctMjUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/Dining-25-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/ING_0575-edit.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTUzNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHl3YXRlcnBhcmsuZ3JcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAzXC9JTkdfMDU3NS1lZGl0LmpwZyIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/ING_0575-edit-768x508.jpg\" data-width=\"768\" data-height=\"508\" aria-label=\"gallery chrispy waterpark resort\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Galerie Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein fantastisches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Familienresort besuchen. Alle Superior Zweibett-\/Doppelzimmer Schlafzimmer Superior Familie 1 Schlafzimmer Superior Zweibett-\/Doppelzimmer Schlafzimmer mit privatem Pool Superior Family 1 Schlafzimmer mit privatem Pool Schlafzimmer Standard Zweibett-\/Doppelzimmer Schlafzimmer Standard Familie Duplex Maizonette Schlafzimmer Einrichtungen Dining Wasserpark<\/p>\n","protected":false},"author":2,"featured_media":1534,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-1691","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Galerie &#8226; Chrispy Waterpark Resort<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/chrispywaterpark.gr\/de\/galerie\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Galerie &#8226; Chrispy Waterpark Resort\" \/>\n<meta property=\"og:description\" content=\"Galerie Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein fantastisches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Familienresort besuchen. Alle Superior Zweibett-\/Doppelzimmer Schlafzimmer Superior Familie 1 Schlafzimmer Superior Zweibett-\/Doppelzimmer Schlafzimmer mit privatem Pool Superior Family 1 Schlafzimmer mit privatem Pool Schlafzimmer Standard Zweibett-\/Doppelzimmer Schlafzimmer Standard Familie Duplex Maizonette Schlafzimmer Einrichtungen Dining Wasserpark\" \/>\n<meta property=\"og:url\" content=\"https:\/\/chrispywaterpark.gr\/de\/galerie\/\" \/>\n<meta property=\"og:site_name\" content=\"Chrispy Waterpark Resort\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/chrispyresort\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-08T10:00:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/ING_0575-edit.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1271\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/galerie\\\/\",\"url\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/galerie\\\/\",\"name\":\"Galerie &#8226; Chrispy Waterpark Resort\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/galerie\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/galerie\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/chrispywaterpark.gr\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/ING_0575-edit.jpg\",\"datePublished\":\"2026-03-18T07:35:51+00:00\",\"dateModified\":\"2026-04-08T10:00:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/galerie\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/galerie\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/galerie\\\/#primaryimage\",\"url\":\"https:\\\/\\\/chrispywaterpark.gr\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/ING_0575-edit.jpg\",\"contentUrl\":\"https:\\\/\\\/chrispywaterpark.gr\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/ING_0575-edit.jpg\",\"width\":1920,\"height\":1271,\"caption\":\"gallery chrispy waterpark resort\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/galerie\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Galerie\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/\",\"name\":\"Chrispy Waterpark Resort\",\"description\":\"All Inclusive Resort in Chania, Crete\",\"publisher\":{\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/#organization\",\"name\":\"Chrispy Waterpark Resort\",\"url\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/chrispywaterpark.gr\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/chrispy-resort-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/chrispywaterpark.gr\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/chrispy-resort-logo.jpg\",\"width\":1080,\"height\":1080,\"caption\":\"Chrispy Waterpark Resort\"},\"image\":{\"@id\":\"https:\\\/\\\/chrispywaterpark.gr\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/chrispyresort\",\"https:\\\/\\\/www.instagram.com\\\/chrispyresort\\\/\",\"https:\\\/\\\/gr.pinterest.com\\\/chrispywaterparkresort\\\/\",\"https:\\\/\\\/www.tiktok.com\\\/@chrispyresort\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Galerie &#8226; Chrispy Waterpark Resort","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/chrispywaterpark.gr\/de\/galerie\/","og_locale":"de_DE","og_type":"article","og_title":"Galerie &#8226; Chrispy Waterpark Resort","og_description":"Galerie Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein fantastisches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Familienresort besuchen. Alle Superior Zweibett-\/Doppelzimmer Schlafzimmer Superior Familie 1 Schlafzimmer Superior Zweibett-\/Doppelzimmer Schlafzimmer mit privatem Pool Superior Family 1 Schlafzimmer mit privatem Pool Schlafzimmer Standard Zweibett-\/Doppelzimmer Schlafzimmer Standard Familie Duplex Maizonette Schlafzimmer Einrichtungen Dining Wasserpark","og_url":"https:\/\/chrispywaterpark.gr\/de\/galerie\/","og_site_name":"Chrispy Waterpark Resort","article_publisher":"https:\/\/www.facebook.com\/chrispyresort","article_modified_time":"2026-04-08T10:00:15+00:00","og_image":[{"width":1920,"height":1271,"url":"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/ING_0575-edit.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chrispywaterpark.gr\/de\/galerie\/","url":"https:\/\/chrispywaterpark.gr\/de\/galerie\/","name":"Galerie &#8226; Chrispy Waterpark Resort","isPartOf":{"@id":"https:\/\/chrispywaterpark.gr\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/chrispywaterpark.gr\/de\/galerie\/#primaryimage"},"image":{"@id":"https:\/\/chrispywaterpark.gr\/de\/galerie\/#primaryimage"},"thumbnailUrl":"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/ING_0575-edit.jpg","datePublished":"2026-03-18T07:35:51+00:00","dateModified":"2026-04-08T10:00:15+00:00","breadcrumb":{"@id":"https:\/\/chrispywaterpark.gr\/de\/galerie\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chrispywaterpark.gr\/de\/galerie\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/chrispywaterpark.gr\/de\/galerie\/#primaryimage","url":"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/ING_0575-edit.jpg","contentUrl":"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/ING_0575-edit.jpg","width":1920,"height":1271,"caption":"gallery chrispy waterpark resort"},{"@type":"BreadcrumbList","@id":"https:\/\/chrispywaterpark.gr\/de\/galerie\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/chrispywaterpark.gr\/de\/"},{"@type":"ListItem","position":2,"name":"Galerie"}]},{"@type":"WebSite","@id":"https:\/\/chrispywaterpark.gr\/de\/#website","url":"https:\/\/chrispywaterpark.gr\/de\/","name":"Chrispy Waterpark Resort","description":"All Inclusive Resort in Chania, Crete","publisher":{"@id":"https:\/\/chrispywaterpark.gr\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chrispywaterpark.gr\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/chrispywaterpark.gr\/de\/#organization","name":"Chrispy Waterpark Resort","url":"https:\/\/chrispywaterpark.gr\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/chrispywaterpark.gr\/de\/#\/schema\/logo\/image\/","url":"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/chrispy-resort-logo.jpg","contentUrl":"https:\/\/chrispywaterpark.gr\/wp-content\/uploads\/2026\/03\/chrispy-resort-logo.jpg","width":1080,"height":1080,"caption":"Chrispy Waterpark Resort"},"image":{"@id":"https:\/\/chrispywaterpark.gr\/de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/chrispyresort","https:\/\/www.instagram.com\/chrispyresort\/","https:\/\/gr.pinterest.com\/chrispywaterparkresort\/","https:\/\/www.tiktok.com\/@chrispyresort"]}]}},"_links":{"self":[{"href":"https:\/\/chrispywaterpark.gr\/de\/wp-json\/wp\/v2\/pages\/1691","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chrispywaterpark.gr\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/chrispywaterpark.gr\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/chrispywaterpark.gr\/de\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/chrispywaterpark.gr\/de\/wp-json\/wp\/v2\/comments?post=1691"}],"version-history":[{"count":0,"href":"https:\/\/chrispywaterpark.gr\/de\/wp-json\/wp\/v2\/pages\/1691\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chrispywaterpark.gr\/de\/wp-json\/wp\/v2\/media\/1534"}],"wp:attachment":[{"href":"https:\/\/chrispywaterpark.gr\/de\/wp-json\/wp\/v2\/media?parent=1691"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}