{"id":10,"date":"2024-07-06T09:18:49","date_gmt":"2024-07-06T09:18:49","guid":{"rendered":"http:\/\/localhost:10028\/?page_id=10"},"modified":"2025-09-26T16:50:35","modified_gmt":"2025-09-26T16:50:35","slug":"about","status":"publish","type":"page","link":"https:\/\/magnarepublik.com\/en\/about\/","title":{"rendered":"About US"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"10\" class=\"elementor elementor-10\">\n\t\t\t\t<div class=\"elementor-element elementor-element-95f6541 parallax-section e-flex e-con-boxed rt-default-class e-con e-parent\" data-id=\"95f6541\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8c8d221 rt-default-class elementor-widget elementor-widget-rtbreadrumb\" data-id=\"8c8d221\" data-element_type=\"widget\" data-widget_type=\"rtbreadrumb.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    \r\n\r\n    <div class=\"breadcrumb-inner-addon\">\r\n        <div class=\"rt-title-part\">\r\n            <h1 class=\"page-title\">Learn About Us<\/h1>\r\n             Magna Republik S.A. is a political consulting firm based in Panama City, specializing in strategic advisory and electoral campaign management, with a focus on the Panamanian and Central American markets. We position ourselves as an innovative consultancy that combines in-depth knowledge of the local political context with modern data analysis methodologies.        <\/div>\r\n        <div class=\"breadcrumb-path\">\r\n                <a href=\"https:\/\/magnarepublik.com\/en\/\">Home<\/a>            <\/div>\r\n    <\/div>   \r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a7f311e e-flex e-con-boxed rt-default-class e-con e-parent\" data-id=\"a7f311e\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-65bac0f e-con-full e-flex rt-default-class e-con e-child\" data-id=\"65bac0f\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3b46c9c rt-default-class elementor-widget elementor-widget-rt-parallax-image\" data-id=\"3b46c9c\" data-element_type=\"widget\" data-widget_type=\"rt-parallax-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n                                                            <div class=\"rt-image\">\n                                            <img decoding=\"async\" class=\"react-parallax-image2\" src=\"https:\/\/themewant.com\/products\/wordpress\/bizgen\/wp-content\/uploads\/2024\/09\/about.webp\" alt=\"image\" \/>\n                                    <\/div>\n            \n\n        <script>\n            jQuery(document).ready(function ($) {\n                \/\/ Function to handle parallax and zoom for a given set of elements\n                function handleParallaxZoom(elements, yPercent, startTrigger) {\n                    if (elements.length) {\n                        elements.each(function () {\n\n                            var $animImageParallax = $(this);\n                            var $aipWrap = $animImageParallax.wrap('<div class=\"anim-image-parallax-wrap\"><div class=\"anim-image-parallax-inner\"><\/div><\/div>').parent();\n                            var $aipInner = $aipWrap.find(\".anim-image-parallax-inner\");\n\n                            \/\/ Parallax\n                            gsap.to($animImageParallax, {\n                                yPercent: yPercent,\n                                ease: \"none\",\n                                scrollTrigger: {\n                                    trigger: $aipWrap,\n                                    start: startTrigger,\n                                    end: \"bottom top\",\n                                    scrub: true,\n                                    markers: false,\n                                },\n                            });\n\n                            \/\/ Zoom in\n                            let tl_aipZoomIn = gsap.timeline({\n                                scrollTrigger: {\n                                    trigger: $aipWrap,\n                                    start: \"top 90%\",\n                                    markers: false,\n                                },\n                            });\n                            tl_aipZoomIn.from($aipInner, {\n                                duration: 1.5,\n                                autoAlpha: 0,\n                                scale: 1.4,\n                                ease: Power2.easeOut,\n                                clearProps: \"all\",\n                            });\n                        });\n                    }\n                }\n                \/\/ Call the function for the first set of elements\n                handleParallaxZoom($(\".anim-image-parallax\"), 80, \"top bottom\");\n                \/\/ Call the function for the second set of elements\n                handleParallaxZoom($(\".anim-image-parallax-2\"), 20, \"top bottom\");\n\n                \/\/Style 2 anim-image-parallax Code \n                let parallaxElements = document.getElementsByClassName('anim-image-parallax');\n                if (parallaxElements.length) {\n                    Array.from(parallaxElements).forEach((element) => {\n                        \/\/ Wrap the element with the necessary divs.\n                        let wrapperDiv = document.createElement('div');\n                        wrapperDiv.className = 'anim-image-parallax-wrap';\n                        let innerDiv = document.createElement('div');\n                        innerDiv.className = 'anim-image-parallax-inner';\n\n                        element.parentNode.insertBefore(wrapperDiv, element);\n                        wrapperDiv.appendChild(innerDiv);\n                        innerDiv.appendChild(element);\n\n                        \/\/ Add overflow hidden to the wrapper div.\n                        wrapperDiv.style.overflow = 'hidden';\n\n                        \/\/ Get the references to the elements.\n                        let animImageParallax = gsap.utils.wrap(element);\n                        let aipWrap = wrapperDiv;\n                        let aipInner = innerDiv;\n\n                        \/\/ Parallax\n                        gsap.to(animImageParallax, {\n                            yPercent: 80,\n                            ease: 'none',\n                            scrollTrigger: {\n                            trigger: aipWrap,\n                            start: 'top bottom',\n                            end: 'bottom top',\n                            scrub: true,\n                            markers: false,\n                            },\n                        });\n\n                        \/\/ Zoom in\n                        let tl_aipZoomIn = gsap.timeline({\n                            scrollTrigger: {\n                            trigger: aipWrap,\n                            start: 'top 90%',\n                            markers: false,\n                            },\n                        });\n\n                        tl_aipZoomIn.from(aipInner, {\n                            duration: 1.5,\n                            autoAlpha: 0,\n                            scale: 1.4,\n                            ease: 'power2.out',\n                            clearProps: 'all',\n                        });\n                    });\n                }\n            });\n        <\/script>\n\n\n\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-71f53a7 e-con-full e-flex rt-default-class e-con e-child\" data-id=\"71f53a7\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-175c278 rt-default-class elementor-widget elementor-widget-react-heading\" data-id=\"175c278\" data-element_type=\"widget\" data-widget_type=\"react-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"animation-style2 react-heading default\">\r\n\t\t\t<div class=\"title-inner  bg_sub_text_yes double_sub_text_no\">\r\n\t\t\t\t<span class=\"sub-text word-line\">Our services<\/span><div class=\"split_collab_words\"><h2 class=\"title word-line\">Achieve your goals, achieve success<\/h2><\/div>\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"description\">\r\n\t\t\t\t\t<p>At Magna Republik S.A., we offer a wide range of specialized services to ensure success in the political and electoral arena. Each of our services is designed to provide personalized solutions that deliver real and measurable impact.<\/p>\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t<\/div>\t\t\t\r\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a46eb18 e-con-full e-flex rt-default-class e-con e-child\" data-id=\"a46eb18\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7a2ecb9 elementor-view-stacked elementor-position-left elementor-shape-circle elementor-mobile-position-top rt-default-class elementor-widget elementor-widget-icon-box\" data-id=\"7a2ecb9\" data-element_type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-handshake\" viewbox=\"0 0 640 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M519.2 127.9l-47.6-47.6A56.252 56.252 0 0 0 432 64H205.2c-14.8 0-29.1 5.9-39.6 16.3L118 127.9H0v255.7h64c17.6 0 31.8-14.2 31.9-31.7h9.1l84.6 76.4c30.9 25.1 73.8 25.7 105.6 3.8 12.5 10.8 26 15.9 41.1 15.9 18.2 0 35.3-7.4 48.8-24 22.1 8.7 48.2 2.6 64-16.8l26.2-32.3c5.6-6.9 9.1-14.8 10.9-23h57.9c.1 17.5 14.4 31.7 31.9 31.7h64V127.9H519.2zM48 351.6c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16zm390-6.9l-26.1 32.2c-2.8 3.4-7.8 4-11.3 1.2l-23.9-19.4-30 36.5c-6 7.3-15 4.8-18 2.4l-36.8-31.5-15.6 19.2c-13.9 17.1-39.2 19.7-55.3 6.6l-97.3-88H96V175.8h41.9l61.7-61.6c2-.8 3.7-1.5 5.7-2.3H262l-38.7 35.5c-29.4 26.9-31.1 72.3-4.4 101.3 14.8 16.2 61.2 41.2 101.5 4.4l8.2-7.5 108.2 87.8c3.4 2.8 3.9 7.9 1.2 11.3zm106-40.8h-69.2c-2.3-2.8-4.9-5.4-7.7-7.7l-102.7-83.4 12.5-11.4c6.5-6 7-16.1 1-22.6L367 167.1c-6-6.5-16.1-6.9-22.6-1l-55.2 50.6c-9.5 8.7-25.7 9.4-34.6 0-9.3-9.9-8.5-25.1 1.2-33.9l65.6-60.1c7.4-6.8 17-10.5 27-10.5l83.7-.2c2.1 0 4.1.8 5.5 2.3l61.7 61.6H544v128zm48 47.7c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16c0 8.9-7.2 16-16 16z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tConsulting and <br>  Political Advice \t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8e84a62 elementor-view-stacked elementor-position-left elementor-shape-circle elementor-mobile-position-top rt-default-class elementor-widget elementor-widget-icon-box\" data-id=\"8e84a62\" data-element_type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-chart-bar\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tData analysis and <br> public opinion\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-703388b e-con-full e-flex rt-default-class e-con e-child\" data-id=\"703388b\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8951c35 elementor-widget-divider--view-line rt-default-class elementor-widget elementor-widget-divider\" data-id=\"8951c35\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f26ed82 rt-default-class elementor-widget elementor-widget-react-button\" data-id=\"f26ed82\" data-element_type=\"widget\" data-widget_type=\"react-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\r\n\t\t\r\n\t<div class=\"react-button\">\r\n\t\t\t\t<a class=\"react_button\" href=\"https:\/\/magnarepublik.com\/en\/services\/\" >\r\n\r\n\t\t   \t\r\n\r\n\t\t<span class=\"btn_text\">See all services<\/span>\r\n\r\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"rt rt-arrow-up-right\"><\/i>\t\t\t\t\r\n\t\t\t\t\t<\/a>\r\n\t<\/div>\t\t\r\n\r\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Conozca sobre nosotros Magna Republik S. A. es una firma de consultor\u00eda pol\u00edtica establecida en Ciudad de Panam\u00e1, especializada en asesoramiento estrat\u00e9gico y gesti\u00f3n de campa\u00f1as electorales, con enfoque en el mercado paname\u00f1o y centroamericano. Nos posicionamos como una consultora innovadora que combina el profundo conocimiento del contexto pol\u00edtico local con metodolog\u00edas modernas de an\u00e1lisis&#8230;<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_joinchat":[],"footnotes":""},"class_list":["post-10","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/magnarepublik.com\/en\/wp-json\/wp\/v2\/pages\/10","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/magnarepublik.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/magnarepublik.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/magnarepublik.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/magnarepublik.com\/en\/wp-json\/wp\/v2\/comments?post=10"}],"version-history":[{"count":19,"href":"https:\/\/magnarepublik.com\/en\/wp-json\/wp\/v2\/pages\/10\/revisions"}],"predecessor-version":[{"id":4557,"href":"https:\/\/magnarepublik.com\/en\/wp-json\/wp\/v2\/pages\/10\/revisions\/4557"}],"wp:attachment":[{"href":"https:\/\/magnarepublik.com\/en\/wp-json\/wp\/v2\/media?parent=10"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}