{"id":17465,"date":"2023-07-26T16:25:47","date_gmt":"2023-07-26T16:25:47","guid":{"rendered":"http:\/\/www.growketing.com\/services\/revenue-operations\/"},"modified":"2024-07-23T16:29:37","modified_gmt":"2024-07-23T16:29:37","slug":"revenue-operations","status":"publish","type":"page","link":"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/","title":{"rendered":"Revenue Operations"},"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\/revenue-operations\/'>\n                        Revenue Operations                    <\/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\/growth-marketing\/'>\n                        Growth Marketing                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/data-analytics\/'>\n                        Data &amp; AI                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/seo\/'>\n                        SEO                    <\/a>\n                <\/li>\n                            <li class=\"\">\n                    <a href='https:\/\/www.growketing.com\/en\/services\/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                    Revenue Operations                                            <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/08\/emailMarketing.svg\" alt=\"\">\n                                    <\/h1>\n                <p class=\"service-description\">\n                    Our Revenue Operations service develops a strategy that aims to improve not only revenue but also profitability. We break down silos and integrate sales, marketing, and customer success actions to maximize revenue. \r\n                <\/p>\n                <a href=\"http:\/\/www.growketing.com\/contacto\/\" target=\"\"><button>\n                        Let&#8217;s connect                    <\/button><\/a>\n            <\/div>\n        <\/div>\n\n        <div class=\"container-spinner\">\n            <div class=\"floating-img-container\">\n                <img decoding=\"async\" class=\"floating-img\"\n                    src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/grow-data.svg\" alt=\"\">\n                <div class=\"spinner-inside\">\n                    <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/themes\/growketing\/resources\/images\/grow-inside.svg\"\n                        alt=\"Inside Spinner\">\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div class=\"spacer\"><\/div>\n\n    <div class=\"service_methodology_cta_no_home\">\n        <div class=\"service-wit\">\n            <div class=\"wit-container\">\n                <div class=\"col-md-6 col-sm-12\">\n                    <img decoding=\"async\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/06\/web_readiness.svg\" alt=\"\">\n                <\/div>\n\n                <div class=\"col-md-6 col-sm-12\">\n                    <h2 class=\"wit-title\">\n                        What is Revenue Operations?                    <\/h2>\n                    <p class=\"wit-description\">\n                        Revenue Operations involves concrete, collaborative actions across different areas of a company to enhance profitability. It&#8217;s about aligning different teams and their objectives, promoting data transparency to reduce friction, and increasing the speed of growth.\r\n                    <\/p>\n                    <a href=\"http:\/\/www.growketing.com\/contacto\/\" 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\/08\/Matias-Carrillat-1.jpg\" alt=\"\"\n                                    class=\"team-leaders-img\">\n                            <\/div>\n                            <h3 class=\"team-leaders-name\">\n                                Mat\u00edas Luis Carrillat                            <\/h3>\n                            <h4 class=\"team-leaders-job\">\n                                CCO                            <\/h4>\n                            <a href=\"https:\/\/www.linkedin.com\/in\/maximiliano-campos-301\/\"\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\/08\/Matias-Carrillat-1.jpg\" alt=\"\"\n                                            class=\"team-leaders-img\">\n                                    <\/div>\n                                    <h3 class=\"team-leaders-name\">\n                                        Mat\u00edas Luis Carrillat                                    <\/h3>\n                                    <h4 class=\"team-leaders-job\">\n                                        CCO                                    <\/h4>\n                                    <a href=\"https:\/\/www.linkedin.com\/in\/maximiliano-campos-301\/\" 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                            What can we do for your business?                        <\/p>\n                                    <\/div>\n            <\/div>\n\n            <div class=\"services__bottom_right_side\">\n                                    <div class=\"services__bottom_left_side\">\n                        <div class=\"services__bottom_img\">\n                            <img decoding=\"async\" class=\"services__image\" src=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Group-1872.svg\"\n                                alt=\"\" \/>\n                        <\/div>\n                    <\/div>\n                \n                <div class=\"container_items\">\n                                                <div class=\"item_container\">\n                                <div class=\"item expanded\">\n                                    <div class=\"container_title_icon expanded\">\n                                        <div class=\"icon_title\">\n\n                                            <div class=\"icon_container\">\n                                                                                            <\/div>\n\n                                            <div class=\"service_title\">\n                                                                                                    <h3>\n                                                        Revenue Operations Review (RevOps)                                                    <\/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                                                We begin by identifying friction points in the sales flow across different areas of the company to create a unified operational framework. This framework encompasses everything from capturing a new prospect (lead) and closing a contract to preventing the loss of an active client.\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                                                        Strategy Definition                                                    <\/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 outline and implement a comprehensive strategy that starts with a theoretical framework, such as defining Ideal Customer Profiles (ICPs) and buyer personas, which are reflected in CRM and structured data. \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                                                        Powered by Data                                                    <\/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 establish a data construction framework. And we generate reports to make decisions and uncover insights that help increase revenue.                                             <\/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 Implement Revenue Operations?                <\/h2>\n                <ul>\n                                            <li>\n                            <p>\n                                Aligning objectives across areas, resolving frictions, and designing an automated growth process allows you to gain a strategic advantage over the competition. \r\n\r\nDeliverable: Documented processes in PDF format, flow diagrams, and segmentation property structures.                             <\/p>\n                        <\/li>\n                                            <li>\n                            <p>\n                                Enhancing current process and the customer journey.\r\n\r\nDeliverable: Customer segmentation structure applied and implemented in CRM.                            <\/p>\n                        <\/li>\n                                            <li>\n                            <p>\n                                It\u2019s like hiring a full-time employee, but better. We deeply involve ourselves in your operations without the risk and with a lot of experience. We dive deep into your operations with low risk and vast experience across various industries. \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\/web_readiness_benefits.svg\" alt=\"\">\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<div class=\"row-services\">\n    <div class=\"service-stories\">\n        <div class=\"stories-container\">\n                            <h2 class=\"stories-title\">\n                    SUCCESS STORIES                <\/h2>\n                                        <div class=\"col-md-9 align-left col-sm-12 card-stories-container\">\n                    <div class=\"success-storie-content-wrapper\">\n                        <div class=\"success-storie-content\">\n                                                            <div class=\"circle-container\">\n                                    <div class=\"circle-background\"><\/div>\n                                    <span class=\"circle-text\">\n                                        Expansive Experiences:                                    <\/span>\n                                <\/div>\n                                                                                    <div class=\"story-card-wrapper\">\n                                <div class=\"col-md-12 col-sm-12 story-card\">\n                                    <div class=\"storie-header\">\n                                                                                <h3 class=\"storie-title\">\n                                            CardCookie                                        <\/h3>\n                                    <\/div>\n                                                                            <p class=\"storie-excerpt\">\n                                            El re-vendedor online de tarjetas de regalo (Giftcards) con descuento de EE. UU. nos contact\u00f3 para ayudarlos a expandir su negocio y ser menos dependientes de otros vendedores m\u00e1s grandes e importantes.                                        <\/p>\n                                                                        <a href=\"https:\/\/www.growketing.com\/portfolio\/card-cookie\/\" target=\"\"><button>\n                                            See more                                        <\/button><\/a>\n                                <\/div>\n                            <\/div>\n\n                                                            <div class=\"col-md-12 stories-counter story-card\">\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                +3290%                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">de Tr\u00e1fico org\u00e1nico<\/span><\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X10                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">Ingresos<\/span><\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X21.17                                            <\/h3>\n                                            <p>ROAS<\/p>\n                                        <\/div>\n                                                                    <\/div>\n                                                    <\/div>\n                    <\/div>\n                <\/div>\n                            <div class=\"col-md-9 align-right col-sm-12 card-stories-container\">\n                    <div class=\"success-storie-content-wrapper\">\n                        <div class=\"success-storie-content\">\n                                                                                    <div class=\"story-card-wrapper\">\n                                <div class=\"col-md-12 col-sm-12 story-card\">\n                                    <div class=\"storie-header\">\n                                                                                <h3 class=\"storie-title\">\n                                            Mi Belleza                                        <\/h3>\n                                    <\/div>\n                                                                            <p class=\"storie-excerpt\">\n                                             It is a new beauty, makeup, cosmetics, and personal care ecommerce platform in Uruguay.\r\n                                        <\/p>\n                                                                        <a href=\"https:\/\/www.growketing.com\/en\/portfolio\/mi-belleza\/\" target=\"\"><button>\n                                            See more                                        <\/button><\/a>\n                                <\/div>\n                            <\/div>\n\n                                                            <div class=\"col-md-12 stories-counter story-card\">\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X15                                            <\/h3>\n                                            <p>Sales<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X7                                            <\/h3>\n                                            <p>Conversion Rate<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X13                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">ROAS compared to the best month of the year<\/span><\/p>\n                                        <\/div>\n                                                                    <\/div>\n                                                    <\/div>\n                    <\/div>\n                <\/div>\n                            <div class=\"col-md-9 align-left col-sm-12 card-stories-container\">\n                    <div class=\"success-storie-content-wrapper\">\n                        <div class=\"success-storie-content\">\n                                                                                    <div class=\"story-card-wrapper\">\n                                <div class=\"col-md-12 col-sm-12 story-card\">\n                                    <div class=\"storie-header\">\n                                                                                <h3 class=\"storie-title\">\n                                            Worldsys                                        <\/h3>\n                                    <\/div>\n                                                                            <p class=\"storie-excerpt\">\n                                            It is the leading Regtech company providing solutions for regulatory compliance.                                        <\/p>\n                                                                        <a href=\"https:\/\/www.growketing.com\/en\/portfolio\/worldsys\/\" target=\"\"><button>\n                                            See more                                        <\/button><\/a>\n                                <\/div>\n                            <\/div>\n\n                                                            <div class=\"col-md-12 stories-counter story-card\">\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X15                                            <\/h3>\n                                            <p>Organic Keywords 1-3<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                X8                                            <\/h3>\n                                            <p>Organic Keywords 4-10<\/p>\n                                        <\/div>\n                                                                            <div class=\"counter\">\n                                            <h3>\n                                                +17                                            <\/h3>\n                                            <p><span style=\"font-weight: 400;\">Domain Rating Points<\/span><\/p>\n                                        <\/div>\n                                                                    <\/div>\n                                                    <\/div>\n                    <\/div>\n                <\/div>\n                    <\/div>\n        <div class=\"clear-both\"><\/div>\n    <\/div>\n<\/div>\n\n\n\n\n<div class=\"faqs_border\">\n    <div class=\"services__block row-services faqs\">\n        <div class=\"services__container_sides\">\n            <div class=\"services__top_side\">\n                <div class=\"services__container\">\n                    <div class=\"services__title_description\">\n                                                    <h2>\n                                FAQS                            <\/h2>\n                                            <\/div>\n                                                <div class=\"item_container\">\n                                <div class=\"item\">\n                                    <div class=\"container_title_icon\">\n                                        <div class=\"service_title\">\n                                            <h3>\n                                                What&#8217;s the Difference Between Revenue Operations and Sales Operations?                                            <\/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                                                While Sales Operations primarily focuses on optimizing sales operations, Revenue Operations goes beyond by also integrating marketing and customer success areas. Revenue Operations aims to align and coordinate all these functions to jointly maximize revenue and profitability.                                            <\/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 Can Revenue Operations Improve Customer Retention?                                            <\/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                                                Revenue Operations enhances customer retention by identifying potential friction points and user experience issues that could impact the sales cycle. Through collaborative efforts, sales and customer success teams can provide a more satisfying and personalized experience, thus increasing customer loyalty and reducing churn.                                            <\/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 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\/17465#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 three agencies in LATAM participating in Google&#8217;s International Growth Agency Program.<\/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":2,"featured_media":21503,"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-17465","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>Revenue Operations | Growketing<\/title>\n<meta name=\"description\" content=\"Maximize your revenue with our Revenue Operations services. We offer integration and optimization strategies to accelerate your growth.\" \/>\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\/revenue-operations\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Revenue Operations | Growketing\" \/>\n<meta property=\"og:description\" content=\"Maximize your revenue with our Revenue Operations services. We offer integration and optimization strategies to accelerate your growth.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/\" \/>\n<meta property=\"og:site_name\" content=\"Growketing\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-23T16:29:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Revenue-Operations-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\/revenue-operations\/\",\"url\":\"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/\",\"name\":\"Revenue Operations | Growketing\",\"isPartOf\":{\"@id\":\"https:\/\/www.growketing.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Revenue-Operations-scaled.jpg\",\"datePublished\":\"2023-07-26T16:25:47+00:00\",\"dateModified\":\"2024-07-23T16:29:37+00:00\",\"description\":\"Maximize your revenue with our Revenue Operations services. We offer integration and optimization strategies to accelerate your growth.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#primaryimage\",\"url\":\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Revenue-Operations-scaled.jpg\",\"contentUrl\":\"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Revenue-Operations-scaled.jpg\",\"width\":2560,\"height\":1440},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Services\",\"item\":\"https:\/\/new.growketing.com\/en\/services\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Revenue Operations\"}]},{\"@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":"Revenue Operations | Growketing","description":"Maximize your revenue with our Revenue Operations services. We offer integration and optimization strategies to accelerate your growth.","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\/revenue-operations\/","og_locale":"en_US","og_type":"article","og_title":"Revenue Operations | Growketing","og_description":"Maximize your revenue with our Revenue Operations services. We offer integration and optimization strategies to accelerate your growth.","og_url":"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/","og_site_name":"Growketing","article_modified_time":"2024-07-23T16:29:37+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Revenue-Operations-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\/revenue-operations\/","url":"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/","name":"Revenue Operations | Growketing","isPartOf":{"@id":"https:\/\/www.growketing.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#primaryimage"},"image":{"@id":"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#primaryimage"},"thumbnailUrl":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Revenue-Operations-scaled.jpg","datePublished":"2023-07-26T16:25:47+00:00","dateModified":"2024-07-23T16:29:37+00:00","description":"Maximize your revenue with our Revenue Operations services. We offer integration and optimization strategies to accelerate your growth.","breadcrumb":{"@id":"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.growketing.com\/en\/services\/revenue-operations\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#primaryimage","url":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Revenue-Operations-scaled.jpg","contentUrl":"https:\/\/www.growketing.com\/wp-content\/uploads\/2023\/09\/Revenue-Operations-scaled.jpg","width":2560,"height":1440},{"@type":"BreadcrumbList","@id":"https:\/\/www.growketing.com\/en\/services\/revenue-operations\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Services","item":"https:\/\/new.growketing.com\/en\/services\/"},{"@type":"ListItem","position":2,"name":"Revenue Operations"}]},{"@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\/17465","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/comments?post=17465"}],"version-history":[{"count":1,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17465\/revisions"}],"predecessor-version":[{"id":23403,"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/pages\/17465\/revisions\/23403"}],"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\/21503"}],"wp:attachment":[{"href":"https:\/\/www.growketing.com\/en\/wp-json\/wp\/v2\/media?parent=17465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}