{"id":17391,"date":"2023-04-25T00:22:03","date_gmt":"2023-04-25T00:22:03","guid":{"rendered":"http:\/\/www.growketing.com\/services\/seo\/"},"modified":"2024-07-23T16:30:37","modified_gmt":"2024-07-23T16:30:37","slug":"seo","status":"publish","type":"page","link":"https:\/\/www.growketing.com\/en\/services\/seo\/","title":{"rendered":"SEO"},"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\/seo\/'>\n                        SEO                    <\/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\/revenue-operations\/'>\n                        Revenue Operations                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/web-readiness\/'>\n                        Web Readiness                    <\/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                    SEO WEB POSITIONING                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/seo.svg\" alt=\"\">\n                                    <\/h1>\n                <p class=\"service-description\">\n                    As a SEO agency, we enhance your organic search engine ranking, elevating your digital presence and driving high-quality traffic to your website. \r\n                <\/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\/seo.svg\" alt=\"\">\n                <\/div>\n\n                <div class=\"col-md-6 col-sm-12\">\n                    <h2 class=\"wit-title\">\n                        What is SEO?                    <\/h2>\n                    <p class=\"wit-description\">\n                        We work on SEO from a Growth Marketing approach. We not only increase your website traffic but also ensure to generate quality visits. For that, we conduct a site audit, identify user needs and research the most relevant keywords in the industry. With our SEO techniques, your website will be well understood and therefore promoted by Google. \r\n                    <\/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-1871.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                                                Inside any SEO agency, detecting the most relevant keywords is a top priority. We have a highly qualified SEO team that will find all the keywords you need for your business and niche.                                            <\/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                                                        CTR Improvements                                                    <\/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                                                As a SEO positioning agency, we enhance the main SEO metrics, including Click Through Rate.                                            <\/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                                                        Original Topic Creation                                                    <\/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 analyze, optimize, and create content pillars focused on generating interest among users.\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                                                        Thorough Editing                                                    <\/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 a SEO specialized agency, so we pay close attention to detail when editing content. The SEO service we offer is serious, objective, and based on best-practices. \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 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\/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                                                Based on the keyword analysis, we apply a SEO strategy with which we generate optimized texts that address what users are searching for. \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 on-page 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                                                        Off-Page Improvements                                                    <\/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 implement Off-Page improvements across various sites. taking the necessary steps to attract new users.\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                                                        Link Building                                                    <\/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 focus on the internal linking system of websites to achieve the best level of visibility with search engines.\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                                                        Domain Improvements                                                    <\/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 employ various tactics to improve Domain Rating and position ourselves as industry authority.\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                                                        Stronger Data and 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 aim to delve deep into data to provide a clear direction for our partner\u2019s campaigns.\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 Improvements                                                    <\/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                                                As a SEO positioning agency, we are meticulous in matters of indexing, tracking, and attracting users interested in 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                                                        Web performance                                                    <\/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 enhance all possible aspects of web performance for websites.\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                                                        SEO Audit                                                    <\/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 thoroughly analyze the different aspects that affect the organic ranking of a website and we identify applicable improvement opportunities.                                             <\/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                                                        SEO Consultancy                                                    <\/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                                                Our SEO consultants optimize your web page with the goal of attracting traffic to them and improving your website&#8217;s overall ranking.                                             <\/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                                                        SEO Programs                                                    <\/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                                                As a SEO agency, we develop and implement SEO optimization projects, in order to achieve and surpass concrete goals. \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                                                        SEO for Ecommerce                                                    <\/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 design SEO strategies to boost local &amp; international Ecommerce sites. We optimize buying &amp; selling channels for our partners to grow. \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                                                        SEO for Business                                                    <\/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 increase the visibility of our partners, connecting them to interested users, thanks to the position in several Google tools and platforms such as the finder, Google Maps, Google My Business, and more. \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                                                        SEO Global                                                    <\/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 create SEO positioning strategies for international websites that operate in several countries or languages.\r\n\r\n\r\n\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                                                        Migrations                                                    <\/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 plan and execute website migrations because of domain changes, technology upgrades, design or content modifications, in a chaos-free way. \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                                                        SEO Infractions                                                    <\/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                                                The penalizations for infractions, and other related problems, impact on the visibility of the site. Our team detects and solves any issue that arises so that your website continues to grow. \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                                                        SEO Media                                                    <\/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 develop a SEO strategy to enhance media &amp; press websites. \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                                                        SEO Quotation                                                    <\/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 provide quotations for SEO plans that take into account all project variables: the market and its competition, the budget, keywords, the current website, external links, and more. The is no one-size-fits-all package, and as a SEo agency, we determine a price for each client and each project. \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 SEO?                <\/h2>\n                <ul>\n                                            <li>\n                            <p>\n                                To position your website organically.                            <\/p>\n                        <\/li>\n                                            <li>\n                            <p>\n                                To generate continuous and genuine traffic, reducing Google Ads costs.                            <\/p>\n                        <\/li>\n                                            <li>\n                            <p>\n                                To maximize the reach to potential customers.\r\n                            <\/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\/seo_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                    Case Studies                <\/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 does an SEO agency do?                                            <\/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                                                An SEO agency is dedicated to enhancing websites and all communication for their clients through a series of strategies that improve their visibility in search engines such as Google, Bing, etc.                                             <\/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 can an SEO agency do for me?                                            <\/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                                                Having an SEO agency as an ally ensures that every effort in digital communication reaches its maximum potential. To avoid investing money in actions that don\u2019t produce the expected results in conversion, awareness, etc., an SEO agency will ensure error correction and channel messages with comprehensive strategies. \n                                            <\/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 SEO positioning?                                            <\/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                                                SEO positioning refers to the position that websites occupy within search engines and the level of visibility they have to users. Through specific techniques and strategies, a brand or business can significantly improve their SEO positioning in order to appear more effectively to their target audience.                                             <\/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 optimize my website with SEO?                                            <\/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                                                There are several strategies and actions you can take to improve your SEO positioning. These include updating content, organizing it in a specific way so as to answer people\u2019s questions, paying attention to keywords and images, and much more. \n\n\n                                            <\/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<\/p>\n<p>Grow?<\/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\/17391#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":21505,"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-17391","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Growth SEO - Web Positioning Service | Growketing<\/title>\n<meta name=\"description\" content=\"Boost your business with our web positioning service! We are an SEO agency with experts who will enhance your visibility on search engines.\" \/>\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\/seo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Growth SEO - Web Positioning Service | Growketing\" \/>\n<meta property=\"og:description\" content=\"Boost your business with our web positioning service! We are an SEO agency with experts who will enhance your visibility on search engines.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.growketing.com\/en\/services\/seo\/\" \/>\n<meta property=\"og:site_name\" content=\"Growketing\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-23T16:30:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/SEO-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.growketing.com\/en\/services\/seo\/\",\"url\":\"https:\/\/www.growketing.com\/en\/services\/seo\/\",\"name\":\"Growth SEO - Web Positioning Service | Growketing\",\"isPartOf\":{\"@id\":\"https:\/\/www.growketing.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/seo\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/seo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/SEO-scaled.jpg\",\"datePublished\":\"2023-04-25T00:22:03+00:00\",\"dateModified\":\"2024-07-23T16:30:37+00:00\",\"description\":\"Boost your business with our web positioning service! We are an SEO agency with experts who will enhance your visibility on search engines.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/seo\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.growketing.com\/en\/services\/seo\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.growketing.com\/en\/services\/seo\/#primaryimage\",\"url\":\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/SEO-scaled.jpg\",\"contentUrl\":\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/SEO-scaled.jpg\",\"width\":2560,\"height\":1440},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.growketing.com\/en\/services\/seo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Services\",\"item\":\"https:\/\/new.growketing.com\/en\/services\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SEO\"}]},{\"@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":"Growth SEO - Web Positioning Service | Growketing","description":"Boost your business with our web positioning service! We are an SEO agency with experts who will enhance your visibility on search engines.","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\/seo\/","og_locale":"en_US","og_type":"article","og_title":"Growth SEO - Web Positioning Service | Growketing","og_description":"Boost your business with our web positioning service! We are an SEO agency with experts who will enhance your visibility on search engines.","og_url":"https:\/\/www.growketing.com\/en\/services\/seo\/","og_site_name":"Growketing","article_modified_time":"2024-07-23T16:30:37+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/SEO-scaled.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.growketing.com\/en\/services\/seo\/","url":"https:\/\/www.growketing.com\/en\/services\/seo\/","name":"Growth SEO - Web Positioning Service | Growketing","isPartOf":{"@id":"https:\/\/www.growketing.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.growketing.com\/en\/services\/seo\/#primaryimage"},"image":{"@id":"https:\/\/www.growketing.com\/en\/services\/seo\/#primaryimage"},"thumbnailUrl":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/SEO-scaled.jpg","datePublished":"2023-04-25T00:22:03+00:00","dateModified":"2024-07-23T16:30:37+00:00","description":"Boost your business with our web positioning service! We are an SEO agency with experts who will enhance your visibility on search engines.","breadcrumb":{"@id":"https:\/\/www.growketing.com\/en\/services\/seo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.growketing.com\/en\/services\/seo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.growketing.com\/en\/services\/seo\/#primaryimage","url":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/SEO-scaled.jpg","contentUrl":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/SEO-scaled.jpg","width":2560,"height":1440},{"@type":"BreadcrumbList","@id":"https:\/\/www.growketing.com\/en\/services\/seo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Services","item":"https:\/\/new.growketing.com\/en\/services\/"},{"@type":"ListItem","position":2,"name":"SEO"}]},{"@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\/17391","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=17391"}],"version-history":[{"count":3,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17391\/revisions"}],"predecessor-version":[{"id":23404,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17391\/revisions\/23404"}],"up":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17337"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/media\/21505"}],"wp:attachment":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/media?parent=17391"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}