{"id":458,"date":"2020-06-20T19:19:19","date_gmt":"2020-06-20T19:19:19","guid":{"rendered":"https:\/\/democontent.codex-themes.com\/sites-elementor\/fullscreen-vertical-slider-1\/?page_id=8"},"modified":"2025-01-22T09:02:49","modified_gmt":"2025-01-22T09:02:49","slug":"homepage","status":"publish","type":"page","link":"https:\/\/lunul.org\/","title":{"rendered":"Homepage (Demo)"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"458\" class=\"elementor elementor-458\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-40602b3 elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default\" data-id=\"40602b3\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d0c9b33\" data-id=\"d0c9b33\" data-element_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-253aa73 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-html\" data-id=\"253aa73\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"animation-wrapper\">\n    <canvas id=\"animation-visual-canvas\"><\/canvas>\n<\/div>\n    \n<style>\n\n        .animation-wrapper {\n            width: 100%;\n            height: 1000px;\n    position: absolute;\n    top: 0;\n    overflow: hidden;\n    z-index: 1;\n        }\n        .animation-wrapper canvas {\n            width: 100%;\n            height: 100%;\n            position: absolute;\n            left: 0;\n            top: 0;\n            opacity: 1;\n    z-index: 1;\n        }\n    <\/style>\n\n    <script type=\"text\/javascript\" src=\" https:\/\/codex-themes.com\/thegem\/wp-content\/plugins\/thegem-custom-options\/js\/TweenLite.min.js\"><\/script>\n    <script type=\"text\/javascript\" src=\"https:\/\/codex-themes.com\/thegem\/wp-content\/plugins\/thegem-custom-options\/js\/EasePack.min.js\"><\/script>\n\n<script type=\"text\/javascript\">\n    (function() {\n        var lastTime = 0;\n        var vendors = ['ms', 'moz', 'webkit', 'o'];\n        for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n            window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];\n            window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame'] || window[vendors[x]+'CancelRequestAnimationFrame'];\n        }\n\n        if (!window.requestAnimationFrame)\n            window.requestAnimationFrame = function(callback, element) {\n                var currTime = new Date().getTime();\n                var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n                var id = window.setTimeout(function() { callback(currTime + timeToCall); },\n                    timeToCall);\n                    lastTime = currTime + timeToCall;\n                return id;\n            };\n\n            if (!window.cancelAnimationFrame)\n                window.cancelAnimationFrame = function(id) {\n                    clearTimeout(id);\n                };\n    }());\n\n    (function() {\n        var canvas,\n            contentWidth,\n            contentHeight,\n            ctx,\n            points = [],\n            target;\n\n        function initVisualAnimation() {\n            canvas = document.getElementById(\"animation-visual-canvas\");\n\n            resize();\n\n            ctx = canvas.getContext('2d');\n\n            target = {\n                x: contentWidth \/ 2,\n                y: contentHeight \/ 2\n            };\n\n            \/\/ create points\n            for (var x = 0; x < contentWidth; x = x + contentWidth \/ 20) {\n                for (var y = 0; y < contentHeight; y = y + contentHeight \/ 20) {\n                    var px = x + Math.random() * contentWidth \/ 20;\n                    var py = y + Math.random() * contentHeight \/ 20;\n                    points.push({\n                        x: px,\n                        originX: px,\n                        y: py,\n                        originY: py\n                    });\n                }\n            }\n\n            \/\/ for each point find the 5 closest points\n            for (var i = 0; i < points.length; i++) {\n                var closest = [];\n                var p1 = points[i];\n                for (var j = 0; j < points.length; j++) {\n                    var p2 = points[j];\n                    if (p1 != p2) {\n                        var placed = false;\n                        for (var k = 0; k < 5; k++) {\n                            if (!placed) {\n                                if (closest[k] == undefined) {\n                                    closest[k] = p2;\n                                    placed = true;\n                                }\n                            }\n                        }\n\n                        for (var k = 0; k < 5; k++) {\n                            if (!placed) {\n                                if (getDistance(p1, p2) < getDistance(p1, closest[k])) {\n                                    closest[k] = p2;\n                                    placed = true;\n                                }\n                            }\n                        }\n                    }\n                }\n                p1.closest = closest;\n            }\n\n            \/\/ assign a circle to each point\n            for (var i in points) {\n                points[i].circle = new Circle(points[i], 2 + Math.random() * 2, 'rgba(255, 255, 255, 0.3)');\n            }\n\n            addListeners();\n\n            animate();\n            for (var i in points) {\n                shiftPoint(points[i]);\n            }\n        }\n\n        function addListeners() {\n            if( !('ontouchstart' in window)) {\n                window.addEventListener('mousemove', mouseMove);\n            }\n\n            window.addEventListener('resize', resize);\n        }\n\n        function mouseMove(e) {\n            var posx = posy = 0;\n            var offset_top = getElementPosition(canvas).top;\n\n            if (e.pageX || e.pageY) {\n                posx = e.pageX;\n                posy = e.pageY;\n            } else if (e.clientX || e.clientY)    {\n                posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;\n                posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;\n            }\n\n            target.x = posx;\n            target.y = posy - offset_top;\n        }\n\n        function getElementPosition(elem) {\n            var w = elem.offsetWidth,\n                h = elem.offsetHeight,\n                l = 0,\n                t = 0;\n\n            while (elem) {\n                l += elem.offsetLeft;\n                t += elem.offsetTop;\n                elem = elem.offsetParent;\n            }\n\n            return {\n                left: l,\n                top: t,\n                width: w,\n                height: h\n            };\n        }\n\n        function resize() {\n            \/\/ parent node size\n            contentWidth = canvas.parentNode.offsetWidth;\n            contentHeight = canvas.parentNode.offsetHeight;\n\n            \/\/ set canvas size equal size of parent node\n            canvas.width = contentWidth;\n            canvas.height = contentHeight;\n        }\n\n        function getDistance(p1, p2) {\n            return Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2);\n        }\n\n        function Circle(pos, rad, color) {\n            var _this = this;\n\n            (function() {\n                _this.pos = pos || null;\n                _this.radius = rad || null;\n                _this.color = color || null;\n            })();\n\n            this.draw = function() {\n                if (!_this.active) return;\n                ctx.beginPath();\n                ctx.arc(_this.pos.x, _this.pos.y, _this.radius, 0, 2 * Math.PI, false);\n                ctx.fillStyle = 'rgba(255, 255, 255, ' + _this.active + ')';\n                ctx.fill();\n            };\n        }\n\n        function animate() {\n            ctx.clearRect(0, 0, contentWidth, contentHeight);\n\n            for (var i in points) {\n                \/\/ detect points in range\n                if (Math.abs(getDistance(target, points[i])) < 4000) {\n                    points[i].active = 0.3;\n                    points[i].circle.active = 0.6;\n                } else if (Math.abs(getDistance(target, points[i])) < 20000) {\n                    points[i].active = 0.1;\n                    points[i].circle.active = 0.3;\n                } else if (Math.abs(getDistance(target, points[i])) < 40000) {\n                    points[i].active = 0.02;\n                    points[i].circle.active = 0.1;\n                } else {\n                    points[i].active = 0;\n                    points[i].circle.active = 0;\n                }\n\n                drawLines(points[i]);\n                points[i].circle.draw();\n            }\n\n            requestAnimationFrame(animate);\n        }\n\n        function drawLines(p) {\n            if (!p.active) {\n                return;\n            }\n\n            for (var i in p.closest) {\n                ctx.beginPath();\n                ctx.moveTo(p.x, p.y);\n                ctx.lineTo(p.closest[i].x, p.closest[i].y);\n                ctx.strokeStyle = 'rgba(255, 255, 255, ' + p.active + ')';\n                ctx.stroke();\n            }\n        }\n\n        function shiftPoint(p) {\n            TweenLite.to(\n                p,\n                1 + 1 * Math.random(),\n                {\n                    x: p.originX - 50 + Math.random() * 100,\n                    y: p.originY - 50 + Math.random() * 100,\n                    ease:Circ.easeInOut,\n                    onComplete: function() {\n                        shiftPoint(p);\n                    }\n                }\n            );\n        }\n\n        window.onload = initVisualAnimation;\n    })();\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1af66da flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-slider_revolution\" data-id=\"1af66da\" data-element_type=\"widget\" data-widget_type=\"slider_revolution.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div class=\"wp-block-themepunch-revslider\">\n\t\t\t<!-- START Vertical Slider REVOLUTION SLIDER 6.7.25 --><p class=\"rs-p-wp-fix\"><\/p>\n\t\t\t<rs-module-wrap id=\"rev_slider_1_1_wrapper\" data-source=\"gallery\" style=\"visibility:hidden;background:transparent;padding:0;\">\n\t\t\t\t<rs-module id=\"rev_slider_1_1\" style=\"\" data-version=\"6.7.25\">\n\t\t\t\t\t<rs-slides style=\"overflow: hidden; position: absolute;\">\n\t\t\t\t\t\t<rs-slide style=\"position: absolute;\" data-key=\"rs-1\" data-title=\"Slide\" data-anim=\"ms:600;r:0;\" data-in=\"o:0;\" data-out=\"a:false;\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" src=\"\/\/lunul.org\/wp-content\/uploads\/2020\/06\/Image1.jpg\" alt=\"\" title=\"Image1.jpg (Demo)\" width=\"1900\" height=\"1069\" class=\"rev-slidebg tp-rs-img\" data-no-retina>\n\t\t\t\t\t\t\t<rs-bgvideo \n\t\t\t\t\t\t\t\tdata-video=\"w:100%;h:100%;nse:false;l:loopandnoslidestop;ptimer:false;vfc:true;\"\n\t\t\t\t\t\t\t\tdata-mp4=\"\/\/lunul.org\/wp-content\/uploads\/2020\/06\/Diamond-Background-02.mp4\"\n\t\t\t\t\t\t\t><\/rs-bgvideo>\n<!--\n\t\t\t\t\t\t\t--><rs-layer\n\t\t\t\t\t\t\t\tid=\"slider-1-slide-1-layer-1\" \n\t\t\t\t\t\t\t\tdata-type=\"text\"\n\t\t\t\t\t\t\t\tdata-color=\"rgba(255,255,255,1)\"\n\t\t\t\t\t\t\t\tdata-rsp_ch=\"on\"\n\t\t\t\t\t\t\t\tdata-xy=\"x:100px;y:100px;\"\n\t\t\t\t\t\t\t\tdata-text=\"l:22;\"\n\t\t\t\t\t\t\t\tdata-frame_1=\"e:power2.inOut;st:500;\"\n\t\t\t\t\t\t\t\tdata-frame_999=\"o:0;e:nothing;st:w;\"\n\t\t\t\t\t\t\t\tstyle=\"z-index:5;font-family:'Roboto';\"\n\t\t\t\t\t\t\t> \n\t\t\t\t\t\t\t<\/rs-layer><!--\n\n\t\t\t\t\t\t\t--><rs-layer\n\t\t\t\t\t\t\t\tid=\"slider-1-slide-1-layer-3\" \n\t\t\t\t\t\t\t\tdata-type=\"image\"\n\t\t\t\t\t\t\t\tdata-rsp_ch=\"on\"\n\t\t\t\t\t\t\t\tdata-xy=\"x:c;y:c;yo:-110px;\"\n\t\t\t\t\t\t\t\tdata-text=\"l:22;\"\n\t\t\t\t\t\t\t\tdata-dim=\"w:153px;h:120px;\"\n\t\t\t\t\t\t\t\tdata-frame_1=\"e:power2.inOut;st:500;\"\n\t\t\t\t\t\t\t\tdata-frame_999=\"o:0;e:nothing;st:w;\"\n\t\t\t\t\t\t\t\tstyle=\"z-index:6;\"\n\t\t\t\t\t\t\t><img src=\"\/\/lunul.org\/wp-content\/uploads\/2020\/06\/3-layers-1.png\" alt=\"\" class=\"tp-rs-img\" width=\"153\" height=\"120\" data-no-retina> \n\t\t\t\t\t\t\t<\/rs-layer><!--\n\n\t\t\t\t\t\t\t--><rs-layer\n\t\t\t\t\t\t\t\tid=\"slider-1-slide-1-layer-4\" \n\t\t\t\t\t\t\t\tdata-type=\"image\"\n\t\t\t\t\t\t\t\tdata-rsp_ch=\"on\"\n\t\t\t\t\t\t\t\tdata-xy=\"x:c;y:c;yo:88px;\"\n\t\t\t\t\t\t\t\tdata-text=\"l:22;\"\n\t\t\t\t\t\t\t\tdata-dim=\"w:666px;h:139px;\"\n\t\t\t\t\t\t\t\tdata-frame_1=\"e:power2.inOut;st:500;\"\n\t\t\t\t\t\t\t\tdata-frame_999=\"o:0;e:nothing;st:w;\"\n\t\t\t\t\t\t\t\tstyle=\"z-index:7;\"\n\t\t\t\t\t\t\t><img src=\"\/\/lunul.org\/wp-content\/uploads\/2020\/06\/3-layers-2.png\" alt=\"\" class=\"tp-rs-img\" width=\"666\" height=\"139\" data-no-retina> \n\t\t\t\t\t\t\t<\/rs-layer><!--\n\n\t\t\t\t\t\t\t--><rs-layer\n\t\t\t\t\t\t\t\tid=\"slider-1-slide-1-layer-5\" \n\t\t\t\t\t\t\t\tdata-type=\"text\"\n\t\t\t\t\t\t\t\tdata-color=\"rgba(255,255,255,1)\"\n\t\t\t\t\t\t\t\tdata-rsp_ch=\"on\"\n\t\t\t\t\t\t\t\tdata-xy=\"x:585px;y:809px;\"\n\t\t\t\t\t\t\t\tdata-text=\"w:normal;l:22;\"\n\t\t\t\t\t\t\t\tdata-dim=\"w:65;h:23;\"\n\t\t\t\t\t\t\t\tdata-btrans=\"rX:360;\"\n\t\t\t\t\t\t\t\tdata-frame_0=\"rZ:1;\"\n\t\t\t\t\t\t\t\tdata-frame_1=\"rZ:1;e:power2.inOut;st:500;\"\n\t\t\t\t\t\t\t\tdata-frame_999=\"o:0;e:nothing;st:w;\"\n\t\t\t\t\t\t\t\tstyle=\"z-index:8;font-family:'Roboto';\"\n\t\t\t\t\t\t\t><a class=\"mouse-scroll scroll-to-anchor\" href=\"#row-2\">mouse<\/a> \n\t\t\t\t\t\t\t<\/rs-layer><!--\n-->\t\t\t\t\t<\/rs-slide>\n\t\t\t\t\t<\/rs-slides>\n\t\t\t\t<\/rs-module>\n\t\t\t\t<script>\n\t\t\t\t\tsetREVStartSize({c: 'rev_slider_1_1',rl:[1240,1024,778,480],el:[868],gw:[1240],gh:[868],type:'standard',justify:'',layout:'fullscreen',offsetContainer:'',offset:'',mh:\"0\"});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules[\"revslider11\"]!==undefined) {window.RS_MODULES.modules[\"revslider11\"].once = false;window.revapi1 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()}\n\t\t\t\t<\/script>\n\t\t\t<\/rs-module-wrap>\n\t\t\t<!-- END REVOLUTION SLIDER -->\n<\/div>\n\n\t\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><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1c9dae3 elementor-section-full_width elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-bottom elementor-section-height-default\" data-id=\"1c9dae3\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c0ef766\" data-id=\"c0ef766\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6e265e8 elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"6e265e8\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-50bc384\" data-id=\"50bc384\" data-element_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-4f155e5 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"4f155e5\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<div class=\"title-xlarge\"><span class=\"light\">Timeless.<\/span><br \/>Distinctive.<br \/><span style=\"color: #212331;\">beautiful.<\/span><\/div>\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a19be81 elementor-widget-tablet__width-initial flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"a19be81\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<p class=\"styled-subtitle\">Subscribe to our MailChimp newsletter and stay up to date with all events coming straight in your mailbox!<\/p>\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\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<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-53c1aec elementor-hidden-tablet elementor-hidden-phone\" data-id=\"53c1aec\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-172948d elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"172948d\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:&quot;19&quot;,&quot;url&quot;:&quot;https:\\\/\\\/lunul.org\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/15-layers_1_.jpg&quot;},{&quot;id&quot;:&quot;455&quot;,&quot;url&quot;:&quot;https:\\\/\\\/lunul.org\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/15-layers_2_.jpg&quot;}],&quot;background_slideshow_slide_duration&quot;:15000,&quot;background_slideshow_transition_duration&quot;:0,&quot;background_slideshow_ken_burns&quot;:&quot;yes&quot;,&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_ken_burns_zoom_direction&quot;:&quot;in&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c50be96\" data-id=\"c50be96\" data-element_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-1bee298 elementor-widget__width-initial flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"1bee298\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<div class=\"title-h1\"><span class=\"light\" style=\"color: #ffffff;\">Brilliance of perfection!<\/span><br \/><span class=\"light\" style=\"color: #f4ff81;\">WordPress jewel<\/span><br \/><span class=\"light\" style=\"color: #68ffac;\">made to impress.<\/span><\/div>\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-0b638c3 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"0b638c3\" data-element_type=\"section\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-04367f4\" data-id=\"04367f4\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f0db0fe elementor-section-full_width elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-height-default\" data-id=\"f0db0fe\" data-element_type=\"section\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b2230b1\" data-id=\"b2230b1\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\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-94e033c flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-heading\" data-id=\"94e033c\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"title-h1 elementor-heading-title elementor-size-default\">our works<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bf7eb14 elementor-widget__width-initial flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"bf7eb14\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<p class=\"styled-subtitle\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam nostrud exercitation ullamco laboris nisi.<\/p>\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\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<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-0bba5e9\" data-id=\"0bba5e9\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\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-29f5c33 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-spacer\" data-id=\"29f5c33\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\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><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1aa693c elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"1aa693c\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9629d22\" data-id=\"9629d22\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-00019e0 elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"00019e0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-aeb4f02\" data-id=\"aeb4f02\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-feaf413 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"feaf413\" data-element_type=\"section\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-908d28f\" data-id=\"908d28f\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-584d9bb\" data-id=\"584d9bb\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-42f8071\" data-id=\"42f8071\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-140125b\" data-id=\"140125b\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>HI-TECH Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor Flexible Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor Powerful Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor MIGHTY ADMIN Lorem ipsum dolor sit ametcon sectetur adipisicing elit, sed doiusmod tempor PIXEL PERFECT Lorem ipsum dolor sit &hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-fullwidth.php","meta":{"footnotes":""},"class_list":["post-458","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/lunul.org\/index.php?rest_route=\/wp\/v2\/pages\/458","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lunul.org\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lunul.org\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lunul.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lunul.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=458"}],"version-history":[{"count":4,"href":"https:\/\/lunul.org\/index.php?rest_route=\/wp\/v2\/pages\/458\/revisions"}],"predecessor-version":[{"id":813,"href":"https:\/\/lunul.org\/index.php?rest_route=\/wp\/v2\/pages\/458\/revisions\/813"}],"wp:attachment":[{"href":"https:\/\/lunul.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=458"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}