{"id":61,"date":"2023-11-05T05:59:48","date_gmt":"2023-11-05T05:59:48","guid":{"rendered":"https:\/\/deepertech.com\/en\/?page_id=61"},"modified":"2025-10-31T23:32:28","modified_gmt":"2025-11-01T03:32:28","slug":"homepage","status":"publish","type":"page","link":"https:\/\/deepertech.com\/en\/","title":{"rendered":"Homepage"},"content":{"rendered":"\n<script>\n<\/script>\n<style>\nh2.entry-title[itemprop=\"headline\"] {\n  display: none;\n}\nbody > div.site-container:nth-child(3) > div.site-inner:nth-child(3) > div.content-sidebar-wrap > main#genesis-content.content > article.post-61.page.type-page.status-publish.entry > header.entry-header:nth-child(1){\ndisplay:none;\n}\n\nbody > div.site-container:nth-child(3) > div.site-inner:nth-child(3){\nwidth:100%;\n}\nbody > div.site-container:nth-child(3) > div.site-inner:nth-child(3) > div.content-sidebar-wrap > main#genesis-content.content > article.post-61.page.type-page.status-publish.entry > div.entry-content:nth-child(2) > div.first_idea:nth-child(3) > h1 {\n\nwidth:100%;\ntext-align: justify;\n}\n\n\/*Request Quote*\/\nbody > div.site-container:nth-child(3) > header.site-header:nth-child(2) > div.wrap > nav#genesis-nav-primary.nav-primary.genesis-responsive-menu:nth-child(3) > div.wrap > ul#menu-header-menu.menu.genesis-nav-menu.menu-primary.js-superfish.sf-js-enabled.sf-arrows > li#menu-item-26.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-26:nth-child(4) > a > span {\nbackground-color: #8AD9D0;\ncolor: white;\npadding: 5px 5px 5px 5px;\n}\n\n\/*Full width*\/\n\nmain#genesis-content.content {\nwidth:100%;\n}\n\ndiv.content-sidebar-wrap{\nmargin-top: -100px;\n}\n\n<\/style>\n<div class=first_idea><br><br>\n<h1 style=\"text-align: justify;font-family: var(--font-sans);\">We are dedicated to solve problems, and facilitate tasks and processes for you using technology.<\/h1>\n\n<div  style=\"width:100%;text-align: center;\">\n<h2>\n<span style=\"width:100%;text-align: center;color:black;background-color: Yellow;font-size: 36px;font-family: var(--font-sans);\" >\n&quot;For us, technology is a means to an end. Not the end in itself.&quot;\n<\/span>\n<br\/>\n<span style=\"width:100%;text-align: center;color:black;background-color: Yellow;font-size: 36px;font-family: var(--font-sans);\" >\nWe can help you convert your idea in a reality.\n<\/span>\n<\/h2>\n\n<\/div>\n\n<style>\ndiv#scroll-image {\n  position: relative;\n  top: 0;\n  left: 0;\n}\nimg#Image1 {\n  position: relative;\n  top: 0;\n  left: 0;\n  \/*border: 1px red solid; *\/\n}\nimg#Image2 {\n\/*over image 1 *\/\n  position: absolute;\n  top: 0px;\n  left: 0px;\n  \/*border: 1px green solid;*\/\n}\n<\/style>\n<!--\n    <div id=\"scroll-image\"> \n        <img id=\"Image1\" src= \n\"https:\/\/deepertech.com\/images\/first_idea.webp\" \n             class=\"test\" width=\"100%\"  \/> \n        <img id=\"Image2\" src= \n\"https:\/\/deepertech.com\/images\/second_idea.webp\" \n             class=\"test\" width=\"100%\"  \/> \n    <\/div> \n-->\n\n<!-- -->\n<script>\nstartImageTransition(); \n      \n    function startImageTransition() { \n      \n        \/\/ images stores list of all images of \n        \/\/ class test. This is the list of images \n        \/\/ that we are going to iterate \n        var images = document.getElementsByClassName(\"test\"); \n      \n        \/\/ Set opacity of all images to 1 \n        for (var i = 0; i < images.length; ++i) { \n            images[i].style.opacity = 1; \n        } \n      \n        \/\/ Top stores the z-index of top most image \n        var top = 1; \n      \n        \/\/ cur stores the index of the image currently \n        \/\/ on top images list contain images in the  \n        \/\/ same order they appear in HTML code  \n        \/* The tag with class test which appears last \n           will appear on top of all the images thus, \n           cur is set to last index of images list*\/\n        var cur = images.length - 1; \n      \n        \/\/ Call changeImage function every 10 second \n        \/\/ changeImage function changes the image \n        setInterval(changeImage, 10000); \n      \n        \/\/ Function to transitions from one image to other \n        async function changeImage() { \n      \n            \/\/ Stores index of next image \n            var nextImage = (1 + cur) % images.length; \n      \n            \/\/ First set the z-index of current image to top+1 \n            \/\/ then set the z-index of nextImage to top \n            \/* Doing this make sure that the image below \n               the current image is nextImage*\/\n            \/\/ if this is not done then during transition \n            \/\/ we might see some other image appearing \n            \/\/ when we change opacity of the current image \n            images[cur].style.zIndex = top + 1; \n            images[nextImage].style.zIndex = top; \n      \n            \/\/ await is used to make sure \n            \/\/ the program waits till transition() \n            \/\/ is completed \n            \/\/ before executing the next line of code \n            await transition(); \n      \n            \/\/ Now, the transition function is completed \n            \/\/ thus, we can say that the opacity of the \n            \/\/ current image is now 0 \n      \n            \/\/ Set the z-index of current image to top \n            images[cur].style.zIndex = top; \n      \n            \/\/ Set the z-index of nextImage to top+1 \n            images[nextImage].style.zIndex = top + 1; \n      \n            \/\/ Increment top \n            top = top + 1; \n      \n            \/\/ Change opacity of current image back to 1 \n            \/\/ since zIndex of current is less than zIndex \n            \/\/ of nextImage \n            \/* changing it's opacity back to 1 will not \n               make the image appear again*\/\n            images[cur].style.opacity = 1; \n      \n            \/\/ Set cur to nextImage \n            cur = nextImage; \n        } \n      \n        \/* This function changes the opacity of \n        current image at regular intervals*\/\n        function transition() { \n            return new Promise(function (resolve, reject) { \n      \n                \/\/ del is the value by which opacity is \n                \/\/ decreased every interval \n                var del = 0.01; \n      \n                \/\/ id stores ID of setInterval \n                \/\/ this ID will be used later \n                \/\/ to clear\/stop setInterval \n                \/\/ after we are done changing opacity \n                var id = setInterval(changeOpacity, 10); \n      \n                \/\/ changeOpacity() decreasing opacity of \n                \/\/ current image by del \n                \/\/ when opacity reaches to 0, we stops\/clears \n                \/\/ the setInterval and resolve the function \n                function changeOpacity() { \n                    images[cur].style.opacity -= del; \n                    if (images[cur].style.opacity <= 0) { \n                        clearInterval(id); \n                        resolve(); \n                    } \n                } \n            }) \n        } \n    } \n<!--  -->\n\n<\/script>\n<!-- -->\n\n<!-- -->\n\n<\/div>\n\n\n\n<H2 style=\"text-align: justify;font-family: var(--font-sans);\">\nWe are passionate about IT consulting, and for us, technology is much more than a set of tools; it is the bridge we build to solve problems and simplify processes.<\/H2>\n<H2 style=\"text-align: justify;font-family: var(--font-sans);\">\nWe create products &#038; experiences. we solve problems, concerns &#038; needs using tools such like code. Code is a means to achieve what really matters.<\/H2>\n<H2 style=\"text-align: justify;font-family: var(--font-sans);\">\nWe are proud working side by side with our clients,  offering innovative solutions that go beyond of a technological implementation. Our mission is to make life easier for companies and their teams, bringing efficiency and improving the way they perform their daily tasks.<\/H2>\n<H2 style=\"text-align: justify;font-family: var(--font-sans);\">\nWelcome to Deepertech, where we turn technology into meaningful solutions.\n<\/H2>\n\n\n\n\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f423-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"423\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/en\/wp-json\/wp\/v2\/pages\/61#wpcf7-f423-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"423\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.5\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f423-o1\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/><input type=\"hidden\" name=\"_wpcf7cf_hidden_group_fields\" value=\"[]\" \/><input type=\"hidden\" name=\"_wpcf7cf_hidden_groups\" value=\"[]\" \/><input type=\"hidden\" name=\"_wpcf7cf_visible_groups\" value=\"[]\" \/><input type=\"hidden\" name=\"_wpcf7cf_repeaters\" value=\"[]\" \/><input type=\"hidden\" name=\"_wpcf7cf_steps\" value=\"{}\" \/><input type=\"hidden\" name=\"_wpcf7cf_options\" value=\"{&quot;form_id&quot;:423,&quot;conditions&quot;:[],&quot;settings&quot;:{&quot;animation&quot;:&quot;yes&quot;,&quot;animation_intime&quot;:200,&quot;animation_outtime&quot;:200,&quot;conditions_ui&quot;:&quot;normal&quot;,&quot;notice_dismissed&quot;:false,&quot;repeater_remove_button&quot;:&quot;bottom&quot;}}\" \/>\n<\/fieldset>\n<!-- CTA -->\n<!-- \n&nbsp<br \/>&nbsp<br \/>\n -->\n<p><b>Got an idea but not sure where to start?<\/b><br \/>\nTurn your vision into a real world project our development team takes care of everything.\n<\/p>\n<p><b>Reach out today and get a custom proposal within 24 hours.<\/b><br \/>\n<!-- \n&nbsp<br \/>&nbsp<br \/>\n -->\n<\/p>\n<div style=\"width:100%; border: 1px solid #000;padding: 10px 10px 10px 10px;\">\n<!-- Name -->\n\t<p><label>Full Name<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your full name\" value=\"\" type=\"text\" name=\"your-name\" \/><\/span><br \/>\n<\/label>\n\t<\/p>\n\n<!-- Email -->\n\t<p><label>Email<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"you@example.com\" value=\"\" type=\"email\" name=\"your-email\" \/><\/span><br \/>\n<\/label>\n\t<\/p>\n\n<!-- Phone (optional) -->\n\t<p><label>Phone<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-phone\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-tel wpcf7-text wpcf7-validates-as-tel\" aria-invalid=\"false\" placeholder=\"(555) 555-5555\" value=\"\" type=\"tel\" name=\"your-phone\" \/><\/span><br \/>\n<\/label>\n\t<\/p>\n\n<!-- Message -->\n\t<p><label>Message<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-message\"><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" class=\"wpcf7-form-control wpcf7-textarea\" aria-invalid=\"false\" placeholder=\"Tell us about your project\u2026\" name=\"your-message\"><\/textarea><\/span><br \/>\n<\/label>\n\t<\/p>\n\n<!-- Hidden field that captures the page URL -->\n<input class=\"wpcf7-form-control wpcf7-hidden\" id=\"page-url\" value=\"\" type=\"hidden\" name=\"page-url\" \/>\n<input class=\"wpcf7-form-control wpcf7-hidden\" id=\"ipaddress\" value=\"###IP###\" type=\"hidden\" name=\"ip-address\" \/>\n\t<p><span class=\"wpcf7-form-control-wrap\" data-name=\"acceptance-269\"><span class=\"wpcf7-form-control wpcf7-acceptance\"><span class=\"wpcf7-list-item\"><label><input type=\"checkbox\" name=\"acceptance-269\" value=\"1\" id=\"privacy_policy\" aria-invalid=\"false\" \/><span class=\"wpcf7-list-item-label\"><b><a href=\"https:\/\/deepertech.com\/en\/privacy\/\" target=\"_blank\" style=\"display:inline-block;\" >I have read and accept the privacy policy described in the link below.<svg class=\"link_externalIcon__uwKVa\"  style=\"display:inline-block; vertical-align:-0.125em; margin-left:.25em;\" data-testid=\"geist-icon\" fill=\"none\" height=\"24\" shape-rendering=\"geometricPrecision\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" viewBox=\"0 0 24 24\" width=\"24\" style=\"color: currentcolor; width: 1em; height: 1em;\"><path d=\"M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6\"><\/path><path d=\"M15 3h6v6\"><\/path><path d=\"M10 14L21 3\"><\/path><\/svg>\n<\/a><\/b><\/span><\/label><\/span><\/span><\/span>\n\t<\/p>\n\n<!-- Submit -->\n\t<p><input class=\"wpcf7-form-control wpcf7-submit has-spinner\" type=\"submit\" value=\"Get My Proposal\" \/>\n\t<\/p>\n<\/div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n\n\n\n<script>  window.onload = function () {  var text = document.getElementById('ipaddress'); text.value = '216.73.217.38'; };<\/script>\n\n","protected":false},"excerpt":{"rendered":"<p>We are dedicated to solve problems, and facilitate tasks and processes for you using technology. &quot;For us, technology is a means to an end. Not the end in itself.&quot; We can help you convert your idea in a reality. We are passionate about IT consulting, and for us, technology is much more than a set [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/homepage.php","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"class_list":{"0":"post-61","1":"page","2":"type-page","3":"status-publish","5":"entry"},"_links":{"self":[{"href":"https:\/\/deepertech.com\/en\/wp-json\/wp\/v2\/pages\/61","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/deepertech.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/deepertech.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/deepertech.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/deepertech.com\/en\/wp-json\/wp\/v2\/comments?post=61"}],"version-history":[{"count":150,"href":"https:\/\/deepertech.com\/en\/wp-json\/wp\/v2\/pages\/61\/revisions"}],"predecessor-version":[{"id":609,"href":"https:\/\/deepertech.com\/en\/wp-json\/wp\/v2\/pages\/61\/revisions\/609"}],"wp:attachment":[{"href":"https:\/\/deepertech.com\/en\/wp-json\/wp\/v2\/media?parent=61"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}