{"id":17395,"date":"2023-04-25T00:23:25","date_gmt":"2023-04-25T00:23:25","guid":{"rendered":"http:\/\/www.growketing.com\/services\/web-readiness\/"},"modified":"2024-07-23T16:32:48","modified_gmt":"2024-07-23T16:32:48","slug":"web-readiness","status":"publish","type":"page","link":"https:\/\/www.growketing.com\/en\/services\/web-readiness\/","title":{"rendered":"Web Readiness"},"content":{"rendered":"\n<div class=\"service-header\">\n    <div class=\"service-filter\">\n        <ul>\n            <li class=\"filter-title\">\n                Our services:            <\/li>\n                            <li class=\"active\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/web-readiness\/'>\n                        Web Readiness                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/growth-marketing\/'>\n                        Growth Marketing                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/ppc\/'>\n                        Paid Media \/ PPC                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/data-analytics\/'>\n                        Data &amp; AI                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/seo\/'>\n                        SEO                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/revenue-operations\/'>\n                        Revenue Operations                    <\/a>\n                <\/li>\n                    <\/ul>\n    <\/div>\n    <div class=\"row-services\">\n        <div class=\"service-title\">\n            <div class=\"service-container\">\n                <h1>\n                    WEB READINESS                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/webReadiness.svg\" alt=\"\">\n                                    <\/h1>\n                <p class=\"service-description\">\n                    Measure the performance of each strategy and segment your target.                <\/p>\n                <a href=\"https:\/\/www.growketing.com\/en\/contact\/\" target=\"\"><button>\n                        Let&#8217;s connect                    <\/button><\/a>\n            <\/div>\n        <\/div>\n\n        <div class=\"container-spinner\">\n            <div class=\"floating-img-container\">\n                <img decoding=\"async\" class=\"floating-img\"\n                    src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/grow-data.svg\" alt=\"\">\n                <div class=\"spinner-inside\">\n                    <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/grow-inside.svg\"\n                        alt=\"Inside Spinner\">\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div class=\"spacer\"><\/div>\n\n    <div class=\"service_methodology_cta_no_home\">\n        <div class=\"service-wit\">\n            <div class=\"wit-container\">\n                <div class=\"col-md-6 col-sm-12\">\n                    <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/06\/web_readiness.svg\" alt=\"\">\n                <\/div>\n\n                <div class=\"col-md-6 col-sm-12\">\n                    <h2 class=\"wit-title\">\n                        What is?                    <\/h2>\n                    <p class=\"wit-description\">\n                        As an advertiser, your website should be aligned and technically structured following best practices. This way, you ensure that both users and campaign bots have a good experience when visiting your site.                    <\/p>\n                    <a href=\"https:\/\/www.growketing.com\/en\/contact\/\" target=\"\"><button>\n                            Let&#8217;s talk!                        <\/button><\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    \/\/ 1. Selecciona el h1 dentro del .service-container\n    const h1 = document.querySelector('.service-container h1');\n\n    \/\/ 2. Obtiene el texto completo omitiendo im\u00e1genes\n    let textContent = '';\n    for (let child of h1.childNodes) {\n        if (child.nodeType === 3) { \/\/ 3 es Node.TEXT_NODE\n            textContent += child.textContent;\n        }\n    }\n\n    \/\/ 3. Encuentra la \u00faltima palabra\n    const words = textContent.trim().split(\/\\s+\/);\n    const lastWord = words[words.length - 1];\n\n    \/\/ 4. Reemplaza la \u00faltima aparici\u00f3n de esa palabra en el h1 con un span que tenga un border-bottom\n    const regexLastWord = new RegExp(`(${lastWord})(?![\\\\s\\\\S]*${lastWord})`, 'g');\n\n    let replacedContent = h1.innerHTML.replace(regexLastWord, `<span style=\"border-bottom: 3px solid #12F266;\">$1<\/span>`);\n\n    h1.innerHTML = replacedContent;\n\n    document.addEventListener('DOMContentLoaded', function () {\n        const SLIDER_MIN_OFFSET = 0;\n        const SLIDER_MAX_OFFSET = -850;\n        const MOBILE_WIDTH_BREAKPOINT = 768;\n\n        \/\/ Utiliza jQuery para obtener el ancho de la ventana\n        function isMobileView() {\n            const width = jQuery(window).width();\n            return width <= MOBILE_WIDTH_BREAKPOINT;\n        }\n\n        if (!isMobileView()) {\n            return; \/\/ No es un dispositivo m\u00f3vil, no continuar\n        }\n\n        const slider = document.querySelector('.service-filter');\n        const offsets = [0, -100, -200, -500, -810];\n        let isDragging = false;\n        let startX = 0;\n        let currentTranslateX = 0;\n\n        function applyTranslateX(offset) {\n            slider.style.transform = `translateX(${offset}px)`;\n            currentTranslateX = offset;\n            localStorage.setItem('scrollPosition', offset);\n        }\n\n        function onStart(event) {\n            isDragging = true;\n            startX = (event.touches ? event.touches[0] : event).clientX;\n            slider.classList.add('grabbing');\n            slider.style.transition = 'none';\n        }\n\n        function onMove(event) {\n            if (!isDragging) return;\n            const clientX = (event.touches ? event.touches[0] : event).clientX;\n            let translateX = currentTranslateX + (clientX - startX);\n\n            translateX = Math.max(translateX, SLIDER_MAX_OFFSET);\n            translateX = Math.min(translateX, SLIDER_MIN_OFFSET);\n\n            applyTranslateX(translateX);\n\n            startX = clientX; \/\/ Restablecer startX a la posici\u00f3n actual\n        }\n\n\n        function onEnd() {\n            isDragging = false;\n            slider.classList.remove('grabbing');\n            slider.style.transition = 'transform 1s ease';\n        }\n\n        slider.addEventListener('mousedown', onStart);\n        slider.addEventListener('touchstart', onStart);\n        window.addEventListener('mousemove', onMove);\n        slider.addEventListener('touchmove', onMove);\n        window.addEventListener('mouseup', onEnd);\n        slider.addEventListener('touchend', onEnd);\n\n        const listItems = slider.querySelectorAll('li');\n        listItems.forEach((item, index) => {\n            item.addEventListener('click', function () {\n                if (index === 0) return;  \/\/ Ignorar el primer elemento\n                const offsetIndex = index - 1;\n                applyTranslateX(offsets[offsetIndex]);\n            });\n        });\n\n        if (localStorage.getItem('scrollPosition')) {\n            const savedOffset = parseInt(localStorage.getItem('scrollPosition'));\n            applyTranslateX(savedOffset);\n        }\n    });\n\n\n<\/script>\n\n\n<div class=\"team-leaders desktop\">\n    <div class=\"row-services\">\n        <img decoding=\"async\" class=\"floating-img-top\"\n            src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/team_leaders_icon_1.svg\" alt=\"\">\n        <h2 class=\"team-leaders-title\">\n            Team Leaders            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/p_arrow-right-svg.svg\"\n                alt=\"arrow logo\">\n        <\/h2>\n        <div class=\"team-leaders-container\">\n\n                                <div class=\"col-md-3 col-sm-12\">\n                        <div class=\"content\">\n                            <div class=\"team-leader-img-container\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/Nico-1.jpg\" alt=\"\"\n                                    class=\"team-leaders-img\">\n                            <\/div>\n                            <h3 class=\"team-leaders-name\">\n                                Nicol\u00e1s P\u00e9rez River\u00f3n                            <\/h3>\n                            <h4 class=\"team-leaders-job\">\n                                Head of SEO                            <\/h4>\n                            <a href=\"https:\/\/www.linkedin.com\/in\/nicper1992\/\"\n                            \n                            target=\"\"\n                                class=\"team-leaders-in\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/violet_linkedin.svg\"\n                                    alt=\"linkedin logo\">\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                            <\/div>\n\n        <img decoding=\"async\" class=\"floating-img-bottom\"\n            src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/team_leaders_icon_2.svg\" alt=\"\">\n\n    <\/div>\n<\/div>\n\n\n<div class=\"team-leaders mobile\">\n    <div class=\"row\">\n        <h2 class=\"team-leaders-title\">\n            Team Leaders            <img decoding=\"async\" class=\"arrow_mobile\"\n                src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/team_leaders_arrow.svg\"\n                alt=\"arrow logo\">\n        <\/h2>\n        <div class=\"team-leaders-container\">\n            <div class=\"expansive_arrows_container\">\n                <div class=\"expansive_arrow\">\n                    <a class=\"prev-tl\">\n                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/white_left_arrow.svg\"\n                            alt=\"arrow\" \/>\n                    <\/a>\n                <\/div>\n                <div class=\"expansive_arrow\">\n                    <a class=\"next-tl\">\n                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/white_right_arrow.svg\"\n                            alt=\"arrow\" \/>\n                    <\/a>\n                <\/div>\n            <\/div>\n            <div class=\"slideshow-container\">\n\n                                        <div class=\"mySlides fade\">\n                            <div class=\"col-md-3 col-sm-12\">\n                                <div class=\"content\">\n                                    <div class=\"team-leader-img-container\">\n                                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/Nico-1.jpg\" alt=\"\"\n                                            class=\"team-leaders-img\">\n                                    <\/div>\n                                    <h3 class=\"team-leaders-name\">\n                                        Nicol\u00e1s P\u00e9rez River\u00f3n                                    <\/h3>\n                                    <h4 class=\"team-leaders-job\">\n                                        Head of SEO                                    <\/h4>\n                                    <a href=\"https:\/\/www.linkedin.com\/in\/nicper1992\/\" target=\"\"\n                                        class=\"team-leaders-in\">\n                                        <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/violet_linkedin.svg\"\n                                            alt=\"linkedin logo\">\n                                    <\/a>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                                    <\/div>\n        <\/div>\n\n        <img decoding=\"async\" class=\"floating-img-bottom-mobile\"\n            src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/team_leaders_icon_2.svg\" alt=\"\">\n\n    <\/div>\n<\/div>\n\n\n<script>\n    document.addEventListener('DOMContentLoaded', function () {\n        var container = document.querySelector('.team-leaders-container');\n        var cards = container.children.length;\n\n        if (cards === 2) {\n            container.classList.add('space-around');\n        } else if (cards >= 3) {\n            container.classList.add('space-between');\n        } else if (cards === 1) {\n            container.classList.add('space-center');\n        }\n    });\n\n<\/script>\n\n\n<div class=\"services__block\">\n    <div class=\"services__container_sides\">\n        <div class=\"services__top_side\">\n            <div class=\"services__container\">\n                <div class=\"services__title_description\">\n                                            <h2>\n                            Services                        <\/h2>\n                                                                <p>\n                            For SEO clients                        <\/p>\n                                    <\/div>\n            <\/div>\n\n            <div class=\"services__bottom_right_side\">\n                                    <div class=\"services__bottom_left_side\">\n                        <div class=\"services__bottom_img\">\n                            <img decoding=\"async\" class=\"services__image\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Group-1872.svg\"\n                                alt=\"\" \/>\n                        <\/div>\n                    <\/div>\n                \n                <div class=\"container_items\">\n                                                <div class=\"item_container\">\n                                <div class=\"item expanded\">\n                                    <div class=\"container_title_icon expanded\">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Growth Marketing                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                Through our digital marketing service, we combine skills, disciplines, and analytical creativity to empower strategies that drive your growth, ensuring concrete results.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        KEYWORD RESEARCH                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We identify the most relevant keywords for your niche and business.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        On-Page Content                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                Once we identify the keywords, we create optimized texts to provide more context for the bot and the user.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Metrics Analysis                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We double-click on your site&#8217;s main metrics to understand its behavior and track it.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Internal Link Improvement                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We are meticulous in matters of indexing, crawling, and capturing users interested in our content.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        site architecture                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We propose changes in your site\u2019s structure that allow for improved user flow.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Content Structure                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We work on your site\u2019s meta tags to enhance the structure and interpretation of your content.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        CTW Enhancements                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We raise the average clicks based on SERP impressions.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        On-page Optimizations                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We optimize the structural, technical, and semantic aspects of all on-page content on your site.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Coverage                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We review and fix errors in indexed pages.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                                        <div class=\"item_container\">\n                                <div class=\"item \">\n                                    <div class=\"container_title_icon \">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Sitemap                                                    <\/h3>\n                                                                                            <\/div>\n\n                                        <\/div>\n\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\"\n                                                data-active-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow2.svg\"\n                                                data-inactive-src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\" \/>\n                                        <\/div>\n\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description\">\n                                            <p>\n                                                We structure your site\u2019s map to optimize its readability by automated campaign bots.\r\n                                            <\/p>\n                                        <\/div>\n                                                                                    <div style=\"width: 150px; margin-top: 20px; margin-bottom: 20px;\"><\/div>\n                                                                            <\/div>\n                                <\/div>\n                            <\/div>\n                                            <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<div class=\"service_methodology_cta_no_home\">\n    <div class=\"service-wit-benefits\">\n        <div class=\"wit-container-benefits\">\n            <div class=\"col-md-6 col-sm-12\">\n                <h2 class=\"wit-title\">\n                    why<br \/>\r\nimplement web readiness?                <\/h2>\n                <ul>\n                                            <li>\n                            <p>\n                                It allows you to improve the conversion rate and overall performance of your Google Ads campaigns. We raise the level of Google advertisers\u2019 properties.                            <\/p>\n                        <\/li>\n                                            <li>\n                            <p>\n                                We achieve real and measurable results.                            <\/p>\n                        <\/li>\n                                            <li>\n                            <p>\n                                We strategically empower your business through technical implementations and content improvements.                            <\/p>\n                        <\/li>\n                                    <\/ul>\n                <a href=\"https:\/\/www.growketing.com\/en\/contact\" target=\"\"><button>\n                        Let&#8217;s Talk                    <\/button><\/a>\n            <\/div>\n            <div class=\"col-md-6 col-sm-12\">\n                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/06\/web_readiness_benefits.svg\" alt=\"\">\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<div class=\"row-services\">\n    <div class=\"service-stories\">\n        <div class=\"stories-container\">\n                            <h2 class=\"stories-title\">\n                    SUCCESS STORIES                <\/h2>\n                                        <div class=\"col-md-9 align-left col-sm-12 card-stories-container\">\n                    <div class=\"success-storie-content-wrapper\">\n                        <div class=\"success-storie-content\">\n                                                            <div class=\"circle-container\">\n                                    <div class=\"circle-background\"><\/div>\n                                    <span class=\"circle-text\">\n                                        Expansive Experiences:                                    <\/span>\n                                <\/div>\n                                                                                    <div class=\"story-card-wrapper\">\n                                <div class=\"col-md-12 col-sm-12 story-card\">\n                                    <div class=\"storie-header\">\n                                                                                <h3 class=\"storie-title\">\n                                            CardCookie                                        <\/h3>\n                                    <\/div>\n                                                                            <p class=\"storie-excerpt\">\n                                            El re-vendedor online de tarjetas de regalo (Giftcards) con descuento de EE. UU. nos contact\u00f3 para ayudarlos a expandir su negocio y ser menos dependientes de otros vendedores m\u00e1s grandes e importantes.                                        <\/p>\n                                                                        <a href=\"https:\/\/www.growketing.com\/portfolio\/card-cookie\/\" target=\"\"><button>\n                                            See more                                        <\/button><\/a>\n                                <\/div>\n                            <\/div>\n\n                                                            <div class=\"col-md-12 stories-counter story-card\">\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                +3290%                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">de Tr\u00e1fico org\u00e1nico<\/span><\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X10                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">Ingresos<\/span><\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X21.17                                            <\/h3>\n                                            <p>ROAS<\/p>\n                                        <\/div>\n                                                                    <\/div>\n                                                    <\/div>\n                    <\/div>\n                <\/div>\n                            <div class=\"col-md-9 align-right col-sm-12 card-stories-container\">\n                    <div class=\"success-storie-content-wrapper\">\n                        <div class=\"success-storie-content\">\n                                                                                    <div class=\"story-card-wrapper\">\n                                <div class=\"col-md-12 col-sm-12 story-card\">\n                                    <div class=\"storie-header\">\n                                                                                <h3 class=\"storie-title\">\n                                            Mi Belleza                                        <\/h3>\n                                    <\/div>\n                                                                            <p class=\"storie-excerpt\">\n                                             It is a new beauty, makeup, cosmetics, and personal care ecommerce platform in Uruguay.\r\n                                        <\/p>\n                                                                        <a href=\"https:\/\/www.growketing.com\/en\/portfolio\/mi-belleza\/\" target=\"\"><button>\n                                            See more                                        <\/button><\/a>\n                                <\/div>\n                            <\/div>\n\n                                                            <div class=\"col-md-12 stories-counter story-card\">\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X15                                            <\/h3>\n                                            <p>Sales<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X7                                            <\/h3>\n                                            <p>Conversion Rate<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X13                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">ROAS compared to the best month of the year<\/span><\/p>\n                                        <\/div>\n                                                                    <\/div>\n                                                    <\/div>\n                    <\/div>\n                <\/div>\n                            <div class=\"col-md-9 align-left col-sm-12 card-stories-container\">\n                    <div class=\"success-storie-content-wrapper\">\n                        <div class=\"success-storie-content\">\n                                                                                    <div class=\"story-card-wrapper\">\n                                <div class=\"col-md-12 col-sm-12 story-card\">\n                                    <div class=\"storie-header\">\n                                                                                <h3 class=\"storie-title\">\n                                            Worldsys                                        <\/h3>\n                                    <\/div>\n                                                                            <p class=\"storie-excerpt\">\n                                            It is the leading Regtech company providing solutions for regulatory compliance.                                        <\/p>\n                                                                        <a href=\"https:\/\/www.growketing.com\/en\/portfolio\/worldsys\/\" target=\"\"><button>\n                                            See more                                        <\/button><\/a>\n                                <\/div>\n                            <\/div>\n\n                                                            <div class=\"col-md-12 stories-counter story-card\">\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X15                                            <\/h3>\n                                            <p>Organic Keywords 1-3<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X8                                            <\/h3>\n                                            <p>Organic Keywords 4-10<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                +17                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">Domain Rating Points<\/span><\/p>\n                                        <\/div>\n                                                                    <\/div>\n                                                    <\/div>\n                    <\/div>\n                <\/div>\n                    <\/div>\n        <div class=\"clear-both\"><\/div>\n    <\/div>\n<\/div>\n\n\n\n\n<div class=\"faqs_border\">\n    <div class=\"services__block row-services faqs\">\n        <div class=\"services__container_sides\">\n            <div class=\"services__top_side\">\n                <div class=\"services__container\">\n                    <div class=\"services__title_description\">\n                                                    <h2>\n                                FAQS                            <\/h2>\n                                            <\/div>\n                                                <div class=\"item_container\">\n                                <div class=\"item\">\n                                    <div class=\"container_title_icon\">\n                                        <div class=\"service_title\">\n                                            <h3>\n                                                What is a Sitemap?                                            <\/h3>\n                                        <\/div>\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\" \/>\n                                        <\/div>\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description faq-descriptions\">\n                                            <p>\n                                                A sitemap is a file that lists all the pages of a website, helping search engines index and understand its structure.                                            <\/p>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                    <div class=\"item_container\">\n                                <div class=\"item\">\n                                    <div class=\"container_title_icon\">\n                                        <div class=\"service_title\">\n                                            <h3>\n                                                What is keyword research?                                            <\/h3>\n                                        <\/div>\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\" \/>\n                                        <\/div>\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description faq-descriptions\">\n                                            <p>\n                                                Keyword research is a research process to identify and select relevant keywords for an SEO and digital marketing strategy.                                            <\/p>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                                    <div class=\"item_container\">\n                                <div class=\"item\">\n                                    <div class=\"container_title_icon\">\n                                        <div class=\"service_title\">\n                                            <h3>\n                                                How to work on site architecture?                                            <\/h3>\n                                        <\/div>\n                                        <div class=\"arrow_container\">\n                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/Arrow1.svg\"\n                                                alt=\"arrow\" class=\"arrow\" \/>\n                                        <\/div>\n                                    <\/div>\n\n                                    <div class=\"container_description_button\">\n                                        <div class=\"service_description faq-descriptions\">\n                                            <p>\n                                                To work on site architecture, you need to design a clear and logical structure, prioritize usability and user experience, and ensure that important pages are easily accessible.                                            <\/p>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                                        <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n\n<div class=\"custom-line\"><\/div>\n<div class=\"cta_contact_block\">\n    <div class=\"cta_contact_container\">\n        <div class=\"cta_contact_content\">\n            <div class=\"cta_contact_title\">\n                <p>Ready to<br \/>\nGrow?<\/p>\n            <\/div>\n            <div class=\"cta_contact_description\">\n                <p>Tell us about your business and let&#8217;s find the way to maximize it.<\/p>\n            <\/div>\n            <div class=\"cta_contact_img\">\n                                    <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Group-1668.svg\" alt=\"\" \/>\n                            <\/div>\n        <\/div>\n        <div class=\"container_form\">\n            \n<div class=\"wpcf7 no-js\" id=\"wpcf7-f21191-o1\" lang=\"en-US\" dir=\"ltr\">\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\/17395#wpcf7-f21191-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<div style=\"display: none;\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"21191\" \/>\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.9.4\" \/>\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/>\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f21191-o1\" \/>\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/>\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/div>\n<style type=\"text\/css\">\n.wpcf7-form p{\n width: 100%\n}\n\n#hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .input input{\n border: 1px solid var(--light-grey);\n border-radius: 5px;\n font-size: 19px;\n margin-bottom: 0;\n margin-top: 25px;\n padding: 10px 10px 10px 15px;\n width: 100%;\n}\n#hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 input:focus {\n outline: none;\n border: 1px solid var(--green-fluor);\n}\n#hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 p {\n width: 100%;\n}\n#hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 input::placeholder {\n color: var(--grey-message);\n font-size: 19px;\n}\n\n#hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .hs_servicio_solicitado{\n font-size: 19px;\n margin-top: 20px;\n padding-bottom: 10px;\n display: block;\n width: 90%;\n margin-left: auto;\n margin-right: auto;\n}\n \n#label-servicio_solicitado-73086ee2-1eef-487a-9c5c-92ec0a5b1b45{\n color: #515a54;\n padding-bottom: 10px;\n display: block;\n width: 100%;\n border-bottom: 1px solid rgb(233, 235, 234) !important;\n}\n \n.hs-form-checkbox label input{\n \/* color: inherit; *\/\n font-family: inherit;\n font-size: 100%;\n font-weight: inherit;\n line-height: inherit;\n margin: 0;\n margin-right: 8px!important;\n width: auto!important;\n}\n\n.hs-form-checkbox label span{\n font-size:15px!important\n}\n\n#hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .hs_cuentanos_de_tu_compa_a textarea{\n border: 1px solid var(--light-grey);\n border-radius: 5px;\n font-size: 19px;\n height: 150px;\n margin-top: 15px;\n padding-left: 10px;\n padding-right: 10px;\n width: 100%;\n}\n\n#hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 textarea:focus {\n outline: none;\n border: 1px solid var(--green-fluor);\n}\n\n#hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 textarea::placeholder {\n color: var(--grey-message);\n font-size: 19px;\n}\n\n.hs-error-msg {\n\tcolor: #dc3232; \/* Red *\/\n\tfont-size: 1em;\n\tfont-weight: normal;\n\tdisplay: block;\n}\n\n#hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .hs-button{\n border: 1px solid var(--green);\n border-radius: 8px;\n color: var(--green);\n display: flex;\n font-size: 19px;\n margin-top: 40px;\n padding: 5px 30px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (max-width: 767px){\n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .hs-form-checkbox label input{\n \/* color: inherit; *\/\n font-family: inherit;\n font-size: 30px!important;\n height: 1em!important;\n margin: 0!important;\n margin-right: 4px!important;\n width: 1em!important;\n height: 0.7em!important;\n\n } \n \n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .hs-form-checkbox label span{\n font-size:30px!important;\n color: var(--grey-message);\n }\n\n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 input,\n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 textarea {\n border-radius: 10px!important;\n font-size: 30px!important;\n height: 3em!important;\n margin-bottom: 15px!important;\n padding: 0px 20px!important;\n width: 100%!important;\n }\n .hs-error-msg {\n\tfont-size: 30px!important;\n\tfont-weight: normal;\n }\n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 input::placeholder,\n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 textarea::placeholder{\n font-size: 30px!important;\n }\n \n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 textarea::placeholder{\n height: 150px;!important;\n }\n \n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .hs-button{\n border: 2px solid var(--green)!important;\n border-radius: 15px!important;\n color: var(--green)!important;\n margin-top: 150px!important;\n height: 2em!important;\n font-size: 30px!important;\n width: auto!important;\n padding: 0px 2em!important;\n }\n \n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .hs_servicio_solicitado{\n font-size: 30px!important;\n width: 90%!important;\n }\n \n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .hs_cuentanos_de_tu_compa_a hs-cuentanos_de_tu_compa_a{\n height:7.3em!important;\n }\n #hsForm_73086ee2-1eef-487a-9c5c-92ec0a5b1b45 .hs_cuentanos_de_tu_compa_a textarea{\n height: 10em!important;\n resize: vertical!important;\n vertical-align: text-top;\n }\n\n\n}\n<\/style>\n<p><script charset=\"utf-8\" type=\"text\/javascript\" src=\"\/\/js.hsforms.net\/forms\/embed\/v2.js\"><\/script><br \/>\n<script>\n hbspt.forms.create({\n region: \"na1\",\n portalId: \"9474669\",\n formId: \"73086ee2-1eef-487a-9c5c-92ec0a5b1b45\"\n });\n<\/script>\n<\/p>\n<p><script>\nvar inputDiv = document.querySelector('.hs_servicio_solicitado .input');\nvar hrElement = document.createElement('hr');\n\ninputDiv.parentNode.insertBefore(hrElement, inputDiv);\n<\/script>\n<\/p><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.5.1\/jquery.min.js\"><\/script>\n\n<script>\n    $(document).ready(function () {\n        $(\".wpcf7-form-control-wrap input\").each(function () {\n            if ($(this).attr(\"size\") == \"40\") {\n                $(this).attr(\"size\", \"50\");\n            }\n        });\n    });\n\n    document.addEventListener(\"DOMContentLoaded\", function () {\n        var mainElement = document.querySelector('main');\n        var bodyElement = document.querySelector('body');\n\n        if (mainElement && bodyElement) {\n            var classToHideElement = mainElement.querySelector('.custom-line');\n\n            if (classToHideElement) {\n\n                if (!bodyElement.classList.contains('home')) {\n                    classToHideElement.style.display = 'block';\n                } else {\n                    classToHideElement.style.display = 'none';\n                }\n            }\n        }\n    });\n\n<\/script>\n\n<style>\n    .custom-line {\n        box-sizing: border-box;\n        width: 100%;\n        left: 50%;\n        right: 50%;\n        margin-right: -50vw;\n        height: 0;\n        border-top: 1px solid #d3d3d3;\n        margin-bottom: 20px;\n        margin-top: 100px;\n    }\n\n    .cta_contact_container {\n        display: flex;\n        justify-content: space-between;\n    }\n\n    .cta_contact_content {\n        flex: 1;\n    }\n\n    .container_form {\n        flex: 1;\n    }\n<\/style>\n\n<div id=\"message-bar\" class=\"message_block\">\n    <div class=\"message-bar_stars\">\n                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/five_stars.svg\" \/>\n    <\/div>\n            <div class=\"message-bar_message\">\n            <p>We are one of the 3 agencies in LATAM participating in <strong>Google&#8217;s International Growth Agency Program.<\/strong><\/p>\n        <\/div>\n                <a href=\"https:\/\/www.growketing.com\/en\/contact\" target=\"\" class=\"message-bar_link\">\n            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/GreenArrow.svg\" \/>\n        <\/a>\n    <\/div>\n\n\n<div class=\"logo-repeater\">\n    <div class=\"marquee-wrapper\">\n        <div class=\"marquee-content\">\n                                    <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Google-Partner-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Meta-Business-Partner-4.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Facebook-Blueprint-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Great-Place-to-Work-2023-1.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Premier-Partner-Awards-1.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Crecimiento-Internacional-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Hubspot-4.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Google-Analytics-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Looker-Studio-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Sendinblue-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Bing-4.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Google-Partner-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Meta-Business-Partner-4.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Facebook-Blueprint-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Great-Place-to-Work-2023-1.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Premier-Partner-Awards-1.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Crecimiento-Internacional-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Hubspot-4.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Google-Analytics-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Looker-Studio-2.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Sendinblue-3.jpg\" alt=\"\">\n                        <\/div>\n                                            <div class=\"carrusel-img-cont\">\n                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/Bing-4.jpg\" alt=\"\">\n                        <\/div>\n                            <\/div>\n    <\/div>\n<\/div>\n\n    <div class=\"footer-expansive\">\n        <div class=\"footer-expansive-title-arrows\">\n            <div class=\"title_arrows_container\">\n                <div class=\"test\">\n                    <div class=\"expansive_title\">\n                        <h2>Expansive<\/h2>\n<h2>Words<\/h2>\n                    <\/div>\n\n                   \n\n                    <div class=\"expansive_arrows_container\">\n                        <img decoding=\"async\" class=\"expansive_arrow left\" data-direction=\"-1\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/left_arrow.svg\" alt=\"arrow\" \/>\n\n                        <img decoding=\"async\" class=\"expansive_arrow right\" data-direction=\"1\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/right_arrow.svg\" alt=\"arrow\" \/>\n                    <\/div>\n\n                <\/div>\n            <\/div>\n        <\/div>\n\n\n        <div class=\"footer-expansive-cards-container\">\n            \n                <div id=\"card0\" class=\"footer-expansive-card\">\n                    <div class=\"card_imgs\">\n                                                    <img decoding=\"async\" class=\"background_img\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/background-img-testimonial.svg\" \/>\n                            <img decoding=\"async\" class=\"card_img\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/envoys.jpg\" \/>\n                                                                            <div class=\"logo_card\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/envoys-logo.jpg\" \/>\n                            <\/div>\n                                            <\/div>\n                    <div class=\"card_text\">\n                        <h2>\n                            From the moment we started working with Growketing, the team made it clear that our satisfaction was their highest priority. Their clear communication and positive attitude contribute to a harmonious partnership.                        <\/h2>\n                    <\/div>\n                    <div class=\"name_company_container\">\n                        <p>Angela Gomez<\/p>\n                                                    <p class=\"card_company\">\u2014\n                                Envoys                            <\/p>\n                                            <\/div>\n                <\/div>\n            \n                <div id=\"card3\" class=\"footer-expansive-card\">\n                    <div class=\"card_imgs\">\n                                                    <img decoding=\"async\" class=\"background_img\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/background-img-testimonial.svg\" \/>\n                            <img decoding=\"async\" class=\"card_img\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/virgin.jpg\" \/>\n                                                                            <div class=\"logo_card\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/07\/virgin-logo.jpg\" \/>\n                            <\/div>\n                                            <\/div>\n                    <div class=\"card_text\">\n                        <h2>\n                            A committed agency to its clients. It consistently bases its proposals on the latest industry trends.                         <\/h2>\n                    <\/div>\n                    <div class=\"name_company_container\">\n                        <p>Arturo Garcia<\/p>\n                                                    <p class=\"card_company\">\u2014\n                                Virgin Mobile                            <\/p>\n                                            <\/div>\n                <\/div>\n            \n                <div id=\"card4\" class=\"footer-expansive-card\">\n                    <div class=\"card_imgs\">\n                                                    <img decoding=\"async\" class=\"background_img\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/background-img-testimonial.svg\" \/>\n                            <img decoding=\"async\" class=\"card_img\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/06\/mandao.jpg\" \/>\n                                                                            <div class=\"logo_card\">\n                                <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/06\/mandao-logo.jpg\" \/>\n                            <\/div>\n                                            <\/div>\n                    <div class=\"card_text\">\n                        <h2>\n                            Growketing has a magnificent team that is highly collaborative with our business. They provide solutions and recommendations that are tailored to our needs.\n                        <\/h2>\n                    <\/div>\n                    <div class=\"name_company_container\">\n                        <p>Claudia Cuevas<\/p>\n                                                    <p class=\"card_company\">\u2014\n                                Mandao                            <\/p>\n                                            <\/div>\n                <\/div>\n                    <\/div>\n    <\/div>\n\n<script>\n    jQuery(document).ready(function() {\n\n        var container = jQuery('.footer-expansive-cards-container');\n        var dragging = false;\n        var startX;\n        var threshold = 100; \/\/ Umbral en p\u00edxeles\n\n        function startDrag(e) {\n            dragging = true;\n            startX = e.type === 'touchstart' ? e.originalEvent.touches[0].clientX : e.clientX;\n            container.addClass('grabbing');\n        }\n\n        function moveDrag(e) {\n            if (dragging) {\n                var clientX = e.type === 'touchmove' ? e.originalEvent.touches[0].clientX : e.clientX;\n                var diff = clientX - startX;\n                if (Math.abs(diff) > threshold) {\n                    var direction = diff < 0 ? 1 : -1;\n                    var displayCount = getDisplayCount();\n                    currentCard = (currentCard + direction * displayCount + cardCount) % cardCount;\n                    showCards(currentCard);\n                    dragging = false; \/\/ Finaliza el arrastre\n                }\n            }\n        }\n\n        function endDrag() {\n            dragging = false;\n            container.removeClass('grabbing');\n        }\n\n        \/\/ Eventos para el mouse\n        container.on('mousedown', startDrag);\n        jQuery(document).on('mousemove', moveDrag);\n        jQuery(document).on('mouseup', endDrag);\n\n        \/\/ Eventos para el tacto\n        container.on('touchstart', startDrag);\n        jQuery(document).on('touchmove', moveDrag);\n        jQuery(document).on('touchend', endDrag);\n    });\n\n\n\n    var cards = jQuery('.footer-expansive-card');\n    var cardCount = cards.length;\n    var currentCard = 0;\n\n    cards.sort(function(a, b) {\n        return parseInt(jQuery(a).attr('id').substring(4)) - parseInt(jQuery(b).attr('id').substring(4));\n    });\n\n    function getDisplayCount() {\n        var width = jQuery(window).width();\n        return width <= 768 ? 1 : 4;\n    }\n\n    function showCards(startIndex) {\n        var displayCount = getDisplayCount();\n        cards.hide();\n        cards.slice(startIndex, startIndex + displayCount).each(function(index, card) {\n            jQuery(card).css('margin-bottom', '');\n            if (index % 2 != 0) {\n                jQuery(card).css('margin-bottom', '80px');\n            }\n        }).show();\n    }\n\n    showCards(currentCard);\n\n    jQuery('.expansive_arrows_container').on('click', '.expansive_arrow', function() {\n        var direction = parseInt(jQuery(this).data('direction'), 10);\n        var displayCount = getDisplayCount();\n\n        currentCard = (currentCard + direction * displayCount + cardCount) % cardCount;\n        showCards(currentCard);\n    });\n\n    jQuery(window).resize(function() {\n        showCards(currentCard);\n    });\n<\/script>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":17337,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-service.php","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"class_list":["post-17395","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Web Readiness | Growketing<\/title>\n<meta name=\"description\" content=\"We optimize your website and boost the performance of your paid campaigns. At Growketing, we&#039;re experts in boosting businesses, contact us!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.growketing.com\/en\/services\/web-readiness\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Web Readiness | Growketing\" \/>\n<meta property=\"og:description\" content=\"We optimize your website and boost the performance of your paid campaigns. At Growketing, we&#039;re experts in boosting businesses, contact us!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.growketing.com\/en\/services\/web-readiness\/\" \/>\n<meta property=\"og:site_name\" content=\"Growketing\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-23T16:32:48+00:00\" \/>\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:\/\/www.growketing.com\/en\/services\/web-readiness\/\",\"url\":\"https:\/\/www.growketing.com\/en\/services\/web-readiness\/\",\"name\":\"Web Readiness | Growketing\",\"isPartOf\":{\"@id\":\"https:\/\/www.growketing.com\/en\/#website\"},\"datePublished\":\"2023-04-25T00:23:25+00:00\",\"dateModified\":\"2024-07-23T16:32:48+00:00\",\"description\":\"We optimize your website and boost the performance of your paid campaigns. At Growketing, we're experts in boosting businesses, contact us!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/web-readiness\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.growketing.com\/en\/services\/web-readiness\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.growketing.com\/en\/services\/web-readiness\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Services\",\"item\":\"https:\/\/new.growketing.com\/en\/services\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Web Readiness\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.growketing.com\/en\/#website\",\"url\":\"https:\/\/www.growketing.com\/en\/\",\"name\":\"Growketing\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.growketing.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.growketing.com\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.growketing.com\/en\/#organization\",\"name\":\"Growketing\",\"url\":\"https:\/\/www.growketing.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.growketing.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"\/wp-content\/uploads\/2023\/06\/green_logo.svg\",\"contentUrl\":\"\/wp-content\/uploads\/2023\/06\/green_logo.svg\",\"width\":1,\"height\":1,\"caption\":\"Growketing\"},\"image\":{\"@id\":\"https:\/\/www.growketing.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/growketing\/\",\"https:\/\/www.instagram.com\/growketing\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Web Readiness | Growketing","description":"We optimize your website and boost the performance of your paid campaigns. At Growketing, we're experts in boosting businesses, contact us!","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:\/\/www.growketing.com\/en\/services\/web-readiness\/","og_locale":"en_US","og_type":"article","og_title":"Web Readiness | Growketing","og_description":"We optimize your website and boost the performance of your paid campaigns. At Growketing, we're experts in boosting businesses, contact us!","og_url":"https:\/\/www.growketing.com\/en\/services\/web-readiness\/","og_site_name":"Growketing","article_modified_time":"2024-07-23T16:32:48+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.growketing.com\/en\/services\/web-readiness\/","url":"https:\/\/www.growketing.com\/en\/services\/web-readiness\/","name":"Web Readiness | Growketing","isPartOf":{"@id":"https:\/\/www.growketing.com\/en\/#website"},"datePublished":"2023-04-25T00:23:25+00:00","dateModified":"2024-07-23T16:32:48+00:00","description":"We optimize your website and boost the performance of your paid campaigns. At Growketing, we're experts in boosting businesses, contact us!","breadcrumb":{"@id":"https:\/\/www.growketing.com\/en\/services\/web-readiness\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.growketing.com\/en\/services\/web-readiness\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.growketing.com\/en\/services\/web-readiness\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Services","item":"https:\/\/new.growketing.com\/en\/services\/"},{"@type":"ListItem","position":2,"name":"Web Readiness"}]},{"@type":"WebSite","@id":"https:\/\/www.growketing.com\/en\/#website","url":"https:\/\/www.growketing.com\/en\/","name":"Growketing","description":"","publisher":{"@id":"https:\/\/www.growketing.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.growketing.com\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.growketing.com\/en\/#organization","name":"Growketing","url":"https:\/\/www.growketing.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.growketing.com\/en\/#\/schema\/logo\/image\/","url":"\/wp-content\/uploads\/2023\/06\/green_logo.svg","contentUrl":"\/wp-content\/uploads\/2023\/06\/green_logo.svg","width":1,"height":1,"caption":"Growketing"},"image":{"@id":"https:\/\/www.growketing.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/growketing\/","https:\/\/www.instagram.com\/growketing\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17395","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/comments?post=17395"}],"version-history":[{"count":3,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17395\/revisions"}],"predecessor-version":[{"id":23406,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17395\/revisions\/23406"}],"up":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17337"}],"wp:attachment":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/media?parent=17395"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}