{"id":14,"date":"2016-11-14T09:59:17","date_gmt":"2016-11-14T09:59:17","guid":{"rendered":"http:\/\/www.bayswaterhill.com\/efgnew\/index.php\/about\/"},"modified":"2026-02-03T10:01:01","modified_gmt":"2026-02-03T08:01:01","slug":"eu-and-moldova","status":"publish","type":"page","link":"https:\/\/eu4moldova.eu\/en\/eu-and-moldova\/","title":{"rendered":"EU and Moldova"},"content":{"rendered":"<div>\n<div class=\"scrolling-section\">\n<div class=\"europe\">\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01-1.svg\" \/>\n        <\/div>\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01-1.svg\" \/>\n        <\/div>\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01-1.svg\" \/>\n        <\/div>\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01-1.svg\" \/>\n        <\/div>\n<div class=\"union\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/european_union_large-01.svg\" \/>\n        <\/div>\n<\/p><\/div>\n<div class=\"moldova_cont\">\n<div class=\"moldova\">\n            <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/03\/MOLDOVA_vect.svg\" \/>\n        <\/div>\n<\/p><\/div>\n<\/div>\n<\/div>\n<div>\n<div class=\"text-wrapper\">\n<div class=\"text-container1\">\n<div class=\"text-line11\">The European Union\n     <\/div>\n<div class=\"text-line12\">is the largest provider\n     <\/div>\n<div class=\"text-line13\">of financial assistance\n     <\/div>\n<\/p><\/div>\n<div class=\"text-container2\">\n<div class=\"text-line21\">a committed trade partner\n     <\/div>\n<div class=\"text-line22\">&#038; leader in sustainability\n     <\/div>\n<\/p><\/div>\n<div class=\"text-container3\">\n<div class=\"text-line31\">a guarantee of peace \t\t\t<\/div>\n<div class=\"text-line32\">&#038; stability \t\t<\/div>\n<\/p><\/div>\n<div class=\"text-container4\">\n<div class=\"text-line41\">a promoter of democracy \t\t<\/div>\n<div class=\"text-line42\">worldwide\n         <\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/div>\n<h1>EU in Moldova: Investing in people, driving development<\/h1>\n<div>\n<p>    <canvas id=\"container\" width=\"200\" height=\"200\"><\/canvas><\/p>\n<p><script>\n    var points = [],\n    velocity2 = 3, \/\/ velocity squared\n    canvas = \ndocument.getElementById('container'),\n  context = canvas.getContext('2d'),\n  radius = 5,\n  boundaryX = 200,\n  boundaryY = 200,\n  numberOfPoints = 16;<\/p>\n<p>init();<\/p>\n<p>function init() {\n  \/\/ create points\n  for (var i = 0; i<numberOfPoints; i++) {\n    createPoint();\n  }\n  \/\/ create connections\n  for (var i = 0, l=points.length; i<l; i++) {\n    var point = points[i];\n    if(i == 0) {\n      points[i].buddy = points[points.length-1];\n    } else {\n      points[i].buddy = points[i-1];\n    }\n  }\n  \n  \/\/ animate\n  animate();\n}\n\nfunction createPoint() {\n  var point = {}, vx2, vy2;\n  point.x = Math.random()*boundaryX;\n  point.y = Math.random()*boundaryY;\n  \/\/ random vx \n  point.vx = (Math.floor(Math.random())*2-1)*Math.random();\n  vx2 = Math.pow(point.vx, 2);\n  \/\/ vy^2 = velocity^2 - vx^2\n  vy2 = velocity2 - vx2;\n  point.vy = Math.sqrt(vy2) * (Math.random()*2-1);\n  points.push(point);\n}\n\nfunction resetVelocity(point, axis, dir) {\n  var vx, vy;\n  if(axis == 'x') {\n    point.vx = dir*Math.random();  \n    vx2 = Math.pow(point.vx, 2);\n  \/\/ vy^2 = velocity^2 - vx^2\n  vy2 = velocity2 - vx2;\n  point.vy = Math.sqrt(vy2) * (Math.random()*2-1);\n  } else {\n    point.vy = dir*Math.random();  \n    vy2 = Math.pow(point.vy, 2);\n  \/\/ vy^2 = velocity^2 - vx^2\n  vx2 = velocity2 - vy2;\n  point.vx = Math.sqrt(vx2) * (Math.random()*2-1);\n  }\n}\n\nfunction drawCircle(x, y) {\n  context.beginPath();\n  context.arc(x, y, radius, 0, 2 * Math.PI, false);\n  context.fillStyle = '#ffffff';\n  context.fill();  \n}\n\nfunction drawLine(x1, y1, x2, y2) {\n  context.beginPath();\n  context.moveTo(x1, y1);\n  context.lineTo(x2, y2);\n  context.strokeStyle = '#ffffff'\n  context.stroke();\n}  \n\nfunction draw() {\n  for(var i =0, l=points.length; i<l; i++) {\n    \/\/ circles\n    var point = points[i];\n    point.x += point.vx;\n    point.y += point.vy;\n    drawCircle(point.x, point.y);\n    \/\/ lines\n    drawLine(point.x, point.y, point.buddy.x, point.buddy.y);\n    \/\/ check for edge\n    if(point.x < 0+radius) {\n      resetVelocity(point, 'x', 1);\n    } else if(point.x > boundaryX-radius) {\n      resetVelocity(point, 'x', -1);\n    } else if(point.y < 0+radius) {\n      resetVelocity(point, 'y', 1);\n    } else if(point.y > boundaryY-radius) {\n      resetVelocity(point, 'y', -1);\n    } \n  }\n}<\/p>\n<p>function animate() {\n  context.clearRect ( 0 , 0 , 200 , 200 );\n  draw();\n  requestAnimationFrame(animate);\n}\n<\/script><\/p>\n<\/div>\n<div>\n<h3>Stronger partnership, better lives<\/h3>\n<div>\n<p>The European Union is Moldova\u2019s largest partner, driving progress in economic growth, governance reforms, infrastructure development, and social well-being. Through strategic investments and cooperation, the EU actively supports Moldova\u2019s path to a prosperous, stable, and connected future. Hundreds of projects across various sectors contribute to improving the quality of life for citizens, fostering business growth, creating jobs, and expanding opportunities for young people.<\/p>\n<\/div>\n<\/div>\n<div>\n<h3>EU \u2013 Moldova relations<\/h3>\n<div>\n<p><span>The Association Agreement, signed in 2014, along with the Deep and Comprehensive Free Trade Area (DCFTA), is the foundation of Moldova\u2019s economic and political integration with the EU. This partnership has opened markets, strengthened trade relations, and supported Moldova\u2019s economic growth.<\/span><span><\/span><\/p>\n<\/div>\n<\/div>\n<div>\n<h3>EU negotations<\/h3>\n<div>\n<p><span>Moldova took a historic step towards EU membership in June 2022, when it was granted EU candidate status. In June 2024, the country officially launched accession negotiations, marking a new stage in its cooperation with the EU.\u00a0<\/span><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p><span>More on the EU Enlargement Package and Moldova\u2019s progress towards EU accession here:<\/span><\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/en\/enlargement\/\">EU Enlargement<\/a><\/p>\n<\/div>\n<div>\n<h3>EU support: More than just numbers<\/h3>\n<div>\n<p>The EU\u2019s support for Moldova goes far beyond financial assistance\u2014it translates into stronger institutions, modern infrastructure, economic opportunities, and tangible improvements in people\u2019s daily lives. While many recognize the EU as Moldova\u2019s largest partner, there is always more to discover about the depth and impact of this support.<\/p>\n<p>Since 2021, the EU has provided over \u20ac430 million in non-repayable grants, targeting economic reforms, the energy sector, refugee crisis management, and security initiatives. Under the EU Economic and Investment Plan, \u20ac1.6 billion has been mobilised for strategic projects, including infrastructure and energy development.<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/en\/the-eumoldova-factsheet-2024\/\">The EU &#038; Moldova Factsheet<\/a><\/p>\n<\/div>\n<div>\n<div>\n<p><span>In 2024, the European Union has approved an unprecedented financial package of \u20ac1.9 billion to support the Republic of Moldova in its preparations for EU membership. Moldova Growth Plan aims to accelerate essential reforms, boost the national economy, and ensure gradual access to the EU single market.<\/span><\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/en\/moldova-growth-plan\/\">Growth Plan<\/a><\/p>\n<\/div>\n<div>\n<p><\/p>\n<div class=\"animation-target\">\n<\/div>\n<p><\/p>\n<\/div>\n<div>\n<div><span><\/p>\n<p>Beyond direct funding, the EU has implemented over 400 projects since 2017, both locally (across Moldova) and regionally (in cooperation with Eastern Partnership countries), driving progress across diverse sectors.<\/p>\n<p><\/span><\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/projects\/\">EU-funded projects<\/a><\/p>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/04\/1.jpg\" alt=\"\"><\/p>\n<h3>\u20ac2.2 billion<\/h3>\n<div>\n<p>in loans and grants since 2021<\/p>\n<\/div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/10\/Moldova_growth-scaled.jpg\" alt=\"90 mayors and deputy mayors from the Republic of Moldova attended a forum on regional development\"><\/p>\n<h3>\u20ac1.9 billion <\/h3>\n<div>\n<p>to support the Republic of Moldova in its preparations for EU membership<\/p>\n<\/div>\n<\/div>\n<div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/01\/Ciumas.jpg\" alt=\"\"><\/p>\n<h3>\u20ac1.6 billion<\/h3>\n<div>\n<p>has been mobilised for strategic projects, including infrastructure and energy development<\/p>\n<\/div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2025\/01\/Electric-Maraton-scaled.jpg\" alt=\"\"><\/p>\n<h3>\u20ac430 million<\/h3>\n<div>\n<p>in non-repayable grants between 2021 \u2013 2024\u00a0<\/p>\n<\/div>\n<\/div>\n<div>\n<p>    <!-- Particle background container --><\/p>\n<div id=\"particles-js\" class=\"particle-bg\"><\/div>\n<p><!-- Include particles.js library from CDN --><br \/>\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/particles.js@2.0.0\/particles.min.js\"><\/script><\/p>\n<p><!-- Initialize the particle animation --><br \/>\n<script>\n  document.addEventListener(\"DOMContentLoaded\", function () {\n    if (typeof particlesJS !== \"undefined\") {\n      particlesJS(\"particles-js\", {\n        \"particles\": {\n          \"number\": {\n            \"value\": 60,\n            \"density\": {\n              \"enable\": true,\n              \"value_area\": 800\n            }\n          },\n          \"color\": {\n            \"value\": \"#ffffff\"\n          },\n          \"shape\": {\n            \"type\": \"circle\",\n            \"stroke\": {\n              \"width\": 0,\n              \"color\": \"#000000\"\n            }\n          },\n          \"opacity\": {\n            \"value\": 0.5\n          },\n          \"size\": {\n            \"value\": 3,\n            \"random\": true\n          },\n          \"line_linked\": {\n            \"enable\": true,\n            \"distance\": 150,\n            \"color\": \"#ffffff\",\n            \"opacity\": 0.4,\n            \"width\": 1\n          },\n          \"move\": {\n            \"enable\": true,\n            \"speed\": 4,\n            \"direction\": \"none\",\n            \"out_mode\": \"out\"\n          }\n        },\n        \"interactivity\": {\n          \"events\": {\n            \"onhover\": {\n              \"enable\": true,\n              \"mode\": \"repulse\"\n            },\n            \"onclick\": {\n              \"enable\": true,\n              \"mode\": \"push\"\n            }\n          },\n          \"modes\": {\n            \"repulse\": {\n              \"distance\": 100,\n              \"duration\": 0.4\n            },\n            \"push\": {\n              \"particles_nb\": 4\n            }\n          }\n        },\n        \"retina_detect\": true\n      });\n    }\n  });\n<\/script><\/p>\n<\/div>\n<h1>One step at a time<\/h1>\n<h1>Moldova is making itself<\/h1>\n<h1>right at home in the EU!<\/h1>\n<h1>\n<p><b>Stepping closer to the EU\u00a0\u00a0<\/b><\/p>\n<\/h1>\n<div>\n<p><span>Moldova isn\u2019t just looking towards Europe\u2014it\u2019s already moving in! Here\u2019s how:<\/span><\/p>\n<\/div>\n<div>\n<div>\n<p><span>The\u00a0<\/span><b>Connecting Europe Facility<\/b><span>\u00a0funds major transport project<\/span><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>Since 2014, Moldovans can <strong>travel freely across the EU without a visa<\/strong><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p class=\"MsoNormal\">Researchers explore new horizons with <strong>Horizon<\/strong> Europe<o:p><\/o:p><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p><span>Moldova teams up with\u00a0<\/span><b>the EU Civil Protection Mechanism<span>\u00a0<\/span><\/b><span>for better disaster response<\/span><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p><span>As of 1 January 2026, Moldova and the EU eliminate <strong>roaming charges<\/strong><\/span><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p><span>Students and teachers gain new opportunities with\u00a0<\/span><b>Erasmus+<\/b><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p><span>Moldova joined the<\/span><b><span>\u00a0<\/span>LIFE programme<\/b><span>\u00a0to advance climate action and sustainability<\/span><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p><span>Moldova has signed its first-ever\u00a0<\/span><b>EU Security &amp; Defence Partnership<\/b><span>, enhancing cooperation and strengthening its Armed Forces<\/span><\/p>\n<\/div>\n<\/div>\n<div>\n<div>\n<p>In 2025, Moldova joins <strong>SEPA<\/strong>, which enables fast and low-cost euro payments between participating countries<\/p>\n<\/div>\n<\/div>\n<h1>What is this website all about?<\/h1>\n<div>\n<p><span>This is your go-to platform for learning about the\u00a0<\/span><b>EU in Moldova<\/b><span>\u2014from\u00a0<\/span><b>real stories of impact<\/b><span>\u00a0to\u00a0<\/span><b>new opportunities<\/b><span>\u00a0and the latest developments in EU-Moldova relations.<\/span><\/p>\n<p><span>Here, you\u2019ll find:<\/span><\/p>\n<\/div>\n<div>\n<h3>Concrete results<\/h3>\n<div>\n<p>Stories, interviews, and real examples of how EU initiatives are improving people\u2019s lives across Moldova.<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/en\/category\/stories\/\"><\/a><\/p>\n<\/div>\n<div>\n<h3>Opportunities at your fingertips<\/h3>\n<div>\n<p>Open calls, grants, scholarships, training, and exchange programmes from the EU and its Member States.\u00a0<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/en\/category\/opportunities\/\"><\/a><\/p>\n<\/div>\n<div>\n<h3>Essential updates<\/h3>\n<div>\n<p><span>The latest news on EU-Moldova relations, key decisions, and major projects shaping Moldova\u2019s future.<\/span><\/p>\n<\/div>\n<p><a href=\"\/en\/category\/news\/\"><\/a><\/p>\n<\/div>\n<div>\n<h3>Communication campaigns<\/h3>\n<div>\n<p>Stay informed through EU-led campaigns that highlight key topics, and engage the public<\/p>\n<\/div>\n<p><a href=\"https:\/\/eu4moldova.eu\/en\/campaigns\/\"><\/a><\/p>\n<\/div>\n<div>This platform is managed by the EU-funded project \u201cStrategic Communication and Support to Mass Media\u201d, implemented by GOPA PACE, supporting the EU Delegation\u2019s communication efforts in Moldova.<\/div>\n<p><!--more--><br \/>\n<!-- {\"type\":\"layout\",\"children\":[{\"type\":\"section\",\"props\":{\"height_offset_top\":true,\"height_viewport\":90,\"image_position\":\"center-center\",\"padding\":\"none\",\"padding_remove_bottom\":true,\"padding_remove_top\":true,\"style\":\"primary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"\n\n<div class=\\\"scrolling-section\\\">\\n    \n\n<div class=\\\"europe\\\">\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01-1.svg\\\" \\\/>\\n        <\\\/div>\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01-1.svg\\\" \\\/>\\n        <\\\/div>\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01-1.svg\\\" \\\/>\\n        <\\\/div>\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01-1.svg\\\" \\\/>\\n        <\\\/div>\\n        \n\n<div class=\\\"union\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/european_union_large-01.svg\\\" \\\/>\\n        <\\\/div>\\n    <\\\/div>\\n\\n\n\n<div class=\\\"moldova_cont\\\">\\n        \n\n<div class=\\\"moldova\\\">\\n            <img src=\\\"\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/MOLDOVA_vect.svg\\\" \\\/>\\n        <\\\/div>\\n\\n\\n    <\\\/div>\\n\\n \\n    \\n<\\\/div>\\n\\n\\n\",\"css\":\"@keyframes euscroll {\\n    0%  { transform: translateX(0); }\\n    100% { transform: translateX(-100%); }\\n}\\n\\n@keyframes moldovascroll {\\n    0%  { transform: translateX(-100%); }\\n    48% { transform: translateX(20%); }\\n    52% { transform: translateX(20%); }\\n    100% { transform: translateX(-100%); }\\n    \\n}\\n\\n.scrolling-section {\\n    position: relative; \\\/* Creates a common reference for absolute children *\\\/\\n    overflow: hidden;\\n    height: 100vh;\\n    width: 100vw;\\n}\\n\\n.europe, .moldova_cont {\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100vw;\\n    height: 100vh;\\n    display: flex;\\n    align-items: center;\\n    white-space: nowrap;\\n}\\n\\n.europe {\\n    z-index: 1; \\\/* Background layer *\\\/\\n}\\n\\n.moldova_cont {\\n    z-index: 3; \\\/* Foreground layer *\\\/\\n}\\n\\n.union, .moldova {\\n    flex: 0 0 auto;\\n    display: inline-block;\\n}\\n\\n.union img, .moldova img {\\n    height: 100vh;\\n    width: auto;\\n}\\n\\n.moldova img {\\n\\t\\n    opacity: 0.45;\\n    filter:  blur(8px);\\n     \\n}\\n\\n.union {\\n    animation: euscroll 60s infinite linear;\\n}\\n\\n.moldova {\\n    animation: moldovascroll 16s infinite ease-in-out;\\n}\\n\\n\\n.text-container {\\n\\tposition: absolute;\\n    z-index: 2;\\n    width: 800px;\\n    color: #000000;\\n    text-align: center;\\n    font-size: 64px;\\n    font-weight: bold;\\n    overflow: hidden;\\n}\"},\"name\":\"Scroll\"}]}],\"props\":{\"margin\":\"remove-vertical\"}},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"\n\n<div class=\\\"text-wrapper\\\">\\n\n\n<div class=\\\"text-container1\\\">\\n    \n\n<div class=\\\"text-line11\\\">The European Union\\n     <\\\/div>\\n      \n\n<div class=\\\"text-line12\\\">is the largest provider\\n     <\\\/div>\\n      \n\n<div class=\\\"text-line13\\\">of financial assistance\\n     <\\\/div>\\n <\\\/div> \\n    \\n\n\n<div class=\\\"text-container2\\\">\\n    \n\n<div class=\\\"text-line21\\\">a committed trade partner\\n     <\\\/div>\\n    \n\n<div class=\\\"text-line22\\\">& leader in sustainability\\n     <\\\/div>\\n <\\\/div>    \\n     \\n\n\n<div class=\\\"text-container3\\\">\\n\\n     \n\n<div class=\\\"text-line31\\\">a guarantee of peace \\t\\t\\t<\\\/div>\\n     \n\n<div class=\\\"text-line32\\\">& stability \\t\\t<\\\/div>\\n  <\\\/div>    \\n   \\n\n\n<div class=\\\"text-container4\\\">\\n    \\n    \n\n<div class=\\\"text-line41\\\">a promoter of democracy \\t\\t<\\\/div>\\n     \n\n<div class=\\\"text-line42\\\">worldwide\\n         <\\\/div>\\n <\\\/div>\\n <\\\/div>\\n\\n\",\"css\":\".text {\\n    display: flex;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n}\\n\\n.text-container1 {\\n    width: 1200px;\\n    position: relative;\\n    margin-top: -55vh;\\n    top: 50%;\\n    left: 50%;\\n    transform: translate(-50%, -50%);\\n    z-index: 2;\\n    text-align: center;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n}\\n\\n.text-container2 {\\n    width: 1200px;\\n    position: relative;\\n    margin-top: -40vh;\\n    top: 50%;\\n    left: 50%;\\n    transform: translate(-50%, -50%);\\n    z-index: 2;\\n    text-align: center;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n\\n  }\\n.text-container3 {\\n    width: 1200px;\\n    position: relative;\\n    margin-top: -35vh;\\n    top: 50%;\\n    left: 50%;\\n    transform: translate(-50%, -50%);\\n    z-index: 2;\\n    text-align: center;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n}\\n.text-container4 {\\n    width: 1200px;\\n    position: relative;\\n    margin-top: -30vh;\\n    z-index: 2;\\n    top: 50%;\\n    left: 50%;\\n    transform: translate(-50%, -50%);\\n    text-align: center;\\n    align-items: center;\\n    font-size: clamp(20px, 8vw, 80px);\\n    font-weight: bold;\\n    color: #00349A;\\n}\\n\\n\\n.text-container1 div {\\n    opacity: 0;\\n\\n}\\n\\n\\\/* Individual animations for each text line *\\\/\\n.text-line11 {\\n    animation: fadeInOut11 21s forwards infinite;\\n    animation-delay: 0s;\\n}\\n.text-line12 {\\n    animation: fadeInOut12 21s forwards infinite;\\n    animation-delay: 0.5s;\\n}\\n.text-line13 {\\n    animation: fadeInOut13 21s forwards infinite;\\n    animation-delay: 1s;\\n}\\n\\n.text-container2 div {\\n    opacity: 0;\\n    transform: translateY(20px);\\n}\\n.text-line21 {\\n    animation: fadeInOut11 21s forwards infinite;\\n    animation-delay: 6s;\\n}\\n.text-line22 {\\n    animation: fadeInOut12 21s forwards infinite;\\n    animation-delay: 6.5s;\\n}\\n\\n.text-container3 div {\\n    opacity: 0;\\n    transform: translateY(20px);\\n}\\n.text-line31 {\\n    animation: fadeInOut11 21s forwards infinite;\\n    animation-delay: 11s;\\n}\\n.text-line32 {\\n    animation: fadeInOut12 21s forwards infinite;\\n    animation-delay: 11.5s;\\n}\\n\\n.text-container4 div {\\n    opacity: 0;\\n    transform: translateY(20px);\\n}\\n\\n.text-line41 {\\n    animation: fadeInOut11 21s forwards infinite;\\n    animation-delay: 16s;\\n}\\n.text-line42 {\\n    animation: fadeInOut12 21s forwards infinite;\\n    animation-delay: 16.5s;\\n}\\n\\n\\\/* Keyframes for each text-line *\\\/\\n@keyframes fadeInOut11 {\\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut12 {\\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut13 {\\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut21 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut22 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut31 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut32 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut41 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\\n@keyframes fadeInOut42 { \\n    0% { opacity: 0; transform: translateY(20px); }\\n    1% { opacity: 1; transform: translateY(0); }\\n    15% { opacity: 1; }\\n    16% { opacity: 0; transform: translateY(-20px); }\\n}\\n\"},\"name\":\"Text\"}]}]}],\"name\":\"TOP\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"padding_remove_bottom\":true,\"style\":\"primary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"vertical_align\":\"middle\",\"width_medium\":\"1-4\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"EU in Moldova: Investing in people, driving development\",\"title_element\":\"h1\",\"title_style\":\"heading-small\"}},{\"type\":\"html\",\"props\":{\"content\":\"<canvas id=\\\"container\\\" width=\\\"200\\\" height=\\\"200\\\"><\\\/canvas>\\n\\n<script>\\n    var points = [],\\n    velocity2 = 3, \\\/\\\/ velocity squared\\n    canvas = \\ndocument.getElementById('container'),\\n  context = canvas.getContext('2d'),\\n  radius = 5,\\n  boundaryX = 200,\\n  boundaryY = 200,\\n  numberOfPoints = 16;\\n\\ninit();\\n\\nfunction init() {\\n  \\\/\\\/ create points\\n  for (var i = 0; i<numberOfPoints; i++) {\\n    createPoint();\\n  }\\n  \\\/\\\/ create connections\\n  for (var i = 0, l=points.length; i<l; i++) {\\n    var point = points[i];\\n    if(i == 0) {\\n      points[i].buddy = points[points.length-1];\\n    } else {\\n      points[i].buddy = points[i-1];\\n    }\\n  }\\n  \\n  \\\/\\\/ animate\\n  animate();\\n}\\n\\nfunction createPoint() {\\n  var point = {}, vx2, vy2;\\n  point.x = Math.random()*boundaryX;\\n  point.y = Math.random()*boundaryY;\\n  \\\/\\\/ random vx \\n  point.vx = (Math.floor(Math.random())*2-1)*Math.random();\\n  vx2 = Math.pow(point.vx, 2);\\n  \\\/\\\/ vy^2 = velocity^2 - vx^2\\n  vy2 = velocity2 - vx2;\\n  point.vy = Math.sqrt(vy2) * (Math.random()*2-1);\\n  points.push(point);\\n}\\n\\nfunction resetVelocity(point, axis, dir) {\\n  var vx, vy;\\n  if(axis == 'x') {\\n    point.vx = dir*Math.random();  \\n    vx2 = Math.pow(point.vx, 2);\\n  \\\/\\\/ vy^2 = velocity^2 - vx^2\\n  vy2 = velocity2 - vx2;\\n  point.vy = Math.sqrt(vy2) * (Math.random()*2-1);\\n  } else {\\n    point.vy = dir*Math.random();  \\n    vy2 = Math.pow(point.vy, 2);\\n  \\\/\\\/ vy^2 = velocity^2 - vx^2\\n  vx2 = velocity2 - vy2;\\n  point.vx = Math.sqrt(vx2) * (Math.random()*2-1);\\n  }\\n}\\n\\nfunction drawCircle(x, y) {\\n  context.beginPath();\\n  context.arc(x, y, radius, 0, 2 * Math.PI, false);\\n  context.fillStyle = '#ffffff';\\n  context.fill();  \\n}\\n\\nfunction drawLine(x1, y1, x2, y2) {\\n  context.beginPath();\\n  context.moveTo(x1, y1);\\n  context.lineTo(x2, y2);\\n  context.strokeStyle = '#ffffff'\\n  context.stroke();\\n}  \\n\\nfunction draw() {\\n  for(var i =0, l=points.length; i<l; i++) {\\n    \\\/\\\/ circles\\n    var point = points[i];\\n    point.x += point.vx;\\n    point.y += point.vy;\\n    drawCircle(point.x, point.y);\\n    \\\/\\\/ lines\\n    drawLine(point.x, point.y, point.buddy.x, point.buddy.y);\\n    \\\/\\\/ check for edge\\n    if(point.x < 0+radius) {\\n      resetVelocity(point, 'x', 1);\\n    } else if(point.x > boundaryX-radius) {\\n      resetVelocity(point, 'x', -1);\\n    } else if(point.y < 0+radius) {\\n      resetVelocity(point, 'y', 1);\\n    } else if(point.y > boundaryY-radius) {\\n      resetVelocity(point, 'y', -1);\\n    } \\n  }\\n}\\n\\nfunction animate() {\\n  context.clearRect ( 0 , 0 , 200 , 200 );\\n  draw();\\n  requestAnimationFrame(animate);\\n}\\n<\\\/script>\\n    \\n    \",\"css\":\"\\n\\n.container {\\n  align-items: center;\\n  position: relative;\\n  width: 400px;\\n  height: 400px;\\n  margin: auto;\\n  transform: rotate(45deg);\\n  top: 0; bottom: 0; left: 0; right: 0;\\n}\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"prevent_collapse\":false,\"vertical_align\":\"bottom\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>The European Union is Moldova\\u2019s largest partner, driving progress in economic growth, governance reforms, infrastructure development, and social well-being. Through strategic investments and cooperation, the EU actively supports Moldova\\u2019s path to a prosperous, stable, and connected future. Hundreds of projects across various sectors contribute to improving the quality of life for citizens, fostering business growth, creating jobs, and expanding opportunities for young people.<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"Stronger partnership, better lives\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"heading-small\"}},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p><span>The Association Agreement, signed in 2014, along with the Deep and Comprehensive Free Trade Area (DCFTA), is the foundation of Moldova\\u2019s economic and political integration with the EU. This partnership has opened markets, strengthened trade relations, and supported Moldova\\u2019s economic growth.<\\\/span><span><\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"EU \\u2013 Moldova relations\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h2\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p><span>Moldova took a historic step towards EU membership in June 2022, when it was granted EU candidate status. In June 2024, the country officially launched accession negotiations, marking a new stage in its cooperation with the EU.\\u00a0<\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"EU negotations\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h3\"}},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p><span>More on the EU Enlargement Package and Moldova\\u2019s progress towards EU accession here:<\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/enlargement\\\/\",\"link_style\":\"default\",\"link_text\":\"EU Enlargement\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]}],\"props\":{\"layout\":\"1-4,1-2,1-4\"}}],\"name\":\"Stonger partnership\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"primary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"3-5,2-5\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"3-5\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>The EU\\u2019s support for Moldova goes far beyond financial assistance\\u2014it translates into stronger institutions, modern infrastructure, economic opportunities, and tangible improvements in people\\u2019s daily lives. While many recognize the EU as Moldova\\u2019s largest partner, there is always more to discover about the depth and impact of this support.<\\\/p>\\n\n\n<p>Since 2021, the EU has provided over \\u20ac430 million in non-repayable grants, targeting economic reforms, the energy sector, refugee crisis management, and security initiatives. Under the EU Economic and Investment Plan, \\u20ac1.6 billion has been mobilised for strategic projects, including infrastructure and energy development.<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/the-eumoldova-factsheet-2024\\\/\",\"link_style\":\"default\",\"link_text\":\"The EU & Moldova Factsheet\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"EU support: More than just numbers\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"heading-small\"}},{\"type\":\"fragment\",\"props\":{\"margin\":\"default\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"1-2,1-2\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p><span>In 2024, the European Union has approved an unprecedented financial package of \\u20ac1.9 billion to support the Republic of Moldova in its preparations for EU membership. Moldova Growth Plan aims to accelerate essential reforms, boost the national economy, and ensure gradual access to the EU single market.<\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/moldova-growth-plan\\\/\",\"link_style\":\"default\",\"link_text\":\"Growth Plan\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"},\"name\":\"pane_eu\"}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"vertical_align\":\"bottom\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"<br \/>\\n\n\n<div class=\\\"animation-target\\\">\\n<\\\/div>\\n\\n<br \/>\\n\",\"css\":\"\\n.animation-target {\\n  display:block;\\n  width:10px;\\n  min-height:10px;\\n  background:white;\\n  margin:1em auto;\\n  padding:1em;\\n  \\n}\\n\\n\\n\\n.animation-target {\\n  animation: animation 2000ms linear infinite both;\\n}\\n\\n\\\/* Generated with Bounce.js. Edit at https:\\\/\\\/goo.gl\\\/Z3kBJC *\\\/\\n\\n@keyframes animation { \\n  0% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  2.15% { transform: matrix3d(0.589, 0, 0, 0, 0, 1.514, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  4.3% { transform: matrix3d(0.297, 0, 0, 0, 0, 1.879, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  6.46% { transform: matrix3d(0.158, 0, 0, 0, 0, 2.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  8.61% { transform: matrix3d(0.125, 0, 0, 0, 0, 2.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  14.16% { transform: matrix3d(0.183, 0, 0, 0, 0, 2.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  19.72% { transform: matrix3d(0.205, 0, 0, 0, 0, 1.994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  24.9% { transform: matrix3d(0.201, 0, 0, 0, 0, 1.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  25% { transform: matrix3d(0.201, 0, 0, 0, 0, 1.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  27.15% { transform: matrix3d(0.138, 0.145, 0, 0, -1.445, 1.382, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  29.3% { transform: matrix3d(0.038, 0.196, 0, 0, -1.964, 0.379, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  30.83% { transform: matrix3d(-0.006, 0.2, 0, 0, -2, -0.059, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  31.46% { transform: matrix3d(-0.016, 0.199, 0, 0, -1.994, -0.164, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  33.61% { transform: matrix3d(-0.029, 0.198, 0, 0, -1.979, -0.292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  39.16% { transform: matrix3d(-0.006, 0.2, 0, 0, -1.999, -0.065, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  41.99% { transform: matrix3d(0, 0.2, 0, 0, -2, 0.005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  44.72% { transform: matrix3d(0.002, 0.2, 0, 0, -2, 0.02, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  49.9% { transform: matrix3d(0.001, 0.2, 0, 0, -2, 0.005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  50% { transform: matrix3d(0.001, 0.2, 0, 0, -2, 0.005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  52.15% { transform: matrix3d(0, 0.611, 0, 0, -1.486, 0.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  54.3% { transform: matrix3d(0, 0.903, 0, 0, -1.121, -0.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  55.83% { transform: matrix3d(-0.001, 1.015, 0, 0, -0.981, -0.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  56.46% { transform: matrix3d(-0.001, 1.042, 0, 0, -0.948, -0.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  58.61% { transform: matrix3d(0, 1.075, 0, 0, -0.907, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  64.16% { transform: matrix3d(0, 1.017, 0, 0, -0.979, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  66.99% { transform: matrix3d(0, 0.999, 0, 0, -1.001, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  69.72% { transform: matrix3d(0, 0.995, 0, 0, -1.006, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  75% { transform: matrix3d(0, 0.999, 0, 0, -1.002, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  80.83% { transform: matrix3d(0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  91.99% { transform: matrix3d(0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }\\n  100% { transform: matrix3d(0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } \\n}\\n\\n\\n\\n\\n\\n\\nResources\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<span>\n\n<p>Beyond direct funding, the EU has implemented over 400 projects since 2017, both locally (across Moldova) and regionally (in cooperation with Eastern Partnership countries), driving progress across diverse sectors.<\\\/p><\\\/span>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/projects\\\/\",\"link_style\":\"default\",\"link_text\":\"EU-funded projects\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]}]}]}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-5\"},\"children\":[{\"type\":\"fragment\",\"props\":{\"margin\":\"default\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"1-2,1-2\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>in loans and grants since 2021<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image\":\"wp-content\\\/uploads\\\/2025\\\/04\\\/1.jpg\",\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_height\":400,\"image_svg_color\":\"emphasis\",\"image_width\":600,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta\":\"\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_image_no_padding\":true,\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u20ac2.2 billion\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h1\"},\"name\":\"panel_what\"},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>to support the Republic of Moldova in its preparations for EU membership<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image\":\"wp-content\\\/uploads\\\/2024\\\/10\\\/Moldova_growth-scaled.jpg\",\"image_align\":\"top\",\"image_alt\":\"90 mayors and deputy mayors from the Republic of Moldova attended a forum on regional development\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_height\":400,\"image_svg_color\":\"emphasis\",\"image_width\":600,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta\":\"\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_image_no_padding\":true,\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u20ac1.9 billion \",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h1\"},\"name\":\"panel_what\"}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"\n\n\n\n\",\"margin\":\"default\"}},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>has been mobilised for strategic projects, including infrastructure and energy development<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image\":\"wp-content\\\/uploads\\\/2025\\\/01\\\/Ciumas.jpg\",\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_height\":400,\"image_svg_color\":\"emphasis\",\"image_width\":600,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta\":\"\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_image_no_padding\":true,\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u20ac1.6 billion\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h1\"},\"name\":\"panel_what\"},{\"type\":\"panel\",\"props\":{\"content\":\"\n\n<p>in non-repayable grants between 2021 \\u2013 2024\\u00a0<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image\":\"wp-content\\\/uploads\\\/2025\\\/01\\\/Electric-Maraton-scaled.jpg\",\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_height\":400,\"image_svg_color\":\"emphasis\",\"image_width\":600,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta\":\"\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_image_no_padding\":true,\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"\\u20ac430 million\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_style\":\"h1\"},\"name\":\"panel_what\"}]}]}]}]}]}],\"name\":\"EU Support\"},{\"type\":\"section\",\"props\":{\"height\":\"pixels\",\"height_viewport\":300,\"image_position\":\"center-center\",\"padding_remove_bottom\":true,\"padding_remove_top\":true,\"style\":\"secondary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"<!-- Particle background container -->\\n<\/p>\n<div id=\\\"particles-js\\\" class=\\\"particle-bg\\\"><\\\/div>\\n\\n<!-- Include particles.js library from CDN -->\\n<script src=\\\"https:\\\/\\\/cdn.jsdelivr.net\\\/npm\\\/particles.js@2.0.0\\\/particles.min.js\\\"><\\\/script>\\n\\n<!-- Initialize the particle animation -->\\n<script>\\n  document.addEventListener(\\\"DOMContentLoaded\\\", function () {\\n    if (typeof particlesJS !== \\\"undefined\\\") {\\n      particlesJS(\\\"particles-js\\\", {\\n        \\\"particles\\\": {\\n          \\\"number\\\": {\\n            \\\"value\\\": 60,\\n            \\\"density\\\": {\\n              \\\"enable\\\": true,\\n              \\\"value_area\\\": 800\\n            }\\n          },\\n          \\\"color\\\": {\\n            \\\"value\\\": \\\"#ffffff\\\"\\n          },\\n          \\\"shape\\\": {\\n            \\\"type\\\": \\\"circle\\\",\\n            \\\"stroke\\\": {\\n              \\\"width\\\": 0,\\n              \\\"color\\\": \\\"#000000\\\"\\n            }\\n          },\\n          \\\"opacity\\\": {\\n            \\\"value\\\": 0.5\\n          },\\n          \\\"size\\\": {\\n            \\\"value\\\": 3,\\n            \\\"random\\\": true\\n          },\\n          \\\"line_linked\\\": {\\n            \\\"enable\\\": true,\\n            \\\"distance\\\": 150,\\n            \\\"color\\\": \\\"#ffffff\\\",\\n            \\\"opacity\\\": 0.4,\\n            \\\"width\\\": 1\\n          },\\n          \\\"move\\\": {\\n            \\\"enable\\\": true,\\n            \\\"speed\\\": 4,\\n            \\\"direction\\\": \\\"none\\\",\\n            \\\"out_mode\\\": \\\"out\\\"\\n          }\\n        },\\n        \\\"interactivity\\\": {\\n          \\\"events\\\": {\\n            \\\"onhover\\\": {\\n              \\\"enable\\\": true,\\n              \\\"mode\\\": \\\"repulse\\\"\\n            },\\n            \\\"onclick\\\": {\\n              \\\"enable\\\": true,\\n              \\\"mode\\\": \\\"push\\\"\\n            }\\n          },\\n          \\\"modes\\\": {\\n            \\\"repulse\\\": {\\n              \\\"distance\\\": 100,\\n              \\\"duration\\\": 0.4\\n            },\\n            \\\"push\\\": {\\n              \\\"particles_nb\\\": 4\\n            }\\n          }\\n        },\\n        \\\"retina_detect\\\": true\\n      });\\n    }\\n  });\\n<\\\/script>\\n\",\"css\":\"\\\/* Particle background styling *\\\/\\n.particle-bg {\\n  position: absolute;\\n  width: 100%;\\n  z-index: 0;\\n  height: 300px\\n\\n}\\n\"}},{\"type\":\"headline\",\"props\":{\"animation\":\"parallax\",\"content\":\"One step at a time\",\"margin_remove_bottom\":true,\"parallax_x\":\"-50 1%,0 100%\",\"parallax_y\":\"0\",\"position\":\"relative\",\"position_top\":\"15\",\"text_align\":\"center\",\"title_element\":\"h1\"}},{\"type\":\"headline\",\"props\":{\"animation\":\"parallax\",\"content\":\"Moldova is making itself\",\"margin_remove_bottom\":true,\"margin_remove_top\":true,\"parallax_easing\":\"0\",\"parallax_x\":\"50 1%,0 100%\",\"position\":\"relative\",\"position_top\":\"15\",\"text_align\":\"center\",\"title_element\":\"h1\"}},{\"type\":\"headline\",\"props\":{\"animation\":\"parallax\",\"content\":\"right at home in the EU!\",\"margin_remove_top\":true,\"parallax_x\":\"-50 1%,0 100%\",\"position\":\"relative\",\"position_top\":\"15\",\"text_align\":\"center\",\"title_element\":\"h1\"}}]}]}]},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"2-3,1-3\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-3\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"<\/p>\n<p><b>Stepping closer to the EU\\u00a0\\u00a0<\\\/b><\\\/p>\",\"title_element\":\"h1\",\"title_style\":\"heading-small\"}},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p><span>Moldova isn\\u2019t just looking towards Europe\\u2014it\\u2019s already moving in! Here\\u2019s how:<\\\/span><\\\/p>\",\"margin\":\"default\",\"text_style\":\"large\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"}}]},{\"type\":\"row\",\"props\":{\"layout\":\"1-4,1-4,1-4,1-4|1-2,1-2,1-2,1-2\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p><span>The\\u00a0<\\\/span><b>Connecting Europe Facility<\\\/b><span>\\u00a0funds major transport project<\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>Since 2014, Moldovans can <strong>travel freely across the EU without a visa<\\\/strong><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p class=\\\"MsoNormal\\\">Researchers explore new horizons with <strong>Horizon<\\\/strong> Europe<o:p><\\\/o:p><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p><span>Moldova teams up with\\u00a0<\\\/span><b>the EU Civil Protection Mechanism<span>\\u00a0<\\\/span><\\\/b><span>for better disaster response<\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p><span>As of 1 January 2026, Moldova and the EU eliminate <strong>roaming charges<\\\/strong><\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p><span>Students and teachers gain new opportunities with\\u00a0<\\\/span><b>Erasmus+<\\\/b><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p><span>Moldova joined the<\\\/span><b><span>\\u00a0<\\\/span>LIFE programme<\\\/b><span>\\u00a0to advance climate action and sustainability<\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p><span>Moldova has signed its first-ever\\u00a0<\\\/span><b>EU Security &amp; Defence Partnership<\\\/b><span>, enhancing cooperation and strengthening its Armed Forces<\\\/span><\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"content\":\"<\/p>\n<p>In 2025, Moldova joins <strong>SEPA<\\\/strong>, which enables fast and low-cost euro payments between participating countries<\\\/p>\",\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]}]}],\"name\":\"STEPPING CLOSER\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"primary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"1-3,2-3\",\"margin\":\"remove-vertical\",\"margin_remove_bottom\":true,\"margin_remove_top\":true,\"row_gap\":\"collapse\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"What is this website all about?\",\"title_element\":\"h1\",\"title_style\":\"heading-large\"}},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p><span>This is your go-to platform for learning about the\\u00a0<\\\/span><b>EU in Moldova<\\\/b><span>\\u2014from\\u00a0<\\\/span><b>real stories of impact<\\\/b><span>\\u00a0to\\u00a0<\\\/span><b>new opportunities<\\\/b><span>\\u00a0and the latest developments in EU-Moldova relations.<\\\/span><\\\/p>\\n<\/p>\n<p><span>Here, you\\u2019ll find:<\\\/span><\\\/p>\",\"margin\":\"default\",\"text_color\":\"success\",\"text_style\":\"large\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-3\"},\"children\":[{\"type\":\"panel\",\"props\":{\"animation\":\"slide-bottom-medium\",\"content\":\"<\/p>\n<p>Stories, interviews, and real examples of how EU initiatives are improving people\\u2019s lives across Moldova.<\\\/p>\",\"content_align\":false,\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\\n.uk-panel.uk-tile-primary {\\n    border: 1px solid white;\\n}\",\"icon\":\"play-circle\",\"icon_width\":80,\"image_align\":\"left\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"auto\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/category\\\/stories\\\/\",\"link_style\":\"default\",\"link_text\":\"\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_link\":true,\"panel_link_hover\":\"true\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"Concrete results\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"animation\":\"slide-bottom-medium\",\"content\":\"<\/p>\n<p>Open calls, grants, scholarships, training, and exchange programmes from the EU and its Member States.\\u00a0<\\\/p>\",\"content_align\":false,\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\\n.uk-panel.uk-tile-primary {\\n    border: 1px solid white;\\n}\",\"icon\":\"crosshairs\",\"icon_width\":80,\"image_align\":\"left\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"auto\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/category\\\/opportunities\\\/\",\"link_style\":\"default\",\"link_text\":\"\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_link\":true,\"panel_link_hover\":\"true\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"Opportunities at your fingertips\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"animation\":\"slide-bottom-medium\",\"content\":\"<\/p>\n<p><span>The latest news on EU-Moldova relations, key decisions, and major projects shaping Moldova\\u2019s future.<\\\/span><\\\/p>\",\"content_align\":false,\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\\n.uk-panel.uk-tile-primary {\\n    border: 1px solid white;\\n}\",\"icon\":\"info\",\"icon_width\":80,\"image_align\":\"left\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"auto\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"link\":\"en\\\/category\\\/news\\\/\",\"link_style\":\"default\",\"link_text\":\"\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_link\":true,\"panel_link_hover\":\"true\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"Essential updates\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}},{\"type\":\"panel\",\"props\":{\"animation\":\"slide-bottom-medium\",\"content\":\"<\/p>\n<p>Stay informed through EU-led campaigns that highlight key topics, and engage the public<\\\/p>\",\"content_align\":false,\"content_column_breakpoint\":\"m\",\"content_style\":\"text-large\",\"css\":\".el-content {\\ncolor: #ffffff;\\n}\\n.uk-panel.uk-tile-primary {\\n    border: 1px solid white;\\n}\",\"icon\":\"happy\",\"icon_width\":80,\"image_align\":\"left\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"auto\",\"image_svg_color\":\"emphasis\",\"image_vertical_align\":true,\"link\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/campaigns\\\/\",\"link_style\":\"default\",\"link_text\":\"\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"panel_link\":true,\"panel_link_hover\":\"true\",\"panel_padding\":\"default\",\"panel_style\":\"tile-primary\",\"title\":\"Communication campaigns\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\"}}]}]}],\"name\":\"What is this all about\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"padding\":\"xsmall\",\"padding_remove_bottom\":true,\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"expand\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"This platform is managed by the EU-funded project \\u201cStrategic Communication and Support to Mass Media\\u201d, implemented by GOPA PACE, supporting the EU Delegation\\u2019s communication efforts in Moldova.\",\"margin\":\"remove-vertical\",\"margin_remove_bottom\":true,\"margin_remove_top\":true,\"text_align\":\"center\",\"text_color\":\"muted\",\"text_style\":\"small\"}}]}]}],\"name\":\"Disclaimer\"}],\"version\":\"4.5.32\"} --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The European Union is the largest provider of financial assistance a committed trade partner &#038; leader in sustainability a guarantee of peace &#038; stability a promoter of democracy worldwide EU in Moldova: Investing in people, driving development Stronger partnership, better lives The European Union is Moldova\u2019s largest partner, driving progress in economic growth, governance reforms, [&hellip;]<\/p>\n","protected":false},"author":35,"featured_media":0,"parent":0,"menu_order":5,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-14","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>EU and Moldova - EU for Moldova<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/eu4moldova.eu\/en\/eu-and-moldova\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EU and Moldova - EU for Moldova\" \/>\n<meta property=\"og:description\" content=\"The European Union is the largest provider of financial assistance a committed trade partner &#038; leader in sustainability a guarantee of peace &#038; stability a promoter of democracy worldwide EU in Moldova: Investing in people, driving development Stronger partnership, better lives The European Union is Moldova\u2019s largest partner, driving progress in economic growth, governance reforms, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eu4moldova.eu\/en\/eu-and-moldova\/\" \/>\n<meta property=\"og:site_name\" content=\"EU for Moldova\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/EUDelegationMoldova\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-03T08:01:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eu4moldova.eu\/wp-content\/uploads\/EU-flag_1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\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=\"@euinmoldova\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"13 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/eu-and-moldova\\\/\",\"url\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/eu-and-moldova\\\/\",\"name\":\"EU and Moldova - EU for Moldova\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#website\"},\"datePublished\":\"2016-11-14T09:59:17+00:00\",\"dateModified\":\"2026-02-03T08:01:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/eu-and-moldova\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/eu-and-moldova\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/eu-and-moldova\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/eu4moldova.eu\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"EU and Moldova\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#website\",\"url\":\"https:\\\/\\\/eu4moldova.eu\\\/\",\"name\":\"EU for Moldova\",\"description\":\"European Union for the Republic of Moldova\",\"publisher\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/eu4moldova.eu\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#organization\",\"name\":\"European Union in the Republic of Moldova\",\"url\":\"https:\\\/\\\/eu4moldova.eu\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/eu4moldova.eu\\\/wp-content\\\/uploads\\\/eu-moldova-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/eu4moldova.eu\\\/wp-content\\\/uploads\\\/eu-moldova-logo-1.png\",\"width\":5057,\"height\":870,\"caption\":\"European Union in the Republic of Moldova\"},\"image\":{\"@id\":\"https:\\\/\\\/eu4moldova.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/EUDelegationMoldova\\\/\",\"https:\\\/\\\/x.com\\\/euinmoldova\",\"https:\\\/\\\/www.instagram.com\\\/euinmoldova\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/EUDelegationMoldova\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"EU and Moldova - EU for Moldova","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:\/\/eu4moldova.eu\/en\/eu-and-moldova\/","og_locale":"en_US","og_type":"article","og_title":"EU and Moldova - EU for Moldova","og_description":"The European Union is the largest provider of financial assistance a committed trade partner &#038; leader in sustainability a guarantee of peace &#038; stability a promoter of democracy worldwide EU in Moldova: Investing in people, driving development Stronger partnership, better lives The European Union is Moldova\u2019s largest partner, driving progress in economic growth, governance reforms, [&hellip;]","og_url":"https:\/\/eu4moldova.eu\/en\/eu-and-moldova\/","og_site_name":"EU for Moldova","article_publisher":"https:\/\/www.facebook.com\/EUDelegationMoldova\/","article_modified_time":"2026-02-03T08:01:01+00:00","og_image":[{"width":1600,"height":900,"url":"https:\/\/eu4moldova.eu\/wp-content\/uploads\/EU-flag_1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@euinmoldova","twitter_misc":{"Est. reading time":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/eu4moldova.eu\/en\/eu-and-moldova\/","url":"https:\/\/eu4moldova.eu\/en\/eu-and-moldova\/","name":"EU and Moldova - EU for Moldova","isPartOf":{"@id":"https:\/\/eu4moldova.eu\/#website"},"datePublished":"2016-11-14T09:59:17+00:00","dateModified":"2026-02-03T08:01:01+00:00","breadcrumb":{"@id":"https:\/\/eu4moldova.eu\/en\/eu-and-moldova\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eu4moldova.eu\/en\/eu-and-moldova\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/eu4moldova.eu\/en\/eu-and-moldova\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eu4moldova.eu\/en\/"},{"@type":"ListItem","position":2,"name":"EU and Moldova"}]},{"@type":"WebSite","@id":"https:\/\/eu4moldova.eu\/#website","url":"https:\/\/eu4moldova.eu\/","name":"EU for Moldova","description":"European Union for the Republic of Moldova","publisher":{"@id":"https:\/\/eu4moldova.eu\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eu4moldova.eu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/eu4moldova.eu\/#organization","name":"European Union in the Republic of Moldova","url":"https:\/\/eu4moldova.eu\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eu4moldova.eu\/#\/schema\/logo\/image\/","url":"https:\/\/eu4moldova.eu\/wp-content\/uploads\/eu-moldova-logo-1.png","contentUrl":"https:\/\/eu4moldova.eu\/wp-content\/uploads\/eu-moldova-logo-1.png","width":5057,"height":870,"caption":"European Union in the Republic of Moldova"},"image":{"@id":"https:\/\/eu4moldova.eu\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/EUDelegationMoldova\/","https:\/\/x.com\/euinmoldova","https:\/\/www.instagram.com\/euinmoldova","https:\/\/www.youtube.com\/c\/EUDelegationMoldova"]}]}},"_links":{"self":[{"href":"https:\/\/eu4moldova.eu\/en\/wp-json\/wp\/v2\/pages\/14","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eu4moldova.eu\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/eu4moldova.eu\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/eu4moldova.eu\/en\/wp-json\/wp\/v2\/users\/35"}],"replies":[{"embeddable":true,"href":"https:\/\/eu4moldova.eu\/en\/wp-json\/wp\/v2\/comments?post=14"}],"version-history":[{"count":122,"href":"https:\/\/eu4moldova.eu\/en\/wp-json\/wp\/v2\/pages\/14\/revisions"}],"predecessor-version":[{"id":145694,"href":"https:\/\/eu4moldova.eu\/en\/wp-json\/wp\/v2\/pages\/14\/revisions\/145694"}],"wp:attachment":[{"href":"https:\/\/eu4moldova.eu\/en\/wp-json\/wp\/v2\/media?parent=14"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}