{"id":576,"date":"2023-12-23T17:21:25","date_gmt":"2023-12-23T17:21:25","guid":{"rendered":"https:\/\/c-galan.com\/?page_id=576"},"modified":"2025-08-01T17:04:21","modified_gmt":"2025-08-01T17:04:21","slug":"home","status":"publish","type":"page","link":"https:\/\/c-galan.com\/","title":{"rendered":"Home"},"content":{"rendered":"<div>\n<link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/meyer-reset\/2.0\/reset.min.css\">\n<meta name=\"viewport\" content=\"width=device-width\"><link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/normalize\/5.0.0\/normalize.min.css\">\n<link rel=\"stylesheet\" href=\"\/style.css\">\n<section class=\"section-one section\">\n<div id=\"space\">\n<div id=\"presentation\">\n\t\t<\/div>\n<div class=\"deco_sky\" id=\"moon\"><\/div>\n<div class=\"deco_sky\" id=\"mars\"><\/div>\n<div class=\"deco_sky\" id=\"venus\"><\/div>\n<p>\t\t<img decoding=\"async\" src=\"http:\/\/c-galan.com\/wp-content\/uploads\/2024\/09\/gato2.png\" alt=\"Un bello gato\" id=\"asteroid\" \/><br \/>\n\t\t<img decoding=\"async\" src=\"http:\/\/c-galan.com\/wp-content\/uploads\/2024\/09\/gato1.png\" alt=\"Un bello gato\" id=\"asteroid2\" \/><\/p><\/div>\n<\/section>\n<p><!-- partial --><br \/>\n<script src='https:\/\/code.jquery.com\/jquery-2.2.4.min.js'><\/script><\/p>\n<p>  <script src='https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.6.4\/jquery.min.js'><\/script><\/p>\n<\/div>\n<div>\n<h1>Hi, I am Cinthia \ud83d\udc4b<\/h1>\n<\/div>\n<div>\n<h1 style=\"text-align: right;\"><span style=\"color: #ffd601;\">Creative Technologist<\/span><\/h1>\n<\/div>\n<div>\n<h2 style=\"text-align: left;\"><strong>Blending Animation, Art, and Technology for Social Change<\/strong><\/h2>\n<\/div>\n<div>\n<p>    <!-- Bloque HTML en tu p\u00e1gina --><\/p>\n<div id=\"sketch-container\"><\/div>\n<p><script>\n  function setup() {\n    let canvas = createCanvas(400, 400);\n    canvas.parent('sketch-container'); \/\/ El canvas se ubicar\u00e1 dentro del div \"sketch-container\"\n    colorMode(HSB);\n    angleMode(DEGREES);\n    describe('Two eyes that follow the cursor.');\n  }<\/p>\n<p>  function draw() {\n    background(0);\n    let leftX = 150;\n    let leftY = 200;\n    let leftAngle = atan2(mouseY - leftY, mouseX - leftX);\n    push();\n    translate(leftX, leftY);\n    fill(255);\n    ellipse(0, 0, 50, 50);\n    rotate(leftAngle);\n    fill(0);\n    ellipse(12.5, 0, 25, 25);\n    pop();<\/p>\n<p>    let rightX = 250;\n    let rightY = 200;\n    let rightAngle = atan2(mouseY - rightY, mouseX - rightX);\n    push();\n    translate(rightX, rightY);\n    fill(255);\n    ellipse(0, 0, 50, 50);\n    rotate(rightAngle);\n    fill(0);\n    ellipse(12.5, 0, 25, 25);\n    pop();\n  }\n<\/script><\/p>\n<\/div>\n<div>\n<p>    <!DOCTYPE html><br \/>\n<html lang=\"en\"><br \/>\n<head><br \/>\n  <meta charset=\"UTF-8\"><br \/>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><br \/>\n  <title>Interactive Skill Bars with Percentage<\/title><\/p>\n<style>\n  \/* Contenedor principal *\/\n  .skills {\n    max-width: 700px;\n    margin: 40px auto;\n    font-family: 'Arial', sans-serif;\n    background: linear-gradient(145deg, #1e1e1e, #2a2a2a); \/* Fondo con gradiente *\/\n    border-radius: 20px;\n    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); \/* Sombra *\/\n    padding: 30px;\n    color: white;\n  }<\/p>\n<p>  .skills h2 {\n    text-align: center;\n    margin-bottom: 30px;\n    font-size: 28px;\n    color: #f2eede;\n  }<\/p>\n<p>  .skill {\n    margin-bottom: 25px;\n  }<\/p>\n<p>  .skill-name {\n    font-size: 18px;\n    margin-bottom: 8px;\n    color: #f2eede;\n  }<\/p>\n<p>  \/* Contenedor de la barra *\/\n  .skill-bar-container {\n    background-color: #333;\n    border-radius: 15px;\n    overflow: hidden;\n    height: 30px;\n    position: relative;\n    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5); \/* Sombra interna *\/\n  }<\/p>\n<p>  \/* Barra animada *\/\n  .skill-bar {\n    background: linear-gradient(90deg, #3b82f6, #06b6d4); \/* Gradiente moderno *\/\n    height: 100%;\n    width: 0;\n    transition: width 0.8s ease-in-out; \/* Animaci\u00f3n m\u00e1s suave *\/\n    position: relative;\n  }<\/p>\n<p>  \/* Porcentaje en la barra *\/\n  .skill-percentage {\n    position: absolute;\n    top: 0;\n    left: 50%;\n    transform: translateX(-50%);\n    color: white;\n    font-size: 14px;\n    font-weight: bold;\n    line-height: 30px;\n    opacity: 0; \/* Invisible inicialmente *\/\n    transition: opacity 0.3s ease-in-out;\n  }<\/p>\n<p>  \/* Mostrar porcentaje al pasar el cursor *\/\n  .skill-bar-container:hover .skill-percentage {\n    opacity: 1; \/* Se hace visible al pasar el cursor *\/\n  }<\/p>\n<p>  \/* Animaci\u00f3n hover *\/\n  .skill-bar-container:hover .skill-bar {\n    filter: brightness(1.2); \/* Efecto de brillo *\/\n  }\n<\/style>\n<p><\/head><br \/>\n<body><\/p>\n<div class=\"skills\">\n<h2>Technical Skills<\/h2>\n<div class=\"skill\">\n<div class=\"skill-name\">Adobe Creative Cloud<\/div>\n<div class=\"skill-bar-container\">\n<div class=\"skill-bar\" data-skill=\"95\">\n<div class=\"skill-percentage\">95%<\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"skill\">\n<div class=\"skill-name\">CMS (WordPress)<\/div>\n<div class=\"skill-bar-container\">\n<div class=\"skill-bar\" data-skill=\"85\">\n<div class=\"skill-percentage\">85%<\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"skill\">\n<div class=\"skill-name\">HTML, CSS, JavaScript<\/div>\n<div class=\"skill-bar-container\">\n<div class=\"skill-bar\" data-skill=\"80\">\n<div class=\"skill-percentage\">80%<\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"skill\">\n<div class=\"skill-name\">PHP<\/div>\n<div class=\"skill-bar-container\">\n<div class=\"skill-bar\" data-skill=\"70\">\n<div class=\"skill-percentage\">70%<\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"skill\">\n<div class=\"skill-name\">Figma<\/div>\n<div class=\"skill-bar-container\">\n<div class=\"skill-bar\" data-skill=\"65\">\n<div class=\"skill-percentage\">65%<\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"skill\">\n<div class=\"skill-name\">Tableau<\/div>\n<div class=\"skill-bar-container\">\n<div class=\"skill-bar\" data-skill=\"65\">\n<div class=\"skill-percentage\">65%<\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"skill\">\n<div class=\"skill-name\">Google Ads\/Analytics<\/div>\n<div class=\"skill-bar-container\">\n<div class=\"skill-bar\" data-skill=\"80\">\n<div class=\"skill-percentage\">80%<\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<p>  <script>\n    \/\/ Seleccionar todas las barras\n    const skillBars = document.querySelectorAll('.skill-bar');<\/p>\n<p>    \/\/ Llenar las barras autom\u00e1ticamente al cargar la p\u00e1gina\n    window.addEventListener('DOMContentLoaded', () => {\n      skillBars.forEach(bar => {\n        const percentage = bar.getAttribute('data-skill'); \/\/ Obtiene el porcentaje\n        bar.style.width = `${percentage}%`; \/\/ Llena la barra\n      });\n    });\n  <\/script><\/p>\n<p><\/body><br \/>\n<\/html><\/p>\n<\/div>\n<div>\n<h1 id=\"work\" style=\"text-align: center;\"><span style=\"color: #fffff;\">Here is some of my work<\/span><\/h1>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/01\/paca.jpg\" alt=\"\"><\/p>\n<div>\n<h2><strong>Hola mundo!<\/strong><\/h2>\n<\/div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/01\/cactus.gif\" alt=\"\"><\/p>\n<div>\n<h2><strong>Cactus women<\/strong><\/h2>\n<\/div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2023\/12\/in-out.gif\" alt=\"\"><\/p>\n<div>\n<h2><strong>In \/ out\u00a0<\/strong><\/h2>\n<\/div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/11\/exi.png\" alt=\"\"><\/p>\n<div>\n<h2><strong>Waiting for the train<\/strong><\/h2>\n<\/div>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/10\/pez1.png\" alt=\"\"><\/p>\n<div>\n<h2><strong>Fish out of water\u00a0<\/strong><\/h2>\n<\/div>\n<\/div>\n<p><video src=\"http:\/\/c-galan.com\/wp-content\/uploads\/2025\/06\/poreso1.mp4\" poster=\"\"><\/video><br \/>\n<video src=\"http:\/\/c-galan.com\/wp-content\/uploads\/2025\/06\/laotra1.mp4\" poster=\"\"><\/video><\/p>\n<div>\n<h1 class=\"section-title\">Non-profits<\/h1>\n<\/div>\n<div><span><strong><em>Project purpose: <\/em><\/strong>To create a search tool for best practices in the administration of justice through the use of new technologies.<\/span><\/p>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/11\/Screenshot-2024-11-23-at-11.27.04%E2%80%AFp.m.png\" alt=\"\"><\/p>\n<div>\n<p><a href=\"https:\/\/tecnologiaparalajusticia.mexicoevalua.org\/nubeDePalabras\"><em><strong>https:\/\/tecnologiaparalajusticia.mexicoevalua.org\/nubeDePalabras<\/strong><\/em><\/a><\/p>\n<\/div>\n<\/div>\n<div>\n<p><em><strong>Technologies used:\u00a0<\/strong><\/em><\/p>\n<\/p>\n<ul>\n<li><strong>Back-end:<\/strong> <span>Node<\/span><span>.js<\/span><\/li>\n<li><strong>Front-end:<\/strong> <span>React<\/span>\u00a0<\/li>\n<li><strong>Database:<\/strong> <span>Firebase<\/span><\/li>\n<\/ul>\n<\/div>\n<div>\n<p><span><strong><em>Project purpose: <\/em><\/strong>To create a platform that facilitates the coordination of civil society actors to advocate for improving the quality and effectiveness of criminal justice at the local level, with a focus on democratic governance, human rights, gender, and intersectionality. Recently, five learning courses have been added.<\/span><\/p>\n<\/div>\n<div>\n<p><em><strong>Technologies used:\u00a0<\/strong><\/em><\/p>\n<\/p>\n<ul>\n<li><strong>CMS:<\/strong> <span>WordPress<\/span><span>\u00a0<\/span><\/li>\n<li><strong>Programming Language:<\/strong> <span>PHP<\/span><\/li>\n<li><strong>Databases:<\/strong> <span>MySQL<\/span><\/li>\n<\/ul>\n<\/div>\n<div>\n<p>        <img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/11\/Screenshot-2024-11-24-at-1.00.10%E2%80%AFa.m.png\" alt=\"\"><\/p>\n<div>\n<p><a href=\"https:\/\/redjusticia.mexicoevalua.org\/\"><strong><em>https:\/\/redjusticia.mexicoevalua.org\/<\/em><\/strong><\/a><\/p>\n<\/div>\n<\/div>\n<div>\n<p><strong><em>Project purpose: <\/em><\/strong>To makes available the Guide for Monitoring Judicial Designation and other useful tools to monitor each phase of the process and analyzing the profiles of the applicants.<\/p>\n<\/div>\n<p><img decoding=\"async\" src=\"\/wp-content\/uploads\/2023\/12\/Screenshot-2023-12-25-at-14.21.01.png\" alt=\"\"><\/p>\n<div>\n<h4><em><strong>Deliverables:\u00a0<\/strong><\/em><\/h4>\n<ul>\n<li>\n<h4>Branding<\/h4>\n<\/li>\n<li>\n<h4>Web design\u00a0<\/h4>\n<\/li>\n<\/ul>\n<\/div>\n<p><img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/01\/Screenshot-2024-01-18-at-1.36.49%E2%80%AFa.m.png\" alt=\"\"><br \/>\n<img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/01\/Screenshot-2024-01-18-at-1.25.57%E2%80%AFa.m.png\" alt=\"\"><\/p>\n<div>\n<h4><strong><em>Project purpose:<\/em> <\/strong>To emphasize the good side of the proximity policing on citizens\u2019 crime risk perception in the State of Mexico.<\/h4>\n<\/div>\n<div>\n<h4><strong><em>Deliverables:<\/em><\/strong><\/h4>\n<ul>\n<li>\n<h4>Branding<\/h4>\n<\/li>\n<li>\n<h4>Web design\u00a0<\/h4>\n<\/li>\n<li>\n<h4>3 videos for social media distribution<\/h4>\n<\/li>\n<\/ul>\n<\/div>\n<p><img decoding=\"async\" src=\"\/wp-content\/uploads\/2023\/12\/Screenshot-2023-12-26-at-17.53.51.png\" alt=\"\"><br \/>\n<iframe src=\"https:\/\/www.youtube.com\/watch?v=V1SIM40Iktc\"><\/iframe><br \/>\n<iframe src=\"https:\/\/www.youtube.com\/watch?v=v46CPofOfaQ\"><\/iframe><br \/>\n<img decoding=\"async\" src=\"\/wp-content\/uploads\/2024\/01\/image1.png\" alt=\"\"><\/p>\n<div>\n<h4><strong><em>Project purpose:<\/em><\/strong> To create stories about Medlife patients in order to create fundraising campaigns.\u00a0\u00a0<\/h4>\n<\/div>\n<p><img decoding=\"async\" src=\"\/wp-content\/uploads\/2023\/12\/medlife11-.png\" alt=\"\"><br \/>\n<img decoding=\"async\" src=\"\/wp-content\/uploads\/2023\/12\/medlife-1.png\" alt=\"\"><\/p>\n<div>\n<h4><em><strong>Deliverables:<\/strong><\/em><\/h4>\n<ul>\n<li>\n<h4>Storytelling<\/h4>\n<\/li>\n<li>\n<h4>Videos<\/h4>\n<\/li>\n<li>\n<h4>Stock photography<\/h4>\n<\/li>\n<\/ul>\n<\/div>\n<p><iframe src=\"https:\/\/vimeo.com\/209914649\"><\/iframe><br \/>\n<iframe src=\"https:\/\/vimeo.com\/200890999\"><\/iframe><\/p>\n<div>\n<h4><em><strong>The Joe T Hodo Show<\/strong><\/em>, a tv show in which a fictional character, who represents a patriotic gringo who is always in search of maximum profit (Joe T Hodo), interacts with real people in various locations and contexts in Mexico. The series is characterized by the brevity of its episodes, by the use of satire as a means of political criticism, by its dissemination through the Internet and social networks, as well as by the private financing of the project through crowdfunding.<\/h4>\n<\/div>\n<p><img decoding=\"async\" src=\"\/wp-content\/uploads\/2023\/12\/jhodo1.png\" alt=\"\"><\/p>\n<div>\n<h4><em><strong>Deliverables:<\/strong><\/em><\/h4>\n<ul>\n<li>\n<h4>Branding<\/h4>\n<\/li>\n<li>\n<h4>Animation for the opener show<\/h4>\n<\/li>\n<\/ul>\n<\/div>\n<p><img decoding=\"async\" src=\"\/wp-content\/uploads\/2023\/12\/thodo.png\" alt=\"\"><\/p>\n<div>\n<h1 id=\"contacto\" class=\"section-title\" style=\"text-align: right;\">STAY IN TOUCH \ud83d\ude09<\/h1>\n<p style=\"text-align: right;\"><a href=\"mailto:cinthia.galan@hotmail.es\" target=\"_blank\" rel=\"noopener\">SEND AN EMAIL<\/a><\/p>\n<\/div>\n<div>\n<p style=\"text-align: center;\"><strong>Made with<\/strong> <span>\u2764\ufe0f\ufe0f<\/span><\/p>\n<\/div>\n<div>\n<p>    <a href=\"#\" id=\"back-to-top\" title=\"Go to top\">&uarr;<\/a><\/p>\n<\/div>\n<p><!--more--><br \/>\n<!-- {\"type\":\"layout\",\"children\":[{\"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\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"\n\n<section class=\\\"section-one section\\\">\\n  \n\n<div id=\\\"space\\\">\\n    <!-- Logo principal -->\\n    <a href=\\\"#\\\" id=\\\"logo\\\"><img src=\\\"\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/cg.png\\\" alt=\\\"Cinthia Galan\\\"><\\\/a>\\n\\n    <\/p>\n<div id=\\\"presentation\\\"><\\\/div>\\n\\n    <!-- Planetas en el fondo -->\\n    <\/p>\n<div class=\\\"deco_sky\\\" id=\\\"moon\\\"><\\\/div>\\n    <\/p>\n<div class=\\\"deco_sky\\\" id=\\\"mars\\\"><\\\/div>\\n    <\/p>\n<div class=\\\"deco_sky\\\" id=\\\"venus\\\"><\\\/div>\\n\\n    <!-- Im\\u00e1genes animadas de gatos -->\\n    <img src=\\\"\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/gato2.png\\\" alt=\\\"Un bello gato\\\" id=\\\"asteroid\\\" class=\\\"flying_element\\\" \\\/>\\n    <img src=\\\"\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/gato1.png\\\" alt=\\\"Un bello gato\\\" id=\\\"asteroid2\\\" class=\\\"flying_element\\\" \\\/>\\n  <\\\/div>\\n<\\\/section>\\n&#8221;,&#8221;css&#8221;:&#8221;html, body {\\n  height: 100%;\\n  width: 100%;\\n  margin: 0;\\n  padding: 0;\\n  overflow-x: hidden; \\\/* Evitar desplazamiento horizontal *\\\/\\n}\\n\\n\\\/* Asegura que el fondo cubra todo el ancho de la pantalla *\\\/\\n#space {\\n  width: 100vw;\\n  height: 100vh;\\n  position: relative;\\n  background: url(\\&#8221;\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/5.png\\&#8221;) no-repeat center center fixed;  \\\/* Fondo principal *\\\/\\n  background-size: cover; \\\/* Asegura que el fondo abarque todo horizontalmente *\\\/\\n  text-align: center;\\n  z-index: 150;\\n  overflow: hidden;\\n}\\n\\n#logo {\\n  position: relative;\\n  display: block;\\n  margin: 10px auto;\\n  z-index: 1000;\\n  height: 250px;\\n  width: 564px;\\n}\\n\\n\\\/* Planetas y quote *\\\/\\n#space #moon {\\n  background: url(\\&#8221;\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/quote.png\\&#8221;) 5% 170px no-repeat fixed; \\\/* Imagen quote *\\\/\\n}\\n\\n#space #mars {\\n  background: url(\\&#8221;\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/planeta.png\\&#8221;) 75% 450px no-repeat fixed; \\\/* Imagen del planeta *\\\/\\n}\\n\\n#space #venus {\\n  background: url(\\&#8221;\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/planeta.png\\&#8221;) 20% 600px no-repeat fixed; \\\/* Otra imagen del planeta *\\\/\\n}\\n\\n\\\/* Presentaci\\u00f3n: imagen \\&#8221;me\\&#8221; *\\\/\\n#space #presentation {\\n  width: 800px;\\n  height: 459px;\\n  z-index: 1400;\\n  position: relative;\\n  margin: -20px auto 0 auto;\\n  text-indent: -99999px;\\n  background: url(\\&#8221;\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/me.png\\&#8221;) no-repeat center center; \\\/* Imagen de \\&#8221;me\\&#8221; *\\\/\\n  background-size: contain; \\\/* Asegura que la imagen se ajuste bien *\\\/\\n}\\n\\n\\\/* Animaciones de los gatos *\\\/\\n#asteroid {\\n  position: absolute;\\n  top: 80px;\\n  left: -10%;\\n  opacity: 0.5;\\n  animation: moveLeftToRight 10s linear infinite; \\\/* Ajusta la duraci\\u00f3n de la animaci\\u00f3n *\\\/\\n}\\n\\n#asteroid2 {\\n  position: absolute;\\n  top: 300px;\\n  left: -10%;\\n  opacity: 0.5;\\n  animation: moveRightToLeft 10s linear infinite; \\\/* Ajusta la duraci\\u00f3n de la animaci\\u00f3n *\\\/\\n}\\n\\n@keyframes moveLeftToRight {\\n  from { left: -10%; }\\n  to { left: 110%; } \\\/* Asegura que los gatos crucen toda la pantalla *\\\/\\n}\\n\\n@keyframes moveRightToLeft {\\n  from { left: 110%; }\\n  to { left: -10%; } \\\/* Asegura que los gatos crucen toda la pantalla *\\\/\\n}\\n&#8221;}}]}],&#8221;props&#8221;:{&#8220;status&#8221;:&#8221;disabled&#8221;}}]},{&#8220;type&#8221;:&#8221;section&#8221;,&#8221;props&#8221;:{&#8220;header_transparent&#8221;:&#8221;light&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/09\\\/5.png&#8221;,&#8221;image_position&#8221;:&#8221;center-center&#8221;,&#8221;padding_remove_bottom&#8221;:true,&#8221;padding_remove_horizontal&#8221;:true,&#8221;padding_remove_top&#8221;:true,&#8221;style&#8221;:&#8221;default&#8221;,&#8221;title_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;title_position&#8221;:&#8221;top-left&#8221;,&#8221;title_rotation&#8221;:&#8221;left&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;\\n  <link rel=\\\"stylesheet\\\" href=\\\"https:\\\/\\\/cdnjs.cloudflare.com\\\/ajax\\\/libs\\\/meyer-reset\\\/2.0\\\/reset.min.css\\\">\\n<meta name=\\\"viewport\\\" content=\\\"width=device-width\\\"><link rel=\\\"stylesheet\\\" href=\\\"https:\\\/\\\/cdnjs.cloudflare.com\\\/ajax\\\/libs\\\/normalize\\\/5.0.0\\\/normalize.min.css\\\">\\n<link rel=\\\"stylesheet\\\" href=\\\".\\\/style.css\\\">\\n\\n\\t<\/p>\n<section class=\\\"section-one section\\\">\\n\\t<\/p>\n<div id=\\\"space\\\">\\n\\t\\n\\t<\/p>\n<div id=\\\"presentation\\\">\\n\\t\\t<\\\/div>\\n\\n\\t\\t<\/p>\n<div class=\\\"deco_sky\\\" id=\\\"moon\\\"><\\\/div>\\n\\t\\t<\/p>\n<div class=\\\"deco_sky\\\" id=\\\"mars\\\"><\\\/div>\\n\\t\\t<\/p>\n<div class=\\\"deco_sky\\\" id=\\\"venus\\\"><\\\/div>\\n\\n\\t\\t<img src=\\\"http:\\\/\\\/c-galan.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/gato2.png\\\" alt=\\\"Un bello gato\\\" id=\\\"asteroid\\\" \\\/>\\n\\t\\t<img src=\\\"http:\\\/\\\/c-galan.com\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/gato1.png\\\" alt=\\\"Un bello gato\\\" id=\\\"asteroid2\\\" \\\/>\\n\\n\\t<\\\/div>\\n  \\t<\\\/section>\\n\\n\\n<!-- partial -->\\n<script src='https:\\\/\\\/code.jquery.com\\\/jquery-2.2.4.min.js'><\\\/script>\\n\\n  <script src='https:\\\/\\\/ajax.googleapis.com\\\/ajax\\\/libs\\\/jquery\\\/1.6.4\\\/jquery.min.js'><\\\/script>\\n\\n\\n\"}}]}],\"props\":{\"width\":\"default\"}}],\"name\":\"Alpaca\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"overlap\":false,\"preserve_color\":false,\"style\":\"secondary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"text\",\"props\":{\"animation\":\"slide-right\",\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p>WEB AND MULTIMEDIA DESIGNER \\\/ THE ARTS + NON-PROFITS<\\\/p>\",\"margin\":\"default\",\"text_color\":\"primary\",\"text_style\":\"large\"}},{\"type\":\"text\",\"props\":{\"animation\":\"slide-right\",\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<div class=\\\"space-top-medium\\\">\\n<\/p>\n<h2 class=\\\"heading-large text-white\\\">HI, I AM CINTHIA <span>\\ud83d\\udc4b <\\\/span>A WEB AND MULTIMEDIA DESIGNER WITH A FERVENT COMMITMENT TO MAKING A DIFFERENCE.\\u00a0<\\\/h2>\\n<\\\/div>\\n<\/p>\n<div class=\\\"space-top-medium\\\"><\\\/div>\",\"margin\":\"default\",\"text_color\":\"primary\",\"text_style\":\"meta\"}},{\"type\":\"text\",\"props\":{\"animation\":\"slide-right\",\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<div class=\\\"space-top-medium\\\">\\n<\/p>\n<h5 class=\\\"heading-large text-white\\\"><span>My mission is to\\u00a0 craft<\\\/span>\\u00a0digital experiences that not only captivate but also convey compelling narratives.<\\\/h5>\\n<\\\/div>\",\"margin\":\"default\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"image\",\"props\":{\"animation\":\"scale-up\",\"image\":\"wp-content\\\/uploads\\\/2023\\\/12\\\/c-me1.png\",\"image_box_shadow\":\"xlarge\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}}]}],\"props\":{\"layout\":\"1-2,1-2\",\"status\":\"disabled\"}}]},{\"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\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-6\",\"width_small\":\"1-5\"}},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"5-6\",\"width_small\":\"4-5\"},\"children\":[{\"type\":\"text\",\"props\":{\"animation\":\"parallax\",\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h1>Hi, I am Cinthia \\ud83d\\udc4b<\\\/h1>\",\"dropcap\":false,\"margin\":\"default\",\"parallax_x\":\"130\",\"position\":\"relative\",\"text_style\":\"lead\"}}]}],\"props\":{\"layout\":\"1-6,5-6|1-5,4-5\"}},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"text\",\"props\":{\"animation\":\"parallax\",\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h1 style=\\\"text-align: right;\\\"><span style=\\\"color: #ffd601;\\\">Creative Technologist<\\\/span><\\\/h1>\",\"margin\":\"default\",\"parallax_x\":\"-100\",\"text_style\":\"lead\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"text\",\"props\":{\"animation\":\"none\",\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h2 style=\\\"text-align: left;\\\"><strong>Blending Animation, Art, and Technology for Social Change<\\\/strong><\\\/h2>\",\"margin\":\"default\",\"parallax_x\":\"100\",\"text_style\":\"lead\"}}]}],\"props\":{\"layout\":\"1-2,1-2\"}}],\"name\":\"Presentacion\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"overlap\":false,\"padding_remove_bottom\":true,\"padding_remove_horizontal\":true,\"padding_remove_top\":true,\"style\":\"secondary\",\"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\":\"<!-- Bloque HTML en tu p\\u00e1gina -->\\n<\/p>\n<div id=\\\"sketch-container\\\"><\\\/div>\\n\\n<script>\\n  function setup() {\\n    let canvas = createCanvas(400, 400);\\n    canvas.parent('sketch-container'); \\\/\\\/ El canvas se ubicar\\u00e1 dentro del div \\\"sketch-container\\\"\\n    colorMode(HSB);\\n    angleMode(DEGREES);\\n    describe('Two eyes that follow the cursor.');\\n  }\\n\\n  function draw() {\\n    background(0);\\n    let leftX = 150;\\n    let leftY = 200;\\n    let leftAngle = atan2(mouseY - leftY, mouseX - leftX);\\n    push();\\n    translate(leftX, leftY);\\n    fill(255);\\n    ellipse(0, 0, 50, 50);\\n    rotate(leftAngle);\\n    fill(0);\\n    ellipse(12.5, 0, 25, 25);\\n    pop();\\n\\n    let rightX = 250;\\n    let rightY = 200;\\n    let rightAngle = atan2(mouseY - rightY, mouseX - rightX);\\n    push();\\n    translate(rightX, rightY);\\n    fill(255);\\n    ellipse(0, 0, 50, 50);\\n    rotate(rightAngle);\\n    fill(0);\\n    ellipse(12.5, 0, 25, 25);\\n    pop();\\n  }\\n<\\\/script>\\n\",\"css\":\"html, body {\\n  margin: 0;\\n  padding: 0;\\n  height: 100%;\\n  display: flex;\\n  justify-content: center;\\n  align-items: center;\\n  background-color: #000;\\n}\\n\\n#sketch-container {\\n  display: flex;\\n  justify-content: center;\\n  align-items: center;\\n  background-color: #000;\\n}\\n\\n\\n\"}}]}]}],\"name\":\"ojos\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"padding_remove_bottom\":true,\"padding_remove_horizontal\":true,\"padding_remove_top\":true,\"style\":\"secondary\",\"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\":\"html\",\"props\":{\"content\":\"<!DOCTYPE html>\\n<html lang=\\\"en\\\">\\n<head>\\n  <meta charset=\\\"UTF-8\\\">\\n  <meta name=\\\"viewport\\\" content=\\\"width=device-width, initial-scale=1.0\\\">\\n  <title>Interactive Skill Bars with Percentage<\\\/title>\\n  <\/p>\n<style>\\n  \\\/* Contenedor principal *\\\/\\n  .skills {\\n    max-width: 700px;\\n    margin: 40px auto;\\n    font-family: 'Arial', sans-serif;\\n    background: linear-gradient(145deg, #1e1e1e, #2a2a2a); \\\/* Fondo con gradiente *\\\/\\n    border-radius: 20px;\\n    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); \\\/* Sombra *\\\/\\n    padding: 30px;\\n    color: white;\\n  }\\n\\n  .skills h2 {\\n    text-align: center;\\n    margin-bottom: 30px;\\n    font-size: 28px;\\n    color: #f2eede;\\n  }\\n\\n  .skill {\\n    margin-bottom: 25px;\\n  }\\n\\n  .skill-name {\\n    font-size: 18px;\\n    margin-bottom: 8px;\\n    color: #f2eede;\\n  }\\n\\n  \\\/* Contenedor de la barra *\\\/\\n  .skill-bar-container {\\n    background-color: #333;\\n    border-radius: 15px;\\n    overflow: hidden;\\n    height: 30px;\\n    position: relative;\\n    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5); \\\/* Sombra interna *\\\/\\n  }\\n\\n  \\\/* Barra animada *\\\/\\n  .skill-bar {\\n    background: linear-gradient(90deg, #3b82f6, #06b6d4); \\\/* Gradiente moderno *\\\/\\n    height: 100%;\\n    width: 0;\\n    transition: width 0.8s ease-in-out; \\\/* Animaci\\u00f3n m\\u00e1s suave *\\\/\\n    position: relative;\\n  }\\n\\n  \\\/* Porcentaje en la barra *\\\/\\n  .skill-percentage {\\n    position: absolute;\\n    top: 0;\\n    left: 50%;\\n    transform: translateX(-50%);\\n    color: white;\\n    font-size: 14px;\\n    font-weight: bold;\\n    line-height: 30px;\\n    opacity: 0; \\\/* Invisible inicialmente *\\\/\\n    transition: opacity 0.3s ease-in-out;\\n  }\\n\\n  \\\/* Mostrar porcentaje al pasar el cursor *\\\/\\n  .skill-bar-container:hover .skill-percentage {\\n    opacity: 1; \\\/* Se hace visible al pasar el cursor *\\\/\\n  }\\n\\n  \\\/* Animaci\\u00f3n hover *\\\/\\n  .skill-bar-container:hover .skill-bar {\\n    filter: brightness(1.2); \\\/* Efecto de brillo *\\\/\\n  }\\n<\\\/style>\\n\\n<\\\/head>\\n<body>\\n\\n  <\/p>\n<div class=\\\"skills\\\">\\n    <\/p>\n<h2>Technical Skills<\\\/h2>\\n    <\/p>\n<div class=\\\"skill\\\">\\n      <\/p>\n<div class=\\\"skill-name\\\">Adobe Creative Cloud<\\\/div>\\n      <\/p>\n<div class=\\\"skill-bar-container\\\">\\n        <\/p>\n<div class=\\\"skill-bar\\\" data-skill=\\\"95\\\">\\n          <\/p>\n<div class=\\\"skill-percentage\\\">95%<\\\/div>\\n        <\\\/div>\\n      <\\\/div>\\n    <\\\/div>\\n    <\/p>\n<div class=\\\"skill\\\">\\n      <\/p>\n<div class=\\\"skill-name\\\">CMS (WordPress)<\\\/div>\\n      <\/p>\n<div class=\\\"skill-bar-container\\\">\\n        <\/p>\n<div class=\\\"skill-bar\\\" data-skill=\\\"85\\\">\\n          <\/p>\n<div class=\\\"skill-percentage\\\">85%<\\\/div>\\n        <\\\/div>\\n      <\\\/div>\\n    <\\\/div>\\n    <\/p>\n<div class=\\\"skill\\\">\\n      <\/p>\n<div class=\\\"skill-name\\\">HTML, CSS, JavaScript<\\\/div>\\n      <\/p>\n<div class=\\\"skill-bar-container\\\">\\n        <\/p>\n<div class=\\\"skill-bar\\\" data-skill=\\\"80\\\">\\n          <\/p>\n<div class=\\\"skill-percentage\\\">80%<\\\/div>\\n        <\\\/div>\\n      <\\\/div>\\n    <\\\/div>\\n    <\/p>\n<div class=\\\"skill\\\">\\n      <\/p>\n<div class=\\\"skill-name\\\">PHP<\\\/div>\\n      <\/p>\n<div class=\\\"skill-bar-container\\\">\\n        <\/p>\n<div class=\\\"skill-bar\\\" data-skill=\\\"70\\\">\\n          <\/p>\n<div class=\\\"skill-percentage\\\">70%<\\\/div>\\n        <\\\/div>\\n      <\\\/div>\\n    <\\\/div>\\n    <\/p>\n<div class=\\\"skill\\\">\\n      <\/p>\n<div class=\\\"skill-name\\\">Figma<\\\/div>\\n      <\/p>\n<div class=\\\"skill-bar-container\\\">\\n        <\/p>\n<div class=\\\"skill-bar\\\" data-skill=\\\"65\\\">\\n          <\/p>\n<div class=\\\"skill-percentage\\\">65%<\\\/div>\\n        <\\\/div>\\n      <\\\/div>\\n    <\\\/div>\\n    <\/p>\n<div class=\\\"skill\\\">\\n      <\/p>\n<div class=\\\"skill-name\\\">Tableau<\\\/div>\\n      <\/p>\n<div class=\\\"skill-bar-container\\\">\\n        <\/p>\n<div class=\\\"skill-bar\\\" data-skill=\\\"65\\\">\\n          <\/p>\n<div class=\\\"skill-percentage\\\">65%<\\\/div>\\n        <\\\/div>\\n      <\\\/div>\\n    <\\\/div>\\n    <\/p>\n<div class=\\\"skill\\\">\\n      <\/p>\n<div class=\\\"skill-name\\\">Google Ads\\\/Analytics<\\\/div>\\n      <\/p>\n<div class=\\\"skill-bar-container\\\">\\n        <\/p>\n<div class=\\\"skill-bar\\\" data-skill=\\\"80\\\">\\n          <\/p>\n<div class=\\\"skill-percentage\\\">80%<\\\/div>\\n        <\\\/div>\\n      <\\\/div>\\n    <\\\/div>\\n  <\\\/div>\\n\\n  <script>\\n    \\\/\\\/ Seleccionar todas las barras\\n    const skillBars = document.querySelectorAll('.skill-bar');\\n\\n    \\\/\\\/ Llenar las barras autom\\u00e1ticamente al cargar la p\\u00e1gina\\n    window.addEventListener('DOMContentLoaded', () => {\\n      skillBars.forEach(bar => {\\n        const percentage = bar.getAttribute('data-skill'); \\\/\\\/ Obtiene el porcentaje\\n        bar.style.width = `${percentage}%`; \\\/\\\/ Llena la barra\\n      });\\n    });\\n  <\\\/script>\\n\\n<\\\/body>\\n<\\\/html>\\n\"}}]}]}],\"name\":\"skills\"},{\"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\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\"}},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"3-4\"},\"children\":[{\"type\":\"text\",\"props\":{\"animation\":\"parallax\",\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h1 id=\\\"work\\\" style=\\\"text-align: center;\\\"><span style=\\\"color: #fffff;\\\">Here is some of my work<\\\/span><\\\/h1>\",\"margin\":\"default\",\"parallax_x\":\"0\",\"text_style\":\"lead\"}}]}],\"props\":{\"layout\":\"1-4,3-4\"}},{\"type\":\"row\",\"props\":{\"layout\":\"1-4,1-4,1-4,1-4|1-2,1-2,1-2,1-2\",\"status\":\"disabled\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"image\",\"props\":{\"animation\":\"slide-top\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/01\\\/paca.jpg\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\",\"position_left\":\"-50\",\"position_top\":\"380\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"image\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2024\\\/01\\\/cactus.gif\",\"image_box_decoration_inverse\":false,\"image_svg_color\":\"emphasis\",\"image_viewport_height\":false,\"margin\":\"default\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"image\",\"props\":{\"animation\":\"parallax\",\"image\":\"wp-content\\\/uploads\\\/2023\\\/12\\\/in-out.gif\",\"image_box_shadow\":\"xlarge\",\"image_loading\":false,\"image_svg_color\":\"emphasis\",\"margin\":\"default\",\"text_align\":\"center\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"image\",\"props\":{\"animation\":\"parallax\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/11\\\/exi.png\",\"image_box_shadow\":\"xlarge\",\"image_loading\":false,\"image_svg_color\":\"emphasis\",\"margin\":\"default\",\"text_align\":\"center\"}},{\"type\":\"image\",\"props\":{\"animation\":\"slide-top\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/10\\\/pez1.png\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\",\"position_left\":\"-50\",\"position_top\":\"380\"}}]}]},{\"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\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<h2><strong>Hola mundo!<\\\/strong><\\\/h2>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/01\\\/paca.jpg\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_y\":\"-80\",\"text_align\":\"center\",\"text_color\":\"light\",\"title_element\":\"h3\",\"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\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<h2><strong>Cactus women<\\\/strong><\\\/h2>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/01\\\/cactus.gif\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_y\":\"-60\",\"text_align\":\"center\",\"text_color\":\"light\",\"title_element\":\"h3\",\"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\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<h2><strong>In \\\/ out\\u00a0<\\\/strong><\\\/h2>\",\"image\":\"wp-content\\\/uploads\\\/2023\\\/12\\\/in-out.gif\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_y\":\"-40\",\"text_align\":\"center\",\"text_color\":\"light\",\"title_element\":\"h3\",\"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\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<h2><strong>Waiting for the train<\\\/strong><\\\/h2>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/11\\\/exi.png\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_y\":\"-50\",\"text_align\":\"center\",\"text_color\":\"light\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"}},{\"type\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<h2><strong>Fish out of water\\u00a0<\\\/strong><\\\/h2>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/10\\\/pez1.png\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_y\":\"-60\",\"text_align\":\"center\",\"text_color\":\"light\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"}}]}]},{\"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\":\"video\",\"props\":{\"margin\":\"default\",\"video\":\"http:\\\/\\\/c-galan.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/poreso1.mp4\",\"video_controls\":true,\"video_loop\":false,\"video_width\":\"400\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"video\",\"props\":{\"margin\":\"default\",\"video\":\"http:\\\/\\\/c-galan.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/laotra1.mp4\",\"video_controls\":true,\"video_loop\":false,\"video_width\":\"400\"}}]}]},{\"type\":\"row\",\"props\":{\"layout\":\"1-3,1-3,1-3\",\"status\":\"disabled\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"},\"children\":[{\"type\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<h2><strong>Cheesy pizza\\u00a0<\\\/strong><\\\/h2>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/11\\\/Pizza.jpg\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_y\":\"-70\",\"text_align\":\"center\",\"text_color\":\"light\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"},\"children\":[{\"type\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<h2><strong>A little hug\\u00a0<\\\/strong><\\\/h2>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/11\\\/abrazo.jpg\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_y\":\"-200\",\"text_align\":\"center\",\"text_color\":\"light\",\"title\":\"\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"},\"children\":[{\"type\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<h2><strong>Morning coffee<\\\/strong><\\\/h2>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/10\\\/sol.png\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_y\":\"-220\",\"text_align\":\"center\",\"text_color\":\"light\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"}}]}]},{\"type\":\"row\",\"props\":{\"layout\":\"1-3,1-3,1-3\",\"status\":\"disabled\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"},\"children\":[{\"type\":\"image\",\"props\":{\"animation\":\"parallax\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/11\\\/Pizza.jpg\",\"image_box_decoration_inverse\":false,\"image_svg_color\":\"emphasis\",\"image_viewport_height\":false,\"margin\":\"default\",\"parallax_y\":\"-70\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"},\"children\":[{\"type\":\"image\",\"props\":{\"animation\":\"parallax\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/11\\\/abrazo.jpg\",\"image_loading\":false,\"image_svg_color\":\"\",\"image_svg_inline\":false,\"image_viewport_height\":false,\"margin\":\"default\",\"parallax_scale\":\"0.9\",\"parallax_y\":\"-200\"}},{\"type\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<h2><strong>A little hug\\u00a0<\\\/strong><\\\/h2>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/11\\\/abrazo.jpg\",\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_y\":\"-200\",\"text_align\":\"center\",\"text_color\":\"light\",\"title\":\"\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-3\"},\"children\":[{\"type\":\"image\",\"props\":{\"animation\":\"parallax\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/10\\\/sol.png\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\",\"parallax_y\":\"-260\"}}]}]}],\"name\":\"Some work\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"secondary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"animation\":\"parallax\",\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h1 class=\\\"section-title\\\">Non-profits<\\\/h1>\",\"margin\":\"default\",\"parallax_x\":\"0\",\"text_style\":\"lead\"}}]}]},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<span><strong><em>Project purpose: <\\\/em><\\\/strong>To create a search tool for best practices in the administration of justice through the use of new technologies.<\\\/span>\\n\\n\",\"margin\":\"default\"}}]}]},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"4-5\"},\"children\":[{\"type\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"<\/p>\n<p><a href=\\\"https:\\\/\\\/tecnologiaparalajusticia.mexicoevalua.org\\\/nubeDePalabras\\\"><em><strong>https:\\\/\\\/tecnologiaparalajusticia.mexicoevalua.org\\\/nubeDePalabras<\\\/strong><\\\/em><\\\/a><\\\/p>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/11\\\/Screenshot-2024-11-23-at-11.27.04\\u202fp.m.png\",\"link_style\":\"default\",\"link_target\":false,\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_scale\":\"1\",\"parallax_x\":\"30\",\"text_align\":\"center\",\"text_color\":\"light\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-5\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p><em><strong>Technologies used:\\u00a0<\\\/strong><\\\/em><\\\/p>\\n<\/p>\n<p><\\\/p>\\n<\/p>\n<ul>\\n<\/p>\n<li><strong>Back-end:<\\\/strong> <span>Node<\\\/span><span>.js<\\\/span><\\\/li>\\n\n<li><strong>Front-end:<\\\/strong> <span>React<\\\/span>\\u00a0<\\\/li>\\n\n<li><strong>Database:<\\\/strong> <span>Firebase<\\\/span><\\\/li>\\n<\\\/ul>\",\"margin\":\"default\"}}]}],\"props\":{\"layout\":\"4-5,1-5\"}}],\"name\":\"WEB AND MULIMEDIA\"},{\"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\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"\n<p><br \\\/><span><strong><em>Project purpose: <\\\/em><\\\/strong>To create a platform that facilitates the coordination of civil society actors to advocate for improving the quality and effectiveness of criminal justice at the local level, with a focus on democratic governance, human rights, gender, and intersectionality. Recently, five learning courses have been added.<\\\/span><\\\/p>\",\"margin\":\"default\"}}]}]},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-5\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p><em><strong>Technologies used:\\u00a0<\\\/strong><\\\/em><\\\/p>\\n<\/p>\n<p><\\\/p>\\n<\/p>\n<ul>\\n<\/p>\n<li><strong>CMS:<\\\/strong> <span>WordPress<\\\/span><span>\\u00a0<\\\/span><\\\/li>\\n\n<li><strong>Programming Language:<\\\/strong> <span>PHP<\\\/span><\\\/li>\\n\n<li><strong>Databases:<\\\/strong> <span>MySQL<\\\/span><\\\/li>\\n<\\\/ul>\",\"margin\":\"default\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"4-5\"},\"children\":[{\"type\":\"overlay\",\"props\":{\"animation\":\"parallax\",\"content\":\"\n<p><a href=\\\"https:\\\/\\\/redjusticia.mexicoevalua.org\\\/\\\"><strong><em>https:\\\/\\\/redjusticia.mexicoevalua.org\\\/<\\\/em><\\\/strong><\\\/a><\\\/p>\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/11\\\/Screenshot-2024-11-24-at-1.00.10\\u202fa.m.png\",\"link_style\":\"default\",\"link_target\":false,\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"overlay_hover\":true,\"overlay_mode\":\"cover\",\"overlay_position\":\"center\",\"overlay_style\":\"overlay-primary\",\"overlay_transition\":\"fade\",\"parallax_scale\":\"1\",\"parallax_x\":\"30\",\"text_align\":\"center\",\"text_color\":\"light\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"}}]}],\"props\":{\"layout\":\"1-5,4-5\"}}],\"name\":\"WEB AND MULIMEDIA\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"secondary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p><strong><em>Project purpose: <\\\/em><\\\/strong>To makes available the Guide for Monitoring Judicial Designation and other useful tools to monitor each phase of the process and analyzing the profiles of the applicants.<\\\/p>\",\"margin\":\"default\"}}]}]},{\"type\":\"row\",\"props\":{\"layout\":\"5-6,1-6|4-5,1-5\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"5-6\",\"width_small\":\"4-5\"},\"children\":[{\"type\":\"image\",\"props\":{\"animation\":\"scale-down\",\"image\":\"wp-content\\\/uploads\\\/2023\\\/12\\\/Screenshot-2023-12-25-at-14.21.01.png\",\"image_box_shadow\":\"large\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-6\",\"width_small\":\"1-5\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h4><em><strong>Deliverables:\\u00a0<\\\/strong><\\\/em><\\\/h4>\\n<\/p>\n<ul>\\n<\/p>\n<li>\\n<br \/>\n<h4>Branding<\\\/h4>\\n<\\\/li>\\n<\/p>\n<li>\\n<br \/>\n<h4>Web design\\u00a0<\\\/h4>\\n<\\\/li>\\n<\\\/ul>\",\"margin\":\"default\"}},{\"type\":\"image\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2024\\\/01\\\/Screenshot-2024-01-18-at-1.36.49\\u202fa.m.png\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}},{\"type\":\"image\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2024\\\/01\\\/Screenshot-2024-01-18-at-1.25.57\\u202fa.m.png\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}}]}]}],\"name\":\"WEB AND MULIMEDIA\"},{\"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\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h4><strong><em>Project purpose:<\\\/em> <\\\/strong>To emphasize the good side of the proximity policing on citizens\\u2019 crime risk perception in the State of Mexico.<\\\/h4>\",\"margin\":\"default\"}}]}]},{\"type\":\"row\",\"props\":{\"layout\":\"1-6,5-6|1-5,4-5\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-6\",\"width_small\":\"1-5\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h4><strong><em>Deliverables:<\\\/em><\\\/strong><\\\/h4>\\n<\/p>\n<ul>\\n<\/p>\n<li>\\n<br \/>\n<h4>Branding<\\\/h4>\\n<\\\/li>\\n<\/p>\n<li>\\n<br \/>\n<h4>Web design\\u00a0<\\\/h4>\\n<\\\/li>\\n<\/p>\n<li>\\n<br \/>\n<h4>3 videos for social media distribution<\\\/h4>\\n<\\\/li>\\n<\\\/ul>\",\"margin\":\"default\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"5-6\",\"width_small\":\"4-5\"},\"children\":[{\"type\":\"image\",\"props\":{\"animation\":\"scale-down\",\"image\":\"wp-content\\\/uploads\\\/2023\\\/12\\\/Screenshot-2023-12-26-at-17.53.51.png\",\"image_box_shadow\":\"large\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}}]}]},{\"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\":\"video\",\"props\":{\"animation\":\"slide-left\",\"container_padding_remove\":false,\"margin\":\"default\",\"text_align\":\"center\",\"video\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=V1SIM40Iktc\",\"video_controls\":true,\"video_width\":\"400\"}},{\"type\":\"video\",\"props\":{\"animation\":\"slide-left\",\"margin\":\"default\",\"text_align\":\"center\",\"video\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=v46CPofOfaQ\",\"video_controls\":true,\"video_width\":\"400\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"image\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2024\\\/01\\\/image1.png\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}}]}]}],\"name\":\"WEB AND MULIMEDIA\"},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"secondary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h4><strong><em>Project purpose:<\\\/em><\\\/strong> To create stories about Medlife patients in order to create fundraising campaigns.\\u00a0\\u00a0<\\\/h4>\",\"margin\":\"default\"}}]}]},{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-5\"},\"children\":[{\"type\":\"image\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2023\\\/12\\\/medlife11-.png\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"3-5\"},\"children\":[{\"type\":\"image\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2023\\\/12\\\/medlife-1.png\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h4><em><strong>Deliverables:<\\\/strong><\\\/em><\\\/h4>\\n<\/p>\n<ul>\\n<\/p>\n<li>\\n<br \/>\n<h4>Storytelling<\\\/h4>\\n<\\\/li>\\n<\/p>\n<li>\\n<br \/>\n<h4>Videos<\\\/h4>\\n<\\\/li>\\n<\/p>\n<li>\\n<br \/>\n<h4>Stock photography<\\\/h4>\\n<\\\/li>\\n<\\\/ul>\",\"margin\":\"default\"}}]}],\"props\":{\"layout\":\"2-5,3-5\"}},{\"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\":\"video\",\"props\":{\"margin\":\"default\",\"video\":\"https:\\\/\\\/vimeo.com\\\/209914649\",\"video_controls\":true,\"video_lazyload\":false,\"video_width\":\"500\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"video\",\"props\":{\"margin\":\"default\",\"video\":\"https:\\\/\\\/vimeo.com\\\/200890999\",\"video_controls\":true,\"video_lazyload\":false,\"video_width\":\"500\"}}]}]}]},{\"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\":\"1-2,1-2\",\"status\":\"disabled\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"video\",\"props\":{\"margin\":\"default\",\"video\":\"https:\\\/\\\/vimeo.com\\\/199872667\",\"video_controls\":true,\"video_width\":\"500\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\"},\"children\":[{\"type\":\"video\",\"props\":{\"margin\":\"default\",\"video\":\"https:\\\/\\\/vimeo.com\\\/205900123\",\"video_controls\":true,\"video_width\":\"500\"}}]}]}]},{\"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\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h4>El Joe T. Hodo Show<\\\/h4>\",\"margin\":\"default\",\"status\":\"disabled\"}},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h4><em><strong>The Joe T Hodo Show<\\\/strong><\\\/em>, a tv show in which a fictional character, who represents a patriotic gringo who is always in search of maximum profit (Joe T Hodo), interacts with real people in various locations and contexts in Mexico. The series is characterized by the brevity of its episodes, by the use of satire as a means of political criticism, by its dissemination through the Internet and social networks, as well as by the private financing of the project through crowdfunding.<\\\/h4>\",\"margin\":\"default\"}}]}]},{\"type\":\"row\",\"props\":{\"layout\":\"2-5,3-5\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"2-5\"},\"children\":[{\"type\":\"image\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2023\\\/12\\\/jhodo1.png\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h4><em><strong>Deliverables:<\\\/strong><\\\/em><\\\/h4>\\n<\/p>\n<ul>\\n<\/p>\n<li>\\n<br \/>\n<h4>Branding<\\\/h4>\\n<\\\/li>\\n<\/p>\n<li>\\n<br \/>\n<h4>Animation for the opener show<\\\/h4>\\n<\\\/li>\\n<\\\/ul>\",\"margin\":\"default\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"3-5\"},\"children\":[{\"type\":\"image\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2023\\\/12\\\/thodo.png\",\"image_svg_color\":\"emphasis\",\"margin\":\"default\"}}]}]}]},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"style\":\"secondary\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"3-4\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<h1 id=\\\"contacto\\\" class=\\\"section-title\\\" style=\\\"text-align: right;\\\">STAY IN TOUCH ;)<\\\/h1>\\n<\/p>\n<p style=\\\"text-align: right;\\\"><a href=\\\"mailto:cinthia.galan@hotmail.es\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">SEND AN EMAIL<\\\/a><\\\/p>\",\"margin\":\"default\",\"text_style\":\"lead\"}}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-4\"}}],\"props\":{\"layout\":\"3-4,1-4\"}}]},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"padding\":\"xsmall\",\"padding_remove_bottom\":false,\"padding_remove_horizontal\":true,\"padding_remove_top\":false,\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<\/p>\n<p style=\\\"text-align: center;\\\"><strong>Made with<\\\/strong> <span>\\u2764\\ufe0f\\ufe0f<\\\/span><\\\/p>\",\"margin\":\"default\"}},{\"type\":\"html\",\"props\":{\"content\":\"<a href=\\\"#\\\" id=\\\"back-to-top\\\" title=\\\"Go to top\\\">&uarr;<\\\/a>\\n\"}}]}],\"props\":{\"margin\":\"remove-vertical\",\"margin_remove_bottom\":true,\"margin_remove_top\":true}}]}],\"version\":\"4.2.11\"} --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hi, I am Cinthia \ud83d\udc4b Creative Technologist Blending Animation, Art, and Technology for Social Change Interactive Skill Bars with Percentage Technical Skills Adobe Creative Cloud 95% CMS (WordPress) 85% HTML, CSS, JavaScript 80% PHP 70% Figma 65% Tableau 65% Google Ads\/Analytics 80% Here is some of my work Hola mundo! Cactus women In \/ out\u00a0 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":596,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-576","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/c-galan.com\/index.php\/wp-json\/wp\/v2\/pages\/576","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/c-galan.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/c-galan.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/c-galan.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/c-galan.com\/index.php\/wp-json\/wp\/v2\/comments?post=576"}],"version-history":[{"count":228,"href":"https:\/\/c-galan.com\/index.php\/wp-json\/wp\/v2\/pages\/576\/revisions"}],"predecessor-version":[{"id":903,"href":"https:\/\/c-galan.com\/index.php\/wp-json\/wp\/v2\/pages\/576\/revisions\/903"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/c-galan.com\/index.php\/wp-json\/wp\/v2\/media\/596"}],"wp:attachment":[{"href":"https:\/\/c-galan.com\/index.php\/wp-json\/wp\/v2\/media?parent=576"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}