{"id":29270,"date":"2021-02-23T17:39:10","date_gmt":"2021-02-23T17:39:10","guid":{"rendered":"https:\/\/kdc1000.wpengine.com\/?page_id=29270"},"modified":"2022-03-25T19:27:46","modified_gmt":"2022-03-25T19:27:46","slug":"mexico-office","status":"publish","type":"page","link":"https:\/\/www.kansascommerce.gov\/es\/mexico-office\/","title":{"rendered":"Oficina de M\u00e9xico"},"content":{"rendered":"                    <div class=\"custom-cover-block d-flex justify-content-center   \" style=\"\n                                                        background-image: url('https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2022\/03\/Mexico_web-1.jpg');\n                                                    background-position: center center;\n                                                                \" id=\"coverblock-2117873867\">\n        <div class=\"inner-content col-12 col-md-10 col-lg-9\" style=\"\n                                        color: white !important;\n                                                                            \">\n            <div class=\"content\">\n\n<h1 class=\"has-text-align-center wp-block-heading\" id=\"h-kansas-mexico-office\">Kansas Mexico Office<\/h1>\n\n\n\n<h4 class=\"has-text-align-center wp-block-heading\" id=\"h-as-one-of-kansas-largest-export-destinations-mexico-represents-a-2-billion-market-with-many-opportunities-for-kansas-exporters-1\">As one of Kansas\u2019 largest export destinations, Mexico represents a $2 billion market with many opportunities for Kansas exporters.<\/h4>\n\n\n\n<p class=\"has-text-align-center\">Learn how the Mexico Office can help your business succeed in Mexico<\/p>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-499968f5 wp-block-buttons-is-layout-flex\"><\/div>\n\n<\/div>\n        <\/div>\n    <\/div>\n\n    <div id=\"video-lightbox-2117873867\" class=\"video-lightbox-overlay\" style=\"display: none;\">\n        <div class=\"video-lightbox-container\">\n            <button class=\"video-lightbox-close\">&times;<\/button>\n            <div class=\"video-lightbox-content\">\n                <iframe id=\"video-frame-2117873867\" src=\"\" frameborder=\"0\" allowfullscreen><\/iframe>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <style>\n        #coverblock-2117873867 .inner-content:before {background-color: #0693e3;}                \n        .video-lightbox-overlay {\n            position: fixed;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: rgba(0, 0, 0, 0.9);\n            z-index: 9999;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n        \n        .video-lightbox-container {\n            position: relative;\n            width: 90%;\n            max-width: 800px;\n            max-height: 90%;\n        }\n        \n        .video-lightbox-content {\n            position: relative;\n            width: 100%;\n            height: 0;\n            padding-bottom: 56.25%;\n        }\n        \n        .video-lightbox-content iframe {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n        }\n        \n        .video-lightbox-close {\n            position: absolute;\n            top: -40px;\n            right: 0;\n            background: none;\n            border: none;\n            color: white;\n            font-size: 30px;\n            cursor: pointer;\n            z-index: 10001;\n            width: 40px;\n            height: 40px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n        \n        .video-lightbox-close:hover {\n            opacity: 0.7;\n        }\n        \n        .video-link {\n            position: relative;\n            display: inline-block;\n            cursor: pointer;\n        }\n    <\/style>\n\n    <script>\n        jQuery(document).ready(function(){\n            jQuery('#coverblock-2117873867 .wp-block-button__link').addClass('btn white_btn');\n            \n            const coverBlock = jQuery('#coverblock-2117873867');\n            const lightbox = jQuery('#video-lightbox-2117873867');\n            const videoFrame = jQuery('#video-frame-2117873867');\n            const closeBtn = jQuery('#video-lightbox-2117873867 .video-lightbox-close');\n            \n            function getVideoEmbedUrl(url) {\n                const youtubeRegex = \/(?:https?:\\\/\\\/)?(?:www\\.)?(?:youtube\\.com\\\/(?:[^\\\/\\n\\s]+\\\/\\S+\\\/|(?:v|e(?:mbed)?)\\\/|\\S*?[?&]v=)|youtu\\.be\\\/)([a-zA-Z0-9_-]{11})\/;\n                const youtubeMatch = url.match(youtubeRegex);\n                \n                if (youtubeMatch) {\n                    return `https:\/\/www.youtube.com\/embed\/${youtubeMatch[1]}?autoplay=1`;\n                }\n                \n                const vimeoRegex = \/(?:https?:\\\/\\\/)?(?:www\\.)?(?:vimeo\\.com\\\/)(\\d+)\/;\n                const vimeoMatch = url.match(vimeoRegex);\n                \n                if (vimeoMatch) {\n                    return `https:\/\/player.vimeo.com\/video\/${vimeoMatch[1]}?autoplay=1`;\n                }\n                \n                return null;\n            }\n            \n            function isVideoUrl(url) {\n                return \/(?:youtube\\.com|youtu\\.be|vimeo\\.com)\/i.test(url);\n            }\n            \n            coverBlock.find('a').each(function() {\n                const link = jQuery(this);\n                const href = link.attr('href');\n                \n                if (href && isVideoUrl(href)) {\n                    link.addClass('video-link');\n                    \n                    link.on('click', function(e) {\n                        e.preventDefault();\n                        const embedUrl = getVideoEmbedUrl(href);\n                        \n                        if (embedUrl) {\n                            videoFrame.attr('src', embedUrl);\n                            lightbox.fadeIn(300);\n                            jQuery('body').addClass('lightbox-open');\n                        }\n                    });\n                }\n            });\n            \n            function closeLightbox() {\n                lightbox.fadeOut(300);\n                videoFrame.attr('src', ''); \/\/ Stop video\n                jQuery('body').removeClass('lightbox-open');\n            }\n            \n            closeBtn.on('click', closeLightbox);\n            \n            lightbox.on('click', function(e) {\n                if (e.target === this) {\n                    closeLightbox();\n                }\n            });\n            \n            jQuery(document).on('keydown', function(e) {\n                if (e.keyCode === 27 && lightbox.is(':visible')) {\n                    closeLightbox();\n                }\n            });\n        });\n    <\/script>\n    \n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"Doing Business in Mexico - 2022\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/dC6swbfXIWs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\"><\/div>\n<\/div>\n\n\n                <div class=\"split-block split-transparent dark \">\n        <div class=\"row flex-row-reverse\">\n\n            <div class=\"col-12 col-md-7 col-xl-5 text-box\">\n                <div class=\"h-100 d-flex align-items-center\">\n                    <div class=\"content\">\n                        <div class=\"divider\" style=\"background: #f1ad02;\"><\/div>\n                        \n\n<h2 class=\"wp-block-heading\">Mexico is good business for Kansas exporters<\/h2>\n\n\n\n<p><strong>Mexico\u2019s USD 1.2 trillion economy is the second-largest economy in Latin America and the 15th-largest economy in the world. Mexico has a large, diversified economy that is linked to its deep trade and investment relations with the United States.<\/strong><\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https:\/\/www.kansascommerce.gov\/webinar\/doing-business-in-mexico-2022\/\">Learn More<\/a><\/div>\n<\/div>\n\n\n\n<p><\/p>\n\n\n                    <\/div>\n                <\/div>\n            <\/div>\n                                                                    <div class=\"col-12 col-md-5 col-xl-7 img-box\"\n                 style=\"background-image: url('https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2022\/03\/Mexico-Key-Facts-2-1-1024x819.jpg'); background-position: center center;\"><\/div>\n\n        <\/div>\n    <\/div>\n    \n\n\n<div class=\"wp-block-columns has-white-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"128\" height=\"128\" src=\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2022\/03\/Mexico-Statue.png\" alt=\"\" class=\"wp-image-38736\"\/><\/figure><\/div>\n\n\n\n<h3 class=\"has-text-align-center wp-block-heading\" id=\"h-key-industries\"><mark style=\"background-color:rgba(0, 0, 0, 0);color:#00205b\" class=\"has-inline-color\">KEY INDUSTRIES<\/mark><\/h3>\n\n\n\n<p>Discover Mexico&#8217;s exports and key industries.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"ICYMI Mexico&#039;s Key Industries\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/NqnsdVx4FRI?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:45px\">\n<div style=\"height:83px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"128\" height=\"128\" src=\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2022\/03\/Mexico-Sun.png\" alt=\"\" class=\"wp-image-38735\"\/><\/figure><\/div>\n\n\n\n<h3 class=\"has-text-align-center wp-block-heading\" id=\"h-core-services\"><mark style=\"background-color:rgba(0, 0, 0, 0);color:#00205b\" class=\"has-inline-color\">CORE SERVICES<\/mark><\/h3>\n\n\n\n<p>Learn about the Kansas Mexico Office&#8217;s core services<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"Kansas Mexico Office Services\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/1H-QH4kuof0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">                <div class=\"staff-card-block row-block col-12\"><div class=\"row align-items-center\"><div class=\"col-12 col-sm-5 col-md-4 col-lg-3 img_wrap\"><div class=\"bg-block\" style=\"background-image: url('https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2024\/09\/Chang-Lu_web.jpg');\"><\/div><\/div><div class=\"col-12 col-sm-7 col-md-8 col-lg-9\"><div class=\"d-flex align-items-center\"><h5>Chang Lu<\/h5><\/div><p>Business Recruitment &amp; International Trade Project Manager<\/p><p><a href=\"tel:(913) 5158541\">(913) 515-8541<\/a><a href=\"mailto:Chang.Lu@ks.gov\">Chang.Lu@ks.gov<\/a><\/p><\/div><\/div><\/div>    <\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\"><\/div>\n<\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>INDUSTRIAS CLAVE Descubra las exportaciones y las industrias clave de M\u00e9xico. SERVICIOS PRINCIPALES Conozca los servicios principales de la Oficina de Kansas M\u00e9xico<\/p>","protected":false},"author":28,"featured_media":29277,"parent":0,"menu_order":210,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_eb_attr":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-29270","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v19.5 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Mexico Office - Kansas Department of Commerce<\/title>\n<meta name=\"description\" content=\"The Mexico Office offers many valuable services to Kansas companies who manufacture or perform significant value-added tasks in the state. Such services include business partner search, market study, customized company visits and individual trade counseling. %\" \/>\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.kansascommerce.gov\/es\/international\/export-2\/mexico-office\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mexico Office\" \/>\n<meta property=\"og:description\" content=\"The Mexico Office offers many valuable services to Kansas companies who manufacture or perform significant value-added tasks in the state. Such services include business partner search, market study, customized company visits and individual trade counseling. %\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.kansascommerce.gov\/es\/international\/export-2\/mexico-office\/\" \/>\n<meta property=\"og:site_name\" content=\"Kansas Department of Commerce\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/KansasCommerce\/\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-25T19:27:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Pre-webinar-slide.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"640\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@KansasCommerce\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/\",\"url\":\"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/\",\"name\":\"Mexico Office - Kansas Department of Commerce\",\"isPartOf\":{\"@id\":\"https:\/\/www.kansascommerce.gov\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Pre-webinar-slide.jpg\",\"datePublished\":\"2021-02-23T17:39:10+00:00\",\"dateModified\":\"2022-03-25T19:27:46+00:00\",\"description\":\"The Mexico Office offers many valuable services to Kansas companies who manufacture or perform significant value-added tasks in the state. Such services include business partner search, market study, customized company visits and individual trade counseling. %\",\"breadcrumb\":{\"@id\":\"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#primaryimage\",\"url\":\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Pre-webinar-slide.jpg\",\"contentUrl\":\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Pre-webinar-slide.jpg\",\"width\":1080,\"height\":640,\"caption\":\"Mexico Webinar Graphic\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.kansascommerce.gov\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mexico Office\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.kansascommerce.gov\/#website\",\"url\":\"https:\/\/www.kansascommerce.gov\/\",\"name\":\"Kansas Department of Commerce\",\"description\":\"Empowering Prosperity\",\"publisher\":{\"@id\":\"https:\/\/www.kansascommerce.gov\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.kansascommerce.gov\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.kansascommerce.gov\/#organization\",\"name\":\"Kansas Department of Commerce\",\"url\":\"https:\/\/www.kansascommerce.gov\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.kansascommerce.gov\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2020\/07\/kdc_logo.png\",\"contentUrl\":\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2020\/07\/kdc_logo.png\",\"width\":600,\"height\":347,\"caption\":\"Kansas Department of Commerce\"},\"image\":{\"@id\":\"https:\/\/www.kansascommerce.gov\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/KansasCommerce\/\",\"https:\/\/x.com\/KansasCommerce\",\"https:\/\/www.linkedin.com\/company\/kansas-department-of-commerce\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Mexico Office - Kansas Department of Commerce","description":"The Mexico Office offers many valuable services to Kansas companies who manufacture or perform significant value-added tasks in the state. Such services include business partner search, market study, customized company visits and individual trade counseling. %","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.kansascommerce.gov\/es\/international\/export-2\/mexico-office\/","og_locale":"es_ES","og_type":"article","og_title":"Mexico Office","og_description":"The Mexico Office offers many valuable services to Kansas companies who manufacture or perform significant value-added tasks in the state. Such services include business partner search, market study, customized company visits and individual trade counseling. %","og_url":"https:\/\/www.kansascommerce.gov\/es\/international\/export-2\/mexico-office\/","og_site_name":"Kansas Department of Commerce","article_publisher":"https:\/\/www.facebook.com\/KansasCommerce\/","article_modified_time":"2022-03-25T19:27:46+00:00","og_image":[{"width":1080,"height":640,"url":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Pre-webinar-slide.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@KansasCommerce","twitter_misc":{"Tiempo de lectura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/","url":"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/","name":"Mexico Office - Kansas Department of Commerce","isPartOf":{"@id":"https:\/\/www.kansascommerce.gov\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#primaryimage"},"image":{"@id":"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Pre-webinar-slide.jpg","datePublished":"2021-02-23T17:39:10+00:00","dateModified":"2022-03-25T19:27:46+00:00","description":"The Mexico Office offers many valuable services to Kansas companies who manufacture or perform significant value-added tasks in the state. Such services include business partner search, market study, customized company visits and individual trade counseling. %","breadcrumb":{"@id":"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#primaryimage","url":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Pre-webinar-slide.jpg","contentUrl":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Pre-webinar-slide.jpg","width":1080,"height":640,"caption":"Mexico Webinar Graphic"},{"@type":"BreadcrumbList","@id":"https:\/\/www.kansascommerce.gov\/international\/export-2\/mexico-office\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.kansascommerce.gov\/"},{"@type":"ListItem","position":2,"name":"Mexico Office"}]},{"@type":"WebSite","@id":"https:\/\/www.kansascommerce.gov\/#website","url":"https:\/\/www.kansascommerce.gov\/","name":"Departamento de Comercio de Kansas","description":"Fomentar la prosperidad","publisher":{"@id":"https:\/\/www.kansascommerce.gov\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.kansascommerce.gov\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.kansascommerce.gov\/#organization","name":"Departamento de Comercio de Kansas","url":"https:\/\/www.kansascommerce.gov\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.kansascommerce.gov\/#\/schema\/logo\/image\/","url":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2020\/07\/kdc_logo.png","contentUrl":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2020\/07\/kdc_logo.png","width":600,"height":347,"caption":"Kansas Department of Commerce"},"image":{"@id":"https:\/\/www.kansascommerce.gov\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/KansasCommerce\/","https:\/\/x.com\/KansasCommerce","https:\/\/www.linkedin.com\/company\/kansas-department-of-commerce\/"]}]}},"publishpress_future_action":{"enabled":false,"date":"2026-04-13 10:18:25","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"","extraData":[]},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/pages\/29270","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/comments?post=29270"}],"version-history":[{"count":0,"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/pages\/29270\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/media\/29277"}],"wp:attachment":[{"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/media?parent=29270"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}