{"id":4925,"date":"2024-01-02T04:53:14","date_gmt":"2024-01-02T03:53:14","guid":{"rendered":"https:\/\/test3.hypnotic-studio.com\/projects\/"},"modified":"2026-06-11T19:15:03","modified_gmt":"2026-06-11T17:15:03","slug":"projects","status":"publish","type":"page","link":"https:\/\/test3.hypnotic-studio.com\/en\/projects\/","title":{"rendered":"Projects"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4925\" class=\"elementor elementor-4925 elementor-709\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f958517 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"f958517\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8432335\" data-id=\"8432335\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-cb00576 elementor-widget elementor-widget-archid-portfolio\" data-id=\"cb00576\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"archid-portfolio.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"ar-portfolio-item d-flex flex-row-reverse\">\n            <div class=\"portfolio-img\">\n                <div class=\"project_img\">\n                    <div class=\"hover_area\">\n                        <img decoding=\"async\" data-sampler=\"texture0\"  src=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage02.jpg\" alt=\"\">\n                        <img decoding=\"async\" data-sampler=\"texture1\"  src=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage02.jpg\" alt=\"\">\n                        <img decoding=\"async\" data-sampler=\"map\"  src=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage05.jpg\" alt=\"\">\n                    <\/div>\n                    <div class=\"canvas\"><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"portfolio-text headline pera-content\">\n                <h3><a href=\"https:\/\/test3.hypnotic-studio.com\/en\/ox-smart-portfolio\/qvillage-feldberg-holiday-village-eco-retreat\/\">QVILLAGE Feldberg<\/a><\/h3>\n                <p>Holiday Village &amp; Eco-Retreat in the Black Forest: modular premium smart houses with SPA, panoramic dining and professional operator management. You invest in one unit \u2014 we handle rental and service.<\/p>\n                                <div class=\"portfolio-info ul-li-block\">\n                    <ul>\n                                                    <li><span>Format:<\/span>Holiday Village &amp; Eco-Retreat<\/li>\n                                                    <li><span>Location:<\/span>Black Forest, Feldberg (DE)<\/li>\n                                                    <li><span>Standard:<\/span>4\u2605 concept \u00b7 operator model<\/li>\n                                            <\/ul>\n                <\/div>\n                                                <div class=\"ar-btn-1\">\n                    <a href=\"https:\/\/test3.hypnotic-studio.com\/en\/ox-smart-portfolio\/qvillage-feldberg-holiday-village-eco-retreat\/\">View project <i class=\"fas fa-eye\"><\/i><\/a>\n                <\/div>\n                            <\/div>\n        <\/div>\n        <script id=\"vs\" type=\"x-shader\/x-vertex\">\n        #ifdef GL_ES\n        precision mediump float;\n        #endif\n\n        \/\/ those are the mandatory attributes that the lib sets\n        attribute vec3 aVertexPosition;\n        attribute vec2 aTextureCoord;\n\n        \/\/ those are mandatory uniforms that the lib sets and that contain our model view and projection matrix\n        uniform mat4 uMVMatrix;\n        uniform mat4 uPMatrix;\n\n        uniform mat4 texture0Matrix;\n        uniform mat4 texture1Matrix;\n        uniform mat4 mapMatrix;\n\n        \/\/ if you want to pass your vertex and texture coords to the fragment shader\n        varying vec3 vVertexPosition;\n        varying vec2 vTextureCoord0;\n        varying vec2 vTextureCoord1;\n        varying vec2 vTextureCoordMap;\n\n        void main() {\n            vec3 vertexPosition = aVertexPosition;\n\n            gl_Position = uPMatrix * uMVMatrix * vec4(vertexPosition, 1.0);\n\n            \/\/ set the varyings\n            vTextureCoord0 = (texture0Matrix * vec4(aTextureCoord, 0., 1.)).xy;\n            vTextureCoord1 = (texture1Matrix * vec4(aTextureCoord, 0., 1.)).xy;\n            vTextureCoordMap = (mapMatrix * vec4(aTextureCoord, 0., 1.)).xy;\n            vVertexPosition = vertexPosition;\n        }\n    <\/script>\n    <script id=\"fs\" type=\"x-shader\/x-fragment\">\n        #ifdef GL_ES\n        precision mediump float;\n        #endif\n\n        #define PI2 6.28318530718\n        #define PI 3.14159265359\n        #define S(a,b,n) smoothstep(a,b,n)\n\n        uniform float uTime;\n        uniform float uProgress;\n        uniform vec2 uReso;\n        uniform vec2 uMouse;\n\n        \/\/ get our varyings\n        varying vec3 vVertexPosition;\n        varying vec2 vTextureCoord0;\n        varying vec2 vTextureCoord1;\n        varying vec2 vTextureCoordMap;\n\n        \/\/ the uniform we declared inside our javascript\n\n        \/\/ our texture sampler (default name, to use a different name please refer to the documentation)\n        uniform sampler2D texture0;\n        uniform sampler2D texture1;\n        uniform sampler2D map;\n\n        \/\/ http:\/\/www.flong.com\/texts\/code\/shapers_exp\/\n        float exponentialEasing (float x, float a){\n\n            float epsilon = 0.00001;\n            float min_param_a = 0.0 + epsilon;\n            float max_param_a = 1.0 - epsilon;\n            a = max(min_param_a, min(max_param_a, a));\n\n            if (a < 0.5){\n                \/\/ emphasis\n                a = 2.0 * a;\n                float y = pow(x, a);\n                return y;\n            } else {\n                \/\/ de-emphasis\n                a = 2.0 * (a-0.5);\n                float y = pow(x, 1.0 \/ (1.-a));\n                return y;\n            }\n        }\n\n        vec4 blur13(sampler2D image, vec2 uv, vec2 resolution, vec2 direction) {\n            vec4 color = vec4(0.0);\n            vec2 off1 = vec2(1.411764705882353) * direction;\n            vec2 off2 = vec2(3.2941176470588234) * direction;\n            vec2 off3 = vec2(5.176470588235294) * direction;\n            color += texture2D(image, uv) * 0.1964825501511404;\n            color += texture2D(image, uv + (off1 \/ resolution)) * 0.2969069646728344;\n            color += texture2D(image, uv - (off1 \/ resolution)) * 0.2969069646728344;\n            color += texture2D(image, uv + (off2 \/ resolution)) * 0.09447039785044732;\n            color += texture2D(image, uv - (off2 \/ resolution)) * 0.09447039785044732;\n            color += texture2D(image, uv + (off3 \/ resolution)) * 0.010381362401148057;\n            color += texture2D(image, uv - (off3 \/ resolution)) * 0.010381362401148057;\n            return color;\n        }\n\n        void main(){\n            vec2 uv0 = vTextureCoord0;\n            vec2 uv1 = vTextureCoord1;\n\n            float progress0 = uProgress;\n            float progress1 = 1. - uProgress;\n\n            vec4 map = blur13(map, vTextureCoordMap, uReso, vec2(2.)) + 0.5;\n\n            uv0.x += progress0 * map.r;\n            uv1.x -= progress1 * map.r;\n\n            vec4 color = texture2D( texture0, uv0 );\n            vec4 color1 = texture2D( texture1, uv1 );\n\n            gl_FragColor = mix(color, color1, progress0 );          \n        }\n    <\/script>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a15ca1d elementor-widget elementor-widget-archid-portfolio\" data-id=\"a15ca1d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"archid-portfolio.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"ar-portfolio-item d-flex \">\n            <div class=\"portfolio-img\">\n                <div class=\"project_img\">\n                    <div class=\"hover_area\">\n                        <img decoding=\"async\" data-sampler=\"texture0\"  src=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/module-gamma-70.jpg\" alt=\"\">\n                        <img decoding=\"async\" data-sampler=\"texture1\"  src=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/module-gamma-70.jpg\" alt=\"\">\n                        <img decoding=\"async\" data-sampler=\"map\"  src=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/module-gamma-80.jpg\" alt=\"\">\n                    <\/div>\n                    <div class=\"canvas\"><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"portfolio-text headline pera-content\">\n                <h3><a href=\"https:\/\/test3.hypnotic-studio.com\/en\/ox-smart-portfolio\/ox-smart-alpenwald\/\">OX SMART \u00abALPENWALD\u00bb<\/a><\/h3>\n                <p>Smart resort for active recreation in nature \u2014 modular premium cottages, SPA &amp; wellness, all year round. SalzburgerLand, near Zell am See. Operator model for investors.<\/p>\n                                <div class=\"portfolio-info ul-li-block\">\n                    <ul>\n                                                    <li><span>Format:<\/span>Holiday Village \u00b7 Eco-Retreat<\/li>\n                                                    <li><span>Location:<\/span>SalzburgerLand, Zell am See (AT)<\/li>\n                                                    <li><span>Standard:<\/span>4\u2605 concept \u00b7 operator model<\/li>\n                                            <\/ul>\n                <\/div>\n                                                <div class=\"ar-btn-1\">\n                    <a href=\"https:\/\/test3.hypnotic-studio.com\/en\/ox-smart-portfolio\/ox-smart-alpenwald\/\">View project <i class=\"fas fa-eye\"><\/i><\/a>\n                <\/div>\n                            <\/div>\n        <\/div>\n        <script id=\"vs\" type=\"x-shader\/x-vertex\">\n        #ifdef GL_ES\n        precision mediump float;\n        #endif\n\n        \/\/ those are the mandatory attributes that the lib sets\n        attribute vec3 aVertexPosition;\n        attribute vec2 aTextureCoord;\n\n        \/\/ those are mandatory uniforms that the lib sets and that contain our model view and projection matrix\n        uniform mat4 uMVMatrix;\n        uniform mat4 uPMatrix;\n\n        uniform mat4 texture0Matrix;\n        uniform mat4 texture1Matrix;\n        uniform mat4 mapMatrix;\n\n        \/\/ if you want to pass your vertex and texture coords to the fragment shader\n        varying vec3 vVertexPosition;\n        varying vec2 vTextureCoord0;\n        varying vec2 vTextureCoord1;\n        varying vec2 vTextureCoordMap;\n\n        void main() {\n            vec3 vertexPosition = aVertexPosition;\n\n            gl_Position = uPMatrix * uMVMatrix * vec4(vertexPosition, 1.0);\n\n            \/\/ set the varyings\n            vTextureCoord0 = (texture0Matrix * vec4(aTextureCoord, 0., 1.)).xy;\n            vTextureCoord1 = (texture1Matrix * vec4(aTextureCoord, 0., 1.)).xy;\n            vTextureCoordMap = (mapMatrix * vec4(aTextureCoord, 0., 1.)).xy;\n            vVertexPosition = vertexPosition;\n        }\n    <\/script>\n    <script id=\"fs\" type=\"x-shader\/x-fragment\">\n        #ifdef GL_ES\n        precision mediump float;\n        #endif\n\n        #define PI2 6.28318530718\n        #define PI 3.14159265359\n        #define S(a,b,n) smoothstep(a,b,n)\n\n        uniform float uTime;\n        uniform float uProgress;\n        uniform vec2 uReso;\n        uniform vec2 uMouse;\n\n        \/\/ get our varyings\n        varying vec3 vVertexPosition;\n        varying vec2 vTextureCoord0;\n        varying vec2 vTextureCoord1;\n        varying vec2 vTextureCoordMap;\n\n        \/\/ the uniform we declared inside our javascript\n\n        \/\/ our texture sampler (default name, to use a different name please refer to the documentation)\n        uniform sampler2D texture0;\n        uniform sampler2D texture1;\n        uniform sampler2D map;\n\n        \/\/ http:\/\/www.flong.com\/texts\/code\/shapers_exp\/\n        float exponentialEasing (float x, float a){\n\n            float epsilon = 0.00001;\n            float min_param_a = 0.0 + epsilon;\n            float max_param_a = 1.0 - epsilon;\n            a = max(min_param_a, min(max_param_a, a));\n\n            if (a < 0.5){\n                \/\/ emphasis\n                a = 2.0 * a;\n                float y = pow(x, a);\n                return y;\n            } else {\n                \/\/ de-emphasis\n                a = 2.0 * (a-0.5);\n                float y = pow(x, 1.0 \/ (1.-a));\n                return y;\n            }\n        }\n\n        vec4 blur13(sampler2D image, vec2 uv, vec2 resolution, vec2 direction) {\n            vec4 color = vec4(0.0);\n            vec2 off1 = vec2(1.411764705882353) * direction;\n            vec2 off2 = vec2(3.2941176470588234) * direction;\n            vec2 off3 = vec2(5.176470588235294) * direction;\n            color += texture2D(image, uv) * 0.1964825501511404;\n            color += texture2D(image, uv + (off1 \/ resolution)) * 0.2969069646728344;\n            color += texture2D(image, uv - (off1 \/ resolution)) * 0.2969069646728344;\n            color += texture2D(image, uv + (off2 \/ resolution)) * 0.09447039785044732;\n            color += texture2D(image, uv - (off2 \/ resolution)) * 0.09447039785044732;\n            color += texture2D(image, uv + (off3 \/ resolution)) * 0.010381362401148057;\n            color += texture2D(image, uv - (off3 \/ resolution)) * 0.010381362401148057;\n            return color;\n        }\n\n        void main(){\n            vec2 uv0 = vTextureCoord0;\n            vec2 uv1 = vTextureCoord1;\n\n            float progress0 = uProgress;\n            float progress1 = 1. - uProgress;\n\n            vec4 map = blur13(map, vTextureCoordMap, uReso, vec2(2.)) + 0.5;\n\n            uv0.x += progress0 * map.r;\n            uv1.x -= progress1 * map.r;\n\n            vec4 color = texture2D( texture0, uv0 );\n            vec4 color1 = texture2D( texture1, uv1 );\n\n            gl_FragColor = mix(color, color1, progress0 );          \n        }\n    <\/script>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-c7dc458 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"c7dc458\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e3758f0\" data-id=\"e3758f0\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b92d491 elementor-widget elementor-widget-archid-portfolio\" data-id=\"b92d491\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"archid-portfolio.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"ar-portfolio-item d-flex flex-row-reverse\">\n            <div class=\"portfolio-img\">\n                <div class=\"project_img\">\n                    <div class=\"hover_area\">\n                        <img decoding=\"async\" data-sampler=\"texture0\"  src=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage13.jpg\" alt=\"\">\n                        <img decoding=\"async\" data-sampler=\"texture1\"  src=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage13.jpg\" alt=\"\">\n                        <img decoding=\"async\" data-sampler=\"map\"  src=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage10.jpg\" alt=\"\">\n                    <\/div>\n                    <div class=\"canvas\"><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"portfolio-text headline pera-content\">\n                <h3><a href=\"https:\/\/test3.hypnotic-studio.com\/en\/ox-smart-portfolio\/ox-city-alpenarena\/\">OX CITY \u00abALPENARENA\u00bb<\/a><\/h3>\n                <p>Mountain Smart Resort in the Holiday Village format \u2014 premium comfort and Alpine aesthetics, winter sports &amp; wellness. Valais, near Verbier \/ 4 Vall\u00e9es. Operator model.<\/p>\n                                <div class=\"portfolio-info ul-li-block\">\n                    <ul>\n                                                    <li><span>Format:<\/span>Mountain Smart Resort<\/li>\n                                                    <li><span>Location:<\/span>Valais, Verbier (CH)<\/li>\n                                                    <li><span>Standard:<\/span>4\u2605 concept \u00b7 operator model<\/li>\n                                            <\/ul>\n                <\/div>\n                                                <div class=\"ar-btn-1\">\n                    <a href=\"https:\/\/test3.hypnotic-studio.com\/en\/ox-smart-portfolio\/ox-city-alpenarena\/\">View project <i class=\"fas fa-eye\"><\/i><\/a>\n                <\/div>\n                            <\/div>\n        <\/div>\n        <script id=\"vs\" type=\"x-shader\/x-vertex\">\n        #ifdef GL_ES\n        precision mediump float;\n        #endif\n\n        \/\/ those are the mandatory attributes that the lib sets\n        attribute vec3 aVertexPosition;\n        attribute vec2 aTextureCoord;\n\n        \/\/ those are mandatory uniforms that the lib sets and that contain our model view and projection matrix\n        uniform mat4 uMVMatrix;\n        uniform mat4 uPMatrix;\n\n        uniform mat4 texture0Matrix;\n        uniform mat4 texture1Matrix;\n        uniform mat4 mapMatrix;\n\n        \/\/ if you want to pass your vertex and texture coords to the fragment shader\n        varying vec3 vVertexPosition;\n        varying vec2 vTextureCoord0;\n        varying vec2 vTextureCoord1;\n        varying vec2 vTextureCoordMap;\n\n        void main() {\n            vec3 vertexPosition = aVertexPosition;\n\n            gl_Position = uPMatrix * uMVMatrix * vec4(vertexPosition, 1.0);\n\n            \/\/ set the varyings\n            vTextureCoord0 = (texture0Matrix * vec4(aTextureCoord, 0., 1.)).xy;\n            vTextureCoord1 = (texture1Matrix * vec4(aTextureCoord, 0., 1.)).xy;\n            vTextureCoordMap = (mapMatrix * vec4(aTextureCoord, 0., 1.)).xy;\n            vVertexPosition = vertexPosition;\n        }\n    <\/script>\n    <script id=\"fs\" type=\"x-shader\/x-fragment\">\n        #ifdef GL_ES\n        precision mediump float;\n        #endif\n\n        #define PI2 6.28318530718\n        #define PI 3.14159265359\n        #define S(a,b,n) smoothstep(a,b,n)\n\n        uniform float uTime;\n        uniform float uProgress;\n        uniform vec2 uReso;\n        uniform vec2 uMouse;\n\n        \/\/ get our varyings\n        varying vec3 vVertexPosition;\n        varying vec2 vTextureCoord0;\n        varying vec2 vTextureCoord1;\n        varying vec2 vTextureCoordMap;\n\n        \/\/ the uniform we declared inside our javascript\n\n        \/\/ our texture sampler (default name, to use a different name please refer to the documentation)\n        uniform sampler2D texture0;\n        uniform sampler2D texture1;\n        uniform sampler2D map;\n\n        \/\/ http:\/\/www.flong.com\/texts\/code\/shapers_exp\/\n        float exponentialEasing (float x, float a){\n\n            float epsilon = 0.00001;\n            float min_param_a = 0.0 + epsilon;\n            float max_param_a = 1.0 - epsilon;\n            a = max(min_param_a, min(max_param_a, a));\n\n            if (a < 0.5){\n                \/\/ emphasis\n                a = 2.0 * a;\n                float y = pow(x, a);\n                return y;\n            } else {\n                \/\/ de-emphasis\n                a = 2.0 * (a-0.5);\n                float y = pow(x, 1.0 \/ (1.-a));\n                return y;\n            }\n        }\n\n        vec4 blur13(sampler2D image, vec2 uv, vec2 resolution, vec2 direction) {\n            vec4 color = vec4(0.0);\n            vec2 off1 = vec2(1.411764705882353) * direction;\n            vec2 off2 = vec2(3.2941176470588234) * direction;\n            vec2 off3 = vec2(5.176470588235294) * direction;\n            color += texture2D(image, uv) * 0.1964825501511404;\n            color += texture2D(image, uv + (off1 \/ resolution)) * 0.2969069646728344;\n            color += texture2D(image, uv - (off1 \/ resolution)) * 0.2969069646728344;\n            color += texture2D(image, uv + (off2 \/ resolution)) * 0.09447039785044732;\n            color += texture2D(image, uv - (off2 \/ resolution)) * 0.09447039785044732;\n            color += texture2D(image, uv + (off3 \/ resolution)) * 0.010381362401148057;\n            color += texture2D(image, uv - (off3 \/ resolution)) * 0.010381362401148057;\n            return color;\n        }\n\n        void main(){\n            vec2 uv0 = vTextureCoord0;\n            vec2 uv1 = vTextureCoord1;\n\n            float progress0 = uProgress;\n            float progress1 = 1. - uProgress;\n\n            vec4 map = blur13(map, vTextureCoordMap, uReso, vec2(2.)) + 0.5;\n\n            uv0.x += progress0 * map.r;\n            uv1.x -= progress1 * map.r;\n\n            vec4 color = texture2D( texture0, uv0 );\n            vec4 color1 = texture2D( texture1, uv1 );\n\n            gl_FragColor = mix(color, color1, progress0 );          \n        }\n    <\/script>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-17baa6f elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"17baa6f\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-78a2988\" data-id=\"78a2988\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2c7f89a elementor-widget elementor-widget-heading\" data-id=\"2c7f89a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Interested in one of our projects?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-450c44b elementor-widget elementor-widget-text-editor\" data-id=\"450c44b\" 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>Request renderings, floor plans and the investor expos\u00e9 \u2014 we will send you the documents and gladly arrange a meeting.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-11754ec elementor-align-center elementor-widget elementor-widget-button\" data-id=\"11754ec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/test3.hypnotic-studio.com\/en\/contact\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Request investor expos\u00e9<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>ICI Common wealth Avenue We are always open to an obligation-free, initial online meeting via Skype or Zoom, just to explore the potential and show you we are the right agency for your next project. Owner:Roosen Daal Location:Aanwas 35, 4704 SC Phone:085 021 11 21 View more ICI Common wealth Avenue We are always open [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5325,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-4925","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Projects \u2013 Holiday Villages &amp; Resorts | OX Smart House<\/title>\n<meta name=\"description\" content=\"QVILLAGE Feldberg, ALPENWALD and ALPENARENA: modular resort projects with an operator model for investors in DE, AT and CH.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Projects \u2013 Holiday Villages &amp; Resorts | OX Smart House\" \/>\n<meta property=\"og:description\" content=\"QVILLAGE Feldberg, ALPENWALD and ALPENARENA: modular resort projects with an operator model for investors in DE, AT and CH.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/test3.hypnotic-studio.com\/en\/projects\/\" \/>\n<meta property=\"og:site_name\" content=\"OX Smart House\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=61579468510043&amp;mibextid=wwXIfr&amp;rdid=VmdFIz5oKlKctnpE\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-11T17:15:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage05.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Projects \u2013 Holiday Villages &amp; Resorts | OX Smart House\" \/>\n<meta name=\"twitter:description\" content=\"QVILLAGE Feldberg, ALPENWALD and ALPENARENA: modular resort projects with an operator model for investors in DE, AT and CH.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage05.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/en\\\/projects\\\/\",\"url\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/en\\\/projects\\\/\",\"name\":\"Projects \u2013 Holiday Villages & Resorts | OX Smart House\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/en\\\/projects\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/en\\\/projects\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/projekt-qvillage13.jpg\",\"datePublished\":\"2024-01-02T03:53:14+00:00\",\"dateModified\":\"2026-06-11T17:15:03+00:00\",\"description\":\"QVILLAGE Feldberg, ALPENWALD and ALPENARENA: modular resort projects with an operator model for investors in DE, AT and CH.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/en\\\/projects\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/test3.hypnotic-studio.com\\\/en\\\/projects\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/en\\\/projects\\\/#primaryimage\",\"url\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/projekt-qvillage13.jpg\",\"contentUrl\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/projekt-qvillage13.jpg\",\"width\":1440,\"height\":810,\"caption\":\"OX Smart House \u2014 QVILLAGE Feldberg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/en\\\/projects\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Projects\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/#website\",\"url\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/\",\"name\":\"OX Smart House\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/#organization\",\"name\":\"OX Smart House\",\"url\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/logo-vertical-black.svg\",\"contentUrl\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/logo-vertical-black.svg\",\"width\":237,\"height\":123,\"caption\":\"OX Smart House\"},\"image\":{\"@id\":\"https:\\\/\\\/test3.hypnotic-studio.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/profile.php?id=61579468510043&mibextid=wwXIfr&rdid=VmdFIz5oKlKctnpE\",\"https:\\\/\\\/www.instagram.com\\\/ox_smart_house\",\"https:\\\/\\\/www.youtube.com\\\/@oxsmart_home\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Projects \u2013 Holiday Villages & Resorts | OX Smart House","description":"QVILLAGE Feldberg, ALPENWALD and ALPENARENA: modular resort projects with an operator model for investors in DE, AT and CH.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Projects \u2013 Holiday Villages & Resorts | OX Smart House","og_description":"QVILLAGE Feldberg, ALPENWALD and ALPENARENA: modular resort projects with an operator model for investors in DE, AT and CH.","og_url":"https:\/\/test3.hypnotic-studio.com\/en\/projects\/","og_site_name":"OX Smart House","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=61579468510043&mibextid=wwXIfr&rdid=VmdFIz5oKlKctnpE","article_modified_time":"2026-06-11T17:15:03+00:00","og_image":[{"url":"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage05.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_title":"Projects \u2013 Holiday Villages & Resorts | OX Smart House","twitter_description":"QVILLAGE Feldberg, ALPENWALD and ALPENARENA: modular resort projects with an operator model for investors in DE, AT and CH.","twitter_image":"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage05.jpg","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/test3.hypnotic-studio.com\/en\/projects\/","url":"https:\/\/test3.hypnotic-studio.com\/en\/projects\/","name":"Projects \u2013 Holiday Villages & Resorts | OX Smart House","isPartOf":{"@id":"https:\/\/test3.hypnotic-studio.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/test3.hypnotic-studio.com\/en\/projects\/#primaryimage"},"image":{"@id":"https:\/\/test3.hypnotic-studio.com\/en\/projects\/#primaryimage"},"thumbnailUrl":"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage13.jpg","datePublished":"2024-01-02T03:53:14+00:00","dateModified":"2026-06-11T17:15:03+00:00","description":"QVILLAGE Feldberg, ALPENWALD and ALPENARENA: modular resort projects with an operator model for investors in DE, AT and CH.","breadcrumb":{"@id":"https:\/\/test3.hypnotic-studio.com\/en\/projects\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/test3.hypnotic-studio.com\/en\/projects\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/test3.hypnotic-studio.com\/en\/projects\/#primaryimage","url":"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage13.jpg","contentUrl":"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/06\/projekt-qvillage13.jpg","width":1440,"height":810,"caption":"OX Smart House \u2014 QVILLAGE Feldberg"},{"@type":"BreadcrumbList","@id":"https:\/\/test3.hypnotic-studio.com\/en\/projects\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/test3.hypnotic-studio.com\/en\/"},{"@type":"ListItem","position":2,"name":"Projects"}]},{"@type":"WebSite","@id":"https:\/\/test3.hypnotic-studio.com\/#website","url":"https:\/\/test3.hypnotic-studio.com\/","name":"OX Smart House","description":"","publisher":{"@id":"https:\/\/test3.hypnotic-studio.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/test3.hypnotic-studio.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/test3.hypnotic-studio.com\/#organization","name":"OX Smart House","url":"https:\/\/test3.hypnotic-studio.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/test3.hypnotic-studio.com\/#\/schema\/logo\/image\/","url":"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/05\/logo-vertical-black.svg","contentUrl":"https:\/\/test3.hypnotic-studio.com\/wp-content\/uploads\/2026\/05\/logo-vertical-black.svg","width":237,"height":123,"caption":"OX Smart House"},"image":{"@id":"https:\/\/test3.hypnotic-studio.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=61579468510043&mibextid=wwXIfr&rdid=VmdFIz5oKlKctnpE","https:\/\/www.instagram.com\/ox_smart_house","https:\/\/www.youtube.com\/@oxsmart_home"]}]}},"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"_links":{"self":[{"href":"https:\/\/test3.hypnotic-studio.com\/en\/wp-json\/wp\/v2\/pages\/4925","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/test3.hypnotic-studio.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/test3.hypnotic-studio.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/test3.hypnotic-studio.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/test3.hypnotic-studio.com\/en\/wp-json\/wp\/v2\/comments?post=4925"}],"version-history":[{"count":0,"href":"https:\/\/test3.hypnotic-studio.com\/en\/wp-json\/wp\/v2\/pages\/4925\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/test3.hypnotic-studio.com\/en\/wp-json\/wp\/v2\/media\/5325"}],"wp:attachment":[{"href":"https:\/\/test3.hypnotic-studio.com\/en\/wp-json\/wp\/v2\/media?parent=4925"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}