{"id":6252,"date":"2024-12-02T16:24:04","date_gmt":"2024-12-02T15:24:04","guid":{"rendered":"https:\/\/miuniversity.edu\/?page_id=6252"},"modified":"2026-09-01T11:04:38","modified_gmt":"2026-09-01T09:04:38","slug":"_pruebasbloques","status":"publish","type":"page","link":"https:\/\/miuniversity.edu\/en\/_pruebasbloques\/","title":{"rendered":"[TEST] Pruebas Bloques"},"content":{"rendered":"<section class=\"hero-video hero-video--space\">\n  <div class=\"hero-video__video-inner\">\n\n    <picture class=\"hero-video__picture\">\n      <!-- tatamiento horizontal -->\n      <source media=\"(min-width: 768px)\" srcset=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2025\/01\/HERO_Desktop_MIU.jpg\">\n      <!-- tatamiento vertical -->\n      <img decoding=\"async\" fetchpriority=\"high\" id=\"loadingImage\" class=\"hero-video__loading-image\" src=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2025\/01\/HERO_Mobile_MIU.jpg\" alt=\"HERO_Mobile_MIU\" title=\"HERO_Mobile_MIU\" width=\"1920\" height=\"800\">\n\n      <noscript>\n        <img decoding=\"async\" id=\"loadingImage\" class=\"hero__loading-image\" src=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2025\/01\/HERO_Desktop_MIU.jpg\" alt=\"HERO_Desktop_MIU\" title=\"HERO_Desktop_MIU\" \/>\n      <\/noscript>\n\n    <\/picture>\n\n    <div id=\"player\" class=\"hero-video__video\"><\/div>\n\n  <\/div>\n\n  <div class=\"hero-video__content\">\n    <h2 class=\"hero-video__title \">Una universidad abierta a todos<\/h2>\n  <\/div>\n\n  <!-- Slide -->\n      <div class=\"hero-video__slides\">\n      <div class=\"hero-video__slides__container\">\n\n        \n          \n\n          <div class=\"hero-video__slide\">\n\n                          <div class=\"hero-video__slide__left-col hero-video__slide--separator\">\n\n                \n                  <div class=\"hero-video__slide__image\">\n                    <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2025\/09\/qs.svg\" alt=\"qs\" title=\"qs\">\n                  <\/div>\n\n                \n              <\/div>\n            \n                          <div class=\"hero-video__slide__right-col\">\n                <div class=\"hero-video__slide__content\"><p>MIU City University Miami cuenta con <strong>5 estrellas en el ranking QS Stars<\/strong>, aval que reconoce su calidad acad\u00e9mica, su orientaci\u00f3n pr\u00e1ctica y su compromiso con la empleabilidad.<\/p>\n<\/div>\n              <\/div>\n            \n          <\/div>\n\n          \n          \n\n          <div class=\"hero-video__slide\">\n\n                          <div class=\"hero-video__slide__left-col hero-video__slide--separator\">\n\n                \n                  <div class=\"hero-video__slide__head\">\n\n                                          <h2 class=\"hero-video__slide__title\">+70%<\/h2>\n                    \n                                          <h6 class=\"hero-video__slide__subtitle\">Empleabilidad<\/h6>\n                    \n                  <\/div>\n\n                \n              <\/div>\n            \n                          <div class=\"hero-video__slide__right-col\">\n                <div class=\"hero-video__slide__content\"><p>MIU City University Miami alcanza un <strong>70% de empleabilidad<\/strong>, un indicador que refleja la solidez de su formaci\u00f3n pr\u00e1ctica y la conexi\u00f3n con el mercado laboral actual.<\/p>\n<\/div>\n              <\/div>\n            \n          <\/div>\n\n          \n          \n\n          <div class=\"hero-video__slide\">\n\n                          <div class=\"hero-video__slide__left-col hero-video__slide--separator\">\n\n                \n                  <div class=\"hero-video__slide__image\">\n                    <img decoding=\"async\" loading=\"lazy\" src=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2025\/09\/deac_accreditation_logo.svg.svg\" alt=\"deac_accreditation_logo.svg\" title=\"deac_accreditation_logo.svg\">\n                  <\/div>\n\n                \n              <\/div>\n            \n                          <div class=\"hero-video__slide__right-col\">\n                <div class=\"hero-video__slide__content\"><p>MIU City University Miami est\u00e1 acreditada por <strong>DEAC<\/strong>, un reconocimiento oficial que garantiza la calidad de sus programas acad\u00e9micos y la excelencia docente.<\/p>\n<\/div>\n              <\/div>\n            \n          <\/div>\n\n          \n      <\/div>\n    <\/div>\n  \n<\/section>\n\n<!-- Spaces -->\n\n<script>\n  let player;\n\n  function loadYouTubeAPI() {\n    if (window.YT && window.YT.Player) {\n      onYouTubeIframeAPIReady();\n    } else {\n      let tag = document.createElement(\"script\");\n      tag.src = \"https:\/\/www.youtube.com\/iframe_api\";\n      tag.async = true;\n      tag.defer = true;\n      document.head.appendChild(tag);\n    }\n  }\n  document.addEventListener(\"DOMContentLoaded\", loadYouTubeAPI);\n\n\n  function onYouTubeIframeAPIReady() {\n    player = new YT.Player('player', {\n      height: '560',\n      width: '315',\n      videoId: 'dMW4WpZNwCg', \/\/ Replace with your video ID\n      playerVars: {\n        'playsinline': 1,\n        'autoplay': 1,\n        'mute': 1,\n        'rel': 0, \/\/ No mostrar videos relacionados\n        'loop': 1, \/\/ Habilitar el loop\n        'playlist': 'dMW4WpZNwCg' \/\/ Replace with your video ID for looping\n      },\n      events: {\n        'onReady': onPlayerReady,\n        'onStateChange': onPlayerStateChange\n      }\n    });\n  }\n\n  function onPlayerReady(event) {\n    event.target.playVideo();\n  }\n\n  function onPlayerStateChange(event) {\n    if (event.data == YT.PlayerState.ENDED) {\n      player.seekTo(0);\n      player.playVideo();\n    }\n    \/\/ al empezar a reproducir que oculte la imagen de fondo\n    if (event.data == YT.PlayerState.PLAYING) {\n      setTimeout(() => {\n        document.getElementById('loadingImage').classList.add('-fade-out');\n      }, 1000);\n    }\n  }\n<\/script>\n\n\n<div id=\"editorial\" class=\"editorial white default  size_eq\"\n    data-course-url=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/course-combinations.json\"\n    data-course-version=\"20260922_18\">\n    \n    <div class=\"container no-image imgmobile-Arriba\">\n        <div class=\"content \">\n\n                            <div class=\"column column--left unique\">\n                                            <h2 class=\"editorial__title \">Boost your career with international reach<\/h2>\n                                        <p>If you want to take a global step forward in your professional journey, discover our networking event in Miami.<\/p>\n<p><strong>Miami International Week<\/strong>: Explore the world of innovation and entrepreneurship, connect with startups and leaders within the U.S. entrepreneurial ecosystem, and discover new ways of doing business.<\/p>\n<p>Corporate visits \u2013 hands-on workshops \u2013 <strong>international networking<\/strong><\/p>\n                                                                        <button class=\"editorial__button\"\n                                data-modal=\"button-modal\"\n                                data-modal-id=\"form_modal_block_4b1e06445ec9306458b5d8ddb51e93a7\"\n                                data-modal-pdf=\"https:\/\/static.universidadunipro.com\/Materiales-comerciales\/Batxelor_Diseno\/Batxelor_Diseno.pdf\"\n                                data-gtm-container=\"downloadable\"\n                                data-gtm-category=\"Descarga el plan de estudios\"\n                                data-gtm-action=\"navigation\">\n\n                                Descarga el plan de estudios                                <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/plugins\/iter-bloques\/blocks\/editorial\/assets\/images\/download.svg\" alt=\"Download Icon\" width=\"24px\" height=\"24px\" loading=\"lazy\" title=\"\">\n\n                            <\/button>\n                                            \n                    \n                    \n                                    <\/div>\n            \n            \n            \n            \n                    <\/div>\n    <\/div>\n<\/div>\n\n<!-- Modal -->\n<div id=\"form_modal_block_4b1e06445ec9306458b5d8ddb51e93a7\" class=\"modal template-form\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n        <div class=\"modal__content\">\n            <div class=\"modal__body\">\n                <button type=\"button\" class=\"modal__close\" data-modal=\"close\" data-gtm-action=\"video_close\" data-gtm-container=\"video\">\n                    <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"24px\" height=\"24px\" viewBox=\"0 0 22 22\" version=\"1.1\" alt=\"cerrar\" title=\"cerrar\" style=\"pointer-events: none;\">\n                        <g transform=\"translate(-750.000000, -1401.000000)\" fill=\"#2501C3\" fill-rule=\"nonzero\">\n                            <g id=\"Group\" transform=\"translate(749.000000, 1400.000000)\">\n                                <rect id=\"Rectangle\" transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509) \" x=\"-2.83410042\" y=\"10.7545291\" width=\"29.6473631\" height=\"2.47195968\" rx=\"1.23597984\"><\/rect>\n                                <rect id=\"Rectangle\" transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492) \" x=\"-2.83271172\" y=\"10.7545628\" width=\"29.6473631\" height=\"2.47185909\" rx=\"1.23592955\"><\/rect>\n                            <\/g>\n                        <\/g>\n                    <\/svg>\n                <\/button>\n                <div class=\"modal__body__content\">\n                    \n<div class=\"wpcf7 no-js\" id=\"wpcf7-f399-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"399\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/en\/wp-json\/wp\/v2\/pages\/6252#wpcf7-f399-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"399\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.7\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f399-o1\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/fieldset>\n<div class=\"js-form\"><h2>Descarga gratis el plan de estudios y solicita informaci\u00f3n<\/h2><p>Completa el formulario y un asesor te contactar\u00e1 para informarte.<\/p>\n \n   <div class=\"form__row\">\n     <div class=\"form__column\">\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"first_name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name\" value=\"\" type=\"text\" name=\"first_name\" \/><\/span>\n     <\/div>\n     <div class=\"form__column\">\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"last_name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Surname\" value=\"\" type=\"text\" name=\"last_name\" \/><\/span>\n     <\/div>\n   <\/div>\n \n  <div class=\"form__row\">\n    <div class=\"form__column\">\n      <span class=\"wpcf7-form-control-wrap\" data-name=\"email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Enter your email\" value=\"\" type=\"email\" name=\"email\" \/><\/span>\n    <\/div>\n    <div class='form__column form__telephone'>\n      <div class=\"form__column form__column-prefix\">\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"prefix\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required form__field form__prefix\" aria-required=\"true\" aria-invalid=\"false\" value=\"+34\" type=\"text\" name=\"prefix\" \/><\/span>\n      <\/div>\n      <div class=\"form__column\">\n         <span class=\"wpcf7-form-control-wrap\" data-name=\"phone\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-tel wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-tel form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Enter your phone\" value=\"\" type=\"tel\" name=\"phone\" \/><\/span>\n      <\/div>\n    <\/div>\n  <\/div>\n \n   <div class=\"form__row\">\n     <div class=\"form__column form__select\">\n<select id=\"education_level-5\" name=\"education_level\" data-name=\"education_level\" required=\"\" class=\"form__field\"><option value=\"\">Level of studies completed *<\/option><option value=\"doctorado\">PhD\/Doctorate<\/option><option value=\"postgrado\">Master<\/option><option value=\"graduado\">Bachelor&#8217;s Degree<\/option><option value=\"bachiller\">High school<\/option><\/select>\n     <\/div>\n     <div class=\"form__column form__select\">\n       <select class=\"form__field form__country\" aria-invalid=\"false\" placeholder=\"Country of residence\" name=\"country_code\"><\/select>\n     <\/div>\n   <\/div>\n\n  <div class=\"form__row row-reverse\">\n    <div class='form__column form__radio'>\n      <p>Program language :<\/p>\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"language\"><span class=\"wpcf7-form-control wpcf7-radio\"><span class=\"wpcf7-list-item first\"><label><input type=\"radio\" name=\"language\" value=\"es\" \/><span class=\"wpcf7-list-item-label\">es<\/span><\/label><\/span><span class=\"wpcf7-list-item last\"><label><input type=\"radio\" name=\"language\" value=\"en\" \/><span class=\"wpcf7-list-item-label\">en<\/span><\/label><\/span><\/span><\/span>\n    <\/div>\n\n    <div class='form__column form__radio'>\n       <p>Format :<\/p>\n       <span class=\"wpcf7-form-control-wrap\" data-name=\"modoDiFruizione\"><span class=\"wpcf7-form-control wpcf7-radio\"><span class=\"wpcf7-list-item first\"><input type=\"radio\" name=\"modoDiFruizione\" value=\"Online\" \/><span class=\"wpcf7-list-item-label\">Online<\/span><\/span><span class=\"wpcf7-list-item last\"><input type=\"radio\" name=\"modoDiFruizione\" value=\"Hybrid\" \/><span class=\"wpcf7-list-item-label\">Hybrid<\/span><\/span><\/span><\/span>\n    <\/div>\n  <\/div>\n\n<div class=\"form__row\"><div class=\"form__column form__select\"><select name=\"studio\" required=\"\" class=\"form__field\" aria-invalid=\"false\" aria-required=\"true\" data-dynamic=\"true\"><option value=\"\">Select a program *<\/option><option value=\"BSBA\">Bachelor of Science in Business Administration<\/option><option value=\"BSCS\">Bachelor of Science in Computer Science<\/option><\/select><\/div><div class=\"form__column form__select\"><select name=\"studio_child\" id=\"certificado_experto\" data-dynamic=\"true\" class=\"form__field\" aria-invalid=\"false\" aria-required=\"true\"><option value=\"\">Select a specialization course<\/option><\/select><\/div><\/div>\n \n<div class=\"form__rgpd\"><div class=\"form__row\"><div class=\"form__legal\"><p class=\"form__legal-p\">MIU CITY UNIVERSITY MIAMI, INC. (hereinafter, \u201cMIU\u201d), shall process the personal data you have provided so as to manage your request for information, claim doubt or suggestion regarding the products and\/or services .offered by MIU, by telephone, and to keep you up to date with our activities.We also inform you that we will profile your personal data with the aim of sending you information tailored to your interests. You may find additional information by clicking here.You may revoke your consent and exercise your rights under articles 15 to 22 of EU Regulation 2016\/679 by writing to 111 NE 1st Street, 6th Floor, Miami, FL 33132, or the following email address: ppd@miuniversity.edu, attaching a copy of your DNI or proof of identity. If you wish, you can read the additional, detailed information on data protection in the following link: https:\/\/miuniversity.edu\/privacy-policy\/ I want to receive information from MIU, and from the other Proeduca Group companies that operate in the education sector.<\/p><\/div><\/div>\n<div><label class=\"form__check\"><input type=\"checkbox\" class=\"form__check-input\" name=\"gdpr\" value=\"1\" aria-invalid=\"false\"><div class=\"form__checkbox\"><\/div><span class=\"form__checkbox-text\"><span>I want to receive information from MIU, and from the other <a href=\"https:\/\/miuniversity.edu\/en\/privacy-policy\/\" target=\"_blank\">Proeduca Group<\/a>, companies that operate in the education sector.<\/span><\/span><\/label><\/div>\n<\/div>\n \n   <div class=\"form__send\">\n     <div class=\"form__loader\"><\/div>\n     <input class=\"wpcf7-submit\" type=\"submit\" value=\"Descargar plan de estudios y solicitar informaci\u00f3n\">\n   <\/div>\n\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"sw4yJvw8aOfd9d1hZop00ZH0EM9F2XBu\" type=\"hidden\" name=\"token\" \/>\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"web\" type=\"hidden\" name=\"request_from\" \/>\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"EN\" type=\"hidden\" name=\"lang_lead\" \/>\n<input type=\"hidden\" name=\"utm_medium\" value=\"\" \/><input type=\"hidden\" name=\"utm_content\" value=\"\" \/><input type=\"hidden\" name=\"facebook_utm\" value=\"\" \/><input type=\"hidden\" name=\"source_url\" value=\"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/pages\/6252\" \/><input type=\"hidden\" name=\"utm_source\" value=\"\" \/> <input type=\"hidden\" name=\"utm_campaign\" value=\"\" \/>\n <span id=\"wpcf7-6ab2cd5295d2e-wrapper\" class=\"wpcf7-form-control-wrap cf7apps-honeypot-wrap honeypot-470-wrap\" data-cf7apps-honeypot=\"honeypot-470\" style=\"position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;\"><input type=\"hidden\" name=\"honeypot-470-random-hash\" value=\"20260922\"><input type=\"hidden\" name=\"honeypot-470-time-token\" value=\"MTc5MDEwMjg2Ng==.d1c8ba0fea996d7758856791d86a5abab1731b6840e3bfa8c893dc9bb5d78c35\"><label\n\t\t    for=\"wpcf7-6ab2cd5295d2e-field\"\n\t\t    class=\"hp-message\"\n        >Please leave this field empty.<\/label><input\n\t    id=\"wpcf7-6ab2cd5295d2e-field\"\n\t    \n\t    class=\"wpcf7-form-control wpcf7-text\"\n\t    type=\"text\"\n\t    name=\"epitorcjlxnw\"\n\t    value=\"\"\n\t    autocomplete=\"new-password\"\n\t    tabindex=\"1000\"\n\t    data-cf7apps-tabindex=\"1000\"\n    \/><\/span>\n<\/div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<div id=\"editorial\" class=\"editorial grey default  size_eq\"\n    data-course-url=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/course-combinations.json\"\n    data-course-version=\"20260922_18\">\n    \n    <div class=\"container no-image imgmobile-Arriba\">\n        <div class=\"content \">\n\n                            <div class=\"column column--left unique\">\n                                            <h2 class=\"editorial__title \">Boost your career with international reach<\/h2>\n                                        <p>If you want to take a global step forward in your professional journey, discover our networking event in Miami.<\/p>\n<p><strong>Miami International Week<\/strong>: Explore the world of innovation and entrepreneurship, connect with startups and leaders within the U.S. entrepreneurial ecosystem, and discover new ways of doing business.<\/p>\n<p>Corporate visits \u2013 hands-on workshops \u2013 <strong>international networking<\/strong><\/p>\n                                                                        <button class=\"editorial__button\"\n                                data-modal=\"button-modal\"\n                                data-modal-id=\"form_modal_block_1d899eaab25bb437f80045bd26510a5d\"\n                                data-modal-pdf=\"https:\/\/static.universidadunipro.com\/Materiales-comerciales\/Batxelor_Diseno\/Batxelor_Diseno.pdf\"\n                                data-gtm-container=\"downloadable\"\n                                data-gtm-category=\"Descarga el plan de estudios\"\n                                data-gtm-action=\"navigation\">\n\n                                Descarga el plan de estudios                                <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/plugins\/iter-bloques\/blocks\/editorial\/assets\/images\/download.svg\" alt=\"Download Icon\" width=\"24px\" height=\"24px\" loading=\"lazy\" title=\"\">\n\n                            <\/button>\n                                            \n                    \n                    \n                                    <\/div>\n            \n            \n            \n            \n                    <\/div>\n    <\/div>\n<\/div>\n\n<!-- Modal -->\n<div id=\"form_modal_block_1d899eaab25bb437f80045bd26510a5d\" class=\"modal template-form\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n        <div class=\"modal__content\">\n            <div class=\"modal__body\">\n                <button type=\"button\" class=\"modal__close\" data-modal=\"close\" data-gtm-action=\"video_close\" data-gtm-container=\"video\">\n                    <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"24px\" height=\"24px\" viewBox=\"0 0 22 22\" version=\"1.1\" alt=\"cerrar\" title=\"cerrar\" style=\"pointer-events: none;\">\n                        <g transform=\"translate(-750.000000, -1401.000000)\" fill=\"#2501C3\" fill-rule=\"nonzero\">\n                            <g id=\"Group\" transform=\"translate(749.000000, 1400.000000)\">\n                                <rect id=\"Rectangle\" transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509) \" x=\"-2.83410042\" y=\"10.7545291\" width=\"29.6473631\" height=\"2.47195968\" rx=\"1.23597984\"><\/rect>\n                                <rect id=\"Rectangle\" transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492) \" x=\"-2.83271172\" y=\"10.7545628\" width=\"29.6473631\" height=\"2.47185909\" rx=\"1.23592955\"><\/rect>\n                            <\/g>\n                        <\/g>\n                    <\/svg>\n                <\/button>\n                <div class=\"modal__body__content\">\n                    \n<div class=\"wpcf7 no-js\" id=\"wpcf7-f399-o2\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"399\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/en\/wp-json\/wp\/v2\/pages\/6252#wpcf7-f399-o2\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"399\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.7\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f399-o2\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/fieldset>\n<div class=\"js-form\"><h2>Descarga gratis el plan de estudios y solicita informaci\u00f3n<\/h2><p>Completa el formulario y un asesor te contactar\u00e1 para informarte.<\/p>\n \n   <div class=\"form__row\">\n     <div class=\"form__column\">\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"first_name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name\" value=\"\" type=\"text\" name=\"first_name\" \/><\/span>\n     <\/div>\n     <div class=\"form__column\">\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"last_name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Surname\" value=\"\" type=\"text\" name=\"last_name\" \/><\/span>\n     <\/div>\n   <\/div>\n \n  <div class=\"form__row\">\n    <div class=\"form__column\">\n      <span class=\"wpcf7-form-control-wrap\" data-name=\"email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Enter your email\" value=\"\" type=\"email\" name=\"email\" \/><\/span>\n    <\/div>\n    <div class='form__column form__telephone'>\n      <div class=\"form__column form__column-prefix\">\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"prefix\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required form__field form__prefix\" aria-required=\"true\" aria-invalid=\"false\" value=\"+34\" type=\"text\" name=\"prefix\" \/><\/span>\n      <\/div>\n      <div class=\"form__column\">\n         <span class=\"wpcf7-form-control-wrap\" data-name=\"phone\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-tel wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-tel form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Enter your phone\" value=\"\" type=\"tel\" name=\"phone\" \/><\/span>\n      <\/div>\n    <\/div>\n  <\/div>\n \n   <div class=\"form__row\">\n     <div class=\"form__column form__select\">\n<select id=\"education_level-5\" name=\"education_level\" data-name=\"education_level\" required=\"\" class=\"form__field\"><option value=\"\">Level of studies completed *<\/option><option value=\"doctorado\">PhD\/Doctorate<\/option><option value=\"postgrado\">Master<\/option><option value=\"graduado\">Bachelor&#8217;s Degree<\/option><option value=\"bachiller\">High school<\/option><\/select>\n     <\/div>\n     <div class=\"form__column form__select\">\n       <select class=\"form__field form__country\" aria-invalid=\"false\" placeholder=\"Country of residence\" name=\"country_code\"><\/select>\n     <\/div>\n   <\/div>\n\n  <div class=\"form__row row-reverse\">\n    <div class='form__column form__radio'>\n      <p>Program language :<\/p>\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"language\"><span class=\"wpcf7-form-control wpcf7-radio\"><span class=\"wpcf7-list-item first\"><label><input type=\"radio\" name=\"language\" value=\"es\" \/><span class=\"wpcf7-list-item-label\">es<\/span><\/label><\/span><span class=\"wpcf7-list-item last\"><label><input type=\"radio\" name=\"language\" value=\"en\" \/><span class=\"wpcf7-list-item-label\">en<\/span><\/label><\/span><\/span><\/span>\n    <\/div>\n\n    <div class='form__column form__radio'>\n       <p>Format :<\/p>\n       <span class=\"wpcf7-form-control-wrap\" data-name=\"modoDiFruizione\"><span class=\"wpcf7-form-control wpcf7-radio\"><span class=\"wpcf7-list-item first\"><input type=\"radio\" name=\"modoDiFruizione\" value=\"Online\" \/><span class=\"wpcf7-list-item-label\">Online<\/span><\/span><span class=\"wpcf7-list-item last\"><input type=\"radio\" name=\"modoDiFruizione\" value=\"Hybrid\" \/><span class=\"wpcf7-list-item-label\">Hybrid<\/span><\/span><\/span><\/span>\n    <\/div>\n  <\/div>\n\n<div class=\"form__row\"><div class=\"form__column form__select\"><select name=\"studio\" required=\"\" class=\"form__field\" aria-invalid=\"false\" aria-required=\"true\" data-dynamic=\"true\"><option value=\"\">Select a program *<\/option><option value=\"BSBA\">Bachelor of Science in Business Administration<\/option><option value=\"BSCS\">Bachelor of Science in Computer Science<\/option><\/select><\/div><div class=\"form__column form__select\"><select name=\"studio_child\" id=\"certificado_experto\" data-dynamic=\"true\" class=\"form__field\" aria-invalid=\"false\" aria-required=\"true\"><option value=\"\">Select a specialization course<\/option><\/select><\/div><\/div>\n \n<div class=\"form__rgpd\"><div class=\"form__row\"><div class=\"form__legal\"><p class=\"form__legal-p\">MIU CITY UNIVERSITY MIAMI, INC. (hereinafter, \u201cMIU\u201d), shall process the personal data you have provided so as to manage your request for information, claim doubt or suggestion regarding the products and\/or services .offered by MIU, by telephone, and to keep you up to date with our activities.We also inform you that we will profile your personal data with the aim of sending you information tailored to your interests. You may find additional information by clicking here.You may revoke your consent and exercise your rights under articles 15 to 22 of EU Regulation 2016\/679 by writing to 111 NE 1st Street, 6th Floor, Miami, FL 33132, or the following email address: ppd@miuniversity.edu, attaching a copy of your DNI or proof of identity. If you wish, you can read the additional, detailed information on data protection in the following link: https:\/\/miuniversity.edu\/privacy-policy\/ I want to receive information from MIU, and from the other Proeduca Group companies that operate in the education sector.<\/p><\/div><\/div>\n<div><label class=\"form__check\"><input type=\"checkbox\" class=\"form__check-input\" name=\"gdpr\" value=\"1\" aria-invalid=\"false\"><div class=\"form__checkbox\"><\/div><span class=\"form__checkbox-text\"><span>I want to receive information from MIU, and from the other <a href=\"https:\/\/miuniversity.edu\/en\/privacy-policy\/\" target=\"_blank\">Proeduca Group<\/a>, companies that operate in the education sector.<\/span><\/span><\/label><\/div>\n<\/div>\n \n   <div class=\"form__send\">\n     <div class=\"form__loader\"><\/div>\n     <input class=\"wpcf7-submit\" type=\"submit\" value=\"Descargar plan de estudios y solicitar informaci\u00f3n\">\n   <\/div>\n\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"sw4yJvw8aOfd9d1hZop00ZH0EM9F2XBu\" type=\"hidden\" name=\"token\" \/>\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"web\" type=\"hidden\" name=\"request_from\" \/>\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"EN\" type=\"hidden\" name=\"lang_lead\" \/>\n<input type=\"hidden\" name=\"utm_medium\" value=\"\" \/><input type=\"hidden\" name=\"utm_content\" value=\"\" \/><input type=\"hidden\" name=\"facebook_utm\" value=\"\" \/><input type=\"hidden\" name=\"source_url\" value=\"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/pages\/6252\" \/><input type=\"hidden\" name=\"utm_source\" value=\"\" \/> <input type=\"hidden\" name=\"utm_campaign\" value=\"\" \/>\n <span id=\"wpcf7-6ab2cd52979b8-wrapper\" class=\"wpcf7-form-control-wrap cf7apps-honeypot-wrap honeypot-470-wrap\" data-cf7apps-honeypot=\"honeypot-470\" style=\"position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;\"><input type=\"hidden\" name=\"honeypot-470-random-hash\" value=\"20260922\"><input type=\"hidden\" name=\"honeypot-470-time-token\" value=\"MTc5MDEwMjg2Ng==.d1c8ba0fea996d7758856791d86a5abab1731b6840e3bfa8c893dc9bb5d78c35\"><label\n\t\t    for=\"wpcf7-6ab2cd52979b8-field\"\n\t\t    class=\"hp-message\"\n        >Please leave this field empty.<\/label><input\n\t    id=\"wpcf7-6ab2cd52979b8-field\"\n\t    \n\t    class=\"wpcf7-form-control wpcf7-text\"\n\t    type=\"text\"\n\t    name=\"epitorcjlxnw\"\n\t    value=\"\"\n\t    autocomplete=\"new-password\"\n\t    tabindex=\"1000\"\n\t    data-cf7apps-tabindex=\"1000\"\n    \/><\/span>\n<\/div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<section id=\"salidasprofesionales\" class=\"career-oportunities grey\">\n  <div class=\"container\">\n\n    <div class=\"content\">\n\n              <h2 class=\"career-oportunities__title\">\n          Salidas profesionales        <\/h2>\n      \n              <p>Enfr\u00e9ntate a los desaf\u00edos del mundo empresarial actual y construye una carrera exitosa. Potencia tu empleabilidad, aumenta tus expectativas salariales y accede a organizaciones de excelencia con proyecci\u00f3n internacional en \u00e1reas como:<\/p>\n<ul>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Gesti\u00f3n y control de empresas p\u00fablicas o privadas.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Asesor\u00eda financiera y fiscal.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Servicios bancarios y de seguros.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Actividades de an\u00e1lisis y planificaci\u00f3n del riesgo empresarial.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Control financiero.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Comercializaci\u00f3n de bienes y servicios.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Auditor\u00eda y supervisi\u00f3n de empresas nacionales e internacionales.<\/span><\/li>\n<\/ul>\n      \n      \n        <div class=\"career-oportunities__accordion\" data-module=\"accordion\">\n\n          <details class=\"career-oportunities__accordion__item\" data-accordion=\"item\" open>\n\n            <summary class=\"career-oportunities__accordion__item__title white\" data-accordion=\"button\" data-gtm-container=\"Salidas profesionales\" data-gtm-category=\"Habilidades con las que te grad\u00faas\" data-gtm-action=\"accordion_open\">\n              <span class=\"accordion__action -icon-after icon--plus-slim\">Nuevo t\u00edtulo<\/span>\n            <\/summary>\n\n            <div class=\"career-oportunities__accordion__item__body white\" data-accordion=\"content\">\n              <ul class=\"career-oportunities__accordion__item__body__ul\">\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Visi\u00f3n global<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Liderazgo<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Capacidad para operar en entornos multiculturales<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Pensamiento estrat\u00e9gico<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Toma de decisiones y resoluci\u00f3n de problemas<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Adaptabilidad<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Comunicaci\u00f3n y negociaci\u00f3n<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Gesti\u00f3n de proyectos y financiera<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">An\u00e1lisis de datos<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Optimizaci\u00f3n de procesos<\/li>\n                                  <li class=\"career-oportunities__accordion__item__body__li\">Estrategias de marketing<\/li>\n                              <\/ul>\n            <\/div>\n\n          <\/details>\n\n        <\/div>\n\n      \n              <div class=\"career-oportunities__fonts\"><p><em>* Fuente: <a href=\"https:\/\/des.miuniversity.edu\/en\/admission\/scholarships\/\">https:\/\/www.bls.gov\/ooh\/management\/postsecondary-education-administrators.htm<\/a><\/em><br \/>\n<em>** Fuente: <a href=\"https:\/\/des.miuniversity.edu\/en\/admission\/scholarships\/\">https:\/\/www.bls.gov\/ooh\/management\/postsecondary-education-administrators.htm<\/a><\/em><\/p>\n<\/div>\n      \n    <\/div>\n\n    <div class=\"grid white\">\n\n      <div class=\"feat\">\n        <span>$90,000<\/span>\n        <p>SALARIO MEDIO *<\/p>\n      <\/div>\n\n      <div class=\"feat\">\n        <span>90%<\/span>\n        <p>EMPLEABILIDAD **<\/p>\n      <\/div>\n\n    <\/div>\n\n  <\/div>\n<\/section>\n\n\n<div id=\"formacion\" class=\"training white\">\n  <div class=\"container\">\n    <div class=\"content\">\n      <div>\n        <div class=\"title\">\n          <h2 class=\"training__title\">Study Plan<\/h2>\n          <h3>36 Credits<\/h3>\n        <\/div>\n        <p><span style=\"font-weight: 400;\">At MIU, each academic term lasts 15 weeks, equivalent to one semester in the U.S. education system. We have three semesters each year: from January to May, from May to August, and from August to December.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">See all the courses included in your degree program.<\/span><\/p>\n      <\/div>\n      <div class=\"accordion\">\n                              <div class=\"first-level frs-lvl\" data-gtm-container=\"Study Plan\"\n              data-gtm-category=\"1st semester\" data-gtm-action=\"accordion_open\">\n              <div class=\"trigger\">\n                <h3>1st semester<\/h3>\n                <div>\n                  <span>3 courses<\/span>\n                  <svg width=\"19\" height=\"11\" viewBox=\"0 0 19 11\" fill=\"none\">\n                    <path d=\"M1 1L9.5 9L18 1\" stroke=\"black\" stroke-width=\"2\" \/>\n                  <\/svg>\n                <\/div>\n              <\/div>\n              <section>\n                                                                            <div class=\"first-level sec-lvl\" data-gtm-container=\"Study Plan\"\n                        data-gtm-category=\"Cybercrime and Cybersecurity Regulations\" data-gtm-action=\"accordion_open\">\n                        <div class=\"trigger\">\n                          <h4 class=\"inner-title\">Cybercrime and Cybersecurity Regulations<\/h4>\n                          <div>\n                                                          <span>2 Asignaturas<\/span>\n                                                                                      <svg width=\"19\" height=\"11\" viewBox=\"0 0 19 11\" fill=\"none\">\n                                <path d=\"M1 1L9.5 9L18 1\" stroke=\"black\" stroke-width=\"2\" \/>\n                              <\/svg>\n                                                      <\/div>\n                        <\/div>\n                        <section>\n                                                                                                                  <div class=\"last-level trd-lvl\" data-gtm-container=\"Study Plan\"\n                                data-gtm-category=\"Sub asignatura 1\" data-gtm-action=\"modal_open\">\n                                <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c0-s0-ss0\">\n                                  <h5>Sub asignatura 1<\/h5>\n                                  <div class=\"trigger-list-scnd\">\n                                    <p>BNH<\/p>\n                                    <p>1 Credit<\/p>\n                                  <\/div>\n                                <\/div>\n                              <\/div>\n                                                                                                                      <div class=\"last-level trd-lvl\" data-gtm-container=\"Study Plan\"\n                                data-gtm-category=\"Sub asignatura 2\" data-gtm-action=\"modal_open\">\n                                <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c0-s0-ss1\">\n                                  <h5>Sub asignatura 2<\/h5>\n                                  <div class=\"trigger-list-scnd\">\n                                    <p>MVC<\/p>\n                                    <p>2 Credits<\/p>\n                                  <\/div>\n                                <\/div>\n                              <\/div>\n                                                                                                            <\/section>\n                      <\/div>\n                                                                                                      <div class=\"last-level\" data-gtm-container=\"Study Plan\"\n                        data-gtm-category=\"Cybersecurity Governance and Risk Analysis\" data-gtm-action=\"modal_open\">\n                        <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c0-s1\">\n                          <h4>Cybersecurity Governance and Risk Analysis<\/h4>\n                          <div class=\"trigger-list\">\n                                                                                      <p>MCY520<\/p>\n                                                                                      <p>3 Credits<\/p>\n                                                      <\/div>\n                        <\/div>\n                      <\/div>\n                                                                                                                            <div class=\"last-level\" data-gtm-container=\"Study Plan\"\n                        data-gtm-category=\"Computer Forensics and Incident Response\" data-gtm-action=\"modal_open\">\n                        <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c0-s2\">\n                          <h4>Computer Forensics and Incident Response<\/h4>\n                          <div class=\"trigger-list\">\n                                                                                      <p>MCY530<\/p>\n                                                                                      <p>3 Credits<\/p>\n                                                      <\/div>\n                        <\/div>\n                      <\/div>\n                                                                                          <\/section>\n            <\/div>\n                      <div class=\"first-level frs-lvl\" data-gtm-container=\"Study Plan\"\n              data-gtm-category=\"2nd semester\" data-gtm-action=\"accordion_open\">\n              <div class=\"trigger\">\n                <h3>2nd semester<\/h3>\n                <div>\n                  <span>3 courses<\/span>\n                  <svg width=\"19\" height=\"11\" viewBox=\"0 0 19 11\" fill=\"none\">\n                    <path d=\"M1 1L9.5 9L18 1\" stroke=\"black\" stroke-width=\"2\" \/>\n                  <\/svg>\n                <\/div>\n              <\/div>\n              <section>\n                                                                            <div class=\"first-level sec-lvl\" data-gtm-container=\"Study Plan\"\n                        data-gtm-category=\"System, Application, and Big Data Security\" data-gtm-action=\"accordion_open\">\n                        <div class=\"trigger\">\n                          <h4 class=\"inner-title\">System, Application, and Big Data Security<\/h4>\n                          <div>\n                                                          <span>3 Asignaturas<\/span>\n                                                                                      <svg width=\"19\" height=\"11\" viewBox=\"0 0 19 11\" fill=\"none\">\n                                <path d=\"M1 1L9.5 9L18 1\" stroke=\"black\" stroke-width=\"2\" \/>\n                              <\/svg>\n                                                      <\/div>\n                        <\/div>\n                        <section>\n                                                                                                                  <div class=\"last-level trd-lvl\" data-gtm-container=\"Study Plan\"\n                                data-gtm-category=\"Sub asignatura\" data-gtm-action=\"modal_open\">\n                                <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c1-s0-ss0\">\n                                  <h5>Sub asignatura<\/h5>\n                                  <div class=\"trigger-list-scnd\">\n                                    <p>MCV<\/p>\n                                    <p>3 Credits<\/p>\n                                  <\/div>\n                                <\/div>\n                              <\/div>\n                                                                                                            <\/section>\n                      <\/div>\n                                                                    <\/section>\n            <\/div>\n                      <div class=\"first-level frs-lvl\" data-gtm-container=\"Study Plan\"\n              data-gtm-category=\"3rd semester\" data-gtm-action=\"accordion_open\">\n              <div class=\"trigger\">\n                <h3>3rd semester<\/h3>\n                <div>\n                  <span>2 courses<\/span>\n                  <svg width=\"19\" height=\"11\" viewBox=\"0 0 19 11\" fill=\"none\">\n                    <path d=\"M1 1L9.5 9L18 1\" stroke=\"black\" stroke-width=\"2\" \/>\n                  <\/svg>\n                <\/div>\n              <\/div>\n              <section>\n                                                                                                  <div class=\"last-level\" data-gtm-container=\"Study Plan\"\n                        data-gtm-category=\"Ethical Hacking\" data-gtm-action=\"modal_open\">\n                        <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c2-s0\">\n                          <h4>Ethical Hacking<\/h4>\n                          <div class=\"trigger-list\">\n                                                                                      <p>MCY570<\/p>\n                                                                                      <p>3 Credits<\/p>\n                                                      <\/div>\n                        <\/div>\n                      <\/div>\n                                                                                                                            <div class=\"last-level\" data-gtm-container=\"Study Plan\"\n                        data-gtm-category=\"Applied Cryptography\" data-gtm-action=\"modal_open\">\n                        <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c2-s1\">\n                          <h4>Applied Cryptography<\/h4>\n                          <div class=\"trigger-list\">\n                                                                                      <p>MCY580<\/p>\n                                                                                      <p>3 Credits<\/p>\n                                                      <\/div>\n                        <\/div>\n                      <\/div>\n                                                                                          <\/section>\n            <\/div>\n                      <div class=\"first-level frs-lvl\" data-gtm-container=\"Study Plan\"\n              data-gtm-category=\"4th semester\" data-gtm-action=\"accordion_open\">\n              <div class=\"trigger\">\n                <h3>4th semester<\/h3>\n                <div>\n                  <span>2 courses<\/span>\n                  <svg width=\"19\" height=\"11\" viewBox=\"0 0 19 11\" fill=\"none\">\n                    <path d=\"M1 1L9.5 9L18 1\" stroke=\"black\" stroke-width=\"2\" \/>\n                  <\/svg>\n                <\/div>\n              <\/div>\n              <section>\n                                                                                                  <div class=\"last-level\" data-gtm-container=\"Study Plan\"\n                        data-gtm-category=\"Digital Identity Models and Technologies\" data-gtm-action=\"modal_open\">\n                        <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c3-s0\">\n                          <h4>Digital Identity Models and Technologies<\/h4>\n                          <div class=\"trigger-list\">\n                                                                                      <p>MCY590<\/p>\n                                                                                      <p>3 Credits<\/p>\n                                                      <\/div>\n                        <\/div>\n                      <\/div>\n                                                                                                                            <div class=\"last-level\" data-gtm-container=\"Study Plan\"\n                        data-gtm-category=\"Cloud, Mobile and Virtualized Environments Security\" data-gtm-action=\"modal_open\">\n                        <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c3-s1\">\n                          <h4>Cloud, Mobile and Virtualized Environments Security<\/h4>\n                          <div class=\"trigger-list\">\n                                                                                      <p>MCY600<\/p>\n                                                                                      <p>3 Credits<\/p>\n                                                      <\/div>\n                        <\/div>\n                      <\/div>\n                                                                                          <\/section>\n            <\/div>\n                      <div class=\"first-level frs-lvl\" data-gtm-container=\"Study Plan\"\n              data-gtm-category=\"5th semester\" data-gtm-action=\"accordion_open\">\n              <div class=\"trigger\">\n                <h3>5th semester<\/h3>\n                <div>\n                  <span>1 course<\/span>\n                  <svg width=\"19\" height=\"11\" viewBox=\"0 0 19 11\" fill=\"none\">\n                    <path d=\"M1 1L9.5 9L18 1\" stroke=\"black\" stroke-width=\"2\" \/>\n                  <\/svg>\n                <\/div>\n              <\/div>\n              <section>\n                                                                                                  <div class=\"last-level\" data-gtm-container=\"Study Plan\"\n                        data-gtm-category=\"Cybersecurity Capstone Project\" data-gtm-action=\"modal_open\">\n                        <div class=\"trigger\" data-modal=\"button-modal\" data-modal-id=\"modal-formacion-c4-s0\">\n                          <h4>Cybersecurity Capstone Project<\/h4>\n                          <div class=\"trigger-list\">\n                                                                                      <p>MCY610<\/p>\n                                                                                      <p>6 Credits<\/p>\n                                                      <\/div>\n                        <\/div>\n                      <\/div>\n                                                                                          <\/section>\n            <\/div>\n                        <\/div>\n          <\/div>\n  <\/div>\n<\/div>\n\n    <div id=\"modal-formacion-c0-s0-ss0\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Sub asignatura 1<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c0-s0-ss0\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>This course includes a study of criminal law as it applies to infractions where digital goods or services are used as a means or an end. You will learn to identify and report these types of infractions and follow the appropriate procedures. You will also explore legislation related to digital goods and services, focusing on key areas such as industrial and intellectual property, data protection, and market regulations. The course provides you with an integrated perspective on the legal dimensions and institutional legal framework surrounding digital security. You will learn to analyze and propose a variety of strategies in this context.<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n      <div id=\"modal-formacion-c0-s0-ss1\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Sub asignatura 2<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c0-s0-ss1\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>This course includes a study of criminal law as it applies to infractions where digital goods or services are used as a means or an end. You will learn to identify and report these types of infractions and follow the appropriate procedures. You will also explore legislation related to digital goods and services, focusing on key areas such as industrial and intellectual property, data protection, and market regulations. The course provides you with an integrated perspective on the legal dimensions and institutional legal framework surrounding digital security. You will learn to analyze and propose a variety of strategies in this context.<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n      <div id=\"modal-formacion-c0-s1\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Cybersecurity Governance and Risk Analysis<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c0-s1\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>This course includes a study of criminal law as it applies to infractions where digital goods or services are used as a means or an end. You will learn to identify and report these types of infractions and follow the appropriate procedures. You will also explore legislation related to digital goods and services, focusing on key areas such as industrial and intellectual property, data protection, and market regulations. The course provides you with an integrated perspective on the legal dimensions and institutional legal framework surrounding digital security. You will learn to analyze and propose a variety of strategies in this context.<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n      <div id=\"modal-formacion-c0-s2\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Computer Forensics and Incident Response<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c0-s2\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>This course encompasses information recovery, data acquisition, forensic analysis methodology, data investigation, process documentation, information recovery tools, response strategies, disaster protection, file system redundancy, and advanced archiving systems. You will gain technical and legal knowledge for the forensic analysis of ICT systems, including its practical applications in generating expert reports. You will also learn how to understand and organize your own information, and how to equip yourself with the tools needed for the different types of analysis you may come across. You will also analyze incident responses, including the key elements in an efficient and effective response, as well as the roles, responsibilities, and steps for implementation.<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n      <div id=\"modal-formacion-c1-s0-ss0\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Sub asignatura<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c1-s0-ss0\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>This course encompasses information recovery, data acquisition, forensic analysis methodology, data investigation, process documentation, information recovery tools, response strategies, disaster protection, file system redundancy, and advanced archiving systems. You will gain technical and legal knowledge for the forensic analysis of ICT systems, including its practical applications in generating expert reports. You will also learn how to understand and organize your own information, and how to equip yourself with the tools needed for the different types of analysis you may come across. You will also analyze incident responses, including the key elements in an efficient and effective response, as well as the roles, responsibilities, and steps for implementation.<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n      <div id=\"modal-formacion-c2-s0\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Ethical Hacking<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c2-s0\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>This course encompasses security flaws, memory management, memory protection mechanisms, user and system space, local and remote exploits, basic alterations, memory exploits, shellcodes, and privilege levels. It also covers integer, buffer, and heap overflows, code injection, and executable protection. Additionally, you will study key recommendations for software development and analytical techniques, along with malware redesign and how it can be applied to malware analysis to understand malicious code.<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n      <div id=\"modal-formacion-c2-s1\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Applied Cryptography<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c2-s1\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>This course explores the fundamentals of mathematics and how they apply to cryptographic systems. This includes classical, password-based, and public-key cryptography, hybrid cryptographic systems, cryptographic hashing and HMAC summary functions, message authentication, digital signatures, secure cryptographic protocols, secure information transmission, cryptographic analysis, dictionary attacks, and brute-force attacks. The course gives you a comprehensive understanding of the most advanced aspects of network security, covering key topics for effective network protection from an information security point of view. You will also learn techniques for the different types of operating systems and the most secure modern cryptography systems, which underpin the security infrastructure for all critical internet systems.<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n      <div id=\"modal-formacion-c3-s0\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Digital Identity Models and Technologies<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c3-s0\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>This course covers the main methods of personal identification that exist today, starting with digital identification and smart cards. Later in the course, you will study biometric recognition, combining both concepts to emphasize how these types of identification technologies are used. First, you will explore digital identification technologies, including smart cards, to build on what you learned in previous courses. The second topic will focus on biometric recognition, which is currently one of the main solutions for linking a person with their identity. You will learn the main methods of biometric identification and their uses (historically and in the present day), paying special attention to those that are most prevalent worldwide. This course also addresses the use of technology in SSI (self-sovereign identity).<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n      <div id=\"modal-formacion-c3-s1\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Cloud, Mobile and Virtualized Environments Security<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c3-s1\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>Mobile and virtual network security fundamentals are of critical importance for modern IT departments, who are navigating a new paradigm of corporate security administration that goes beyond traditional server and desktop protection. Since the arrival of BYOD (bring your own device), mobile networks have become more open and permeable than ever, forming a new ecosystem of devices connected to a corporate network. Meanwhile, virtualization complicates traditional policies by introducing a new layer of abstraction between hardware and software. This course covers the essential tools and working principles for understanding and addressing these challenges. It also analyzes key technological considerations related to these new technologies and outlines the strategies you need to build a secure mobile and virtual environment.<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n      <div id=\"modal-formacion-c4-s0\" class=\"modal template-training\" data-modal=\"modal\">\n    <div class=\"modal__inner\">\n      <div class=\"modal__content\">\n        <div class=\"modal__body\">\n          <button type=\"button\" class=\"modal__close\" data-modal=\"close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 22 22\" fill=\"none\" style=\"pointer-events: none;\">\n  <g fill=\"currentColor\" fill-rule=\"nonzero\">\n    <rect transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509)\" x=\"-2.834100\" y=\"10.754529\" width=\"29.647363\" height=\"2.471960\" rx=\"1.235980\"><\/rect>\n    <rect transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492)\" x=\"-2.832712\" y=\"10.754563\" width=\"29.647363\" height=\"2.471859\" rx=\"1.235930\"><\/rect>\n  <\/g>\n<\/svg><\/button>\n                      <div class=\"modal__header\">Cybersecurity Capstone Project<\/div>\n                    <div class=\"modal-copy\">\n            <button type=\"button\" class=\"modal-copy__button\" data-copy-modal-id=\"modal-formacion-c4-s0\">\n              <span>Copiar<\/span>\n              <svg width=\"20\" height=\"20\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n  <path d=\"M15.2873 8.92502L17.7623 6.45002C18.8102 5.49493 20.1858 4.98032 21.6033 5.01314C23.0207 5.04595 24.371 5.62367 25.3736 6.62623C26.3762 7.6288 26.9539 8.97911 26.9867 10.3966C27.0195 11.814 26.5049 13.1896 25.5498 14.2375L22.0123 17.7625C21.5025 18.2743 20.8966 18.6803 20.2295 18.9574C19.5624 19.2344 18.8472 19.377 18.1248 19.377C17.4024 19.377 16.6872 19.2344 16.0201 18.9574C15.353 18.6803 14.7471 18.2743 14.2373 17.7625\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n  <path d=\"M16.7126 23.075L14.2376 25.55C13.1897 26.5051 11.8141 27.0197 10.3966 26.9869C8.97917 26.9541 7.62886 26.3764 6.62629 25.3738C5.62373 24.3712 5.04601 23.0209 5.0132 21.6035C4.98038 20.186 5.49499 18.8104 6.45008 17.7625L9.98758 14.2375C10.4974 13.7258 11.1033 13.3197 11.7704 13.0427C12.4375 12.7656 13.1527 12.623 13.8751 12.623C14.5974 12.623 15.3127 12.7656 15.9798 13.0427C16.6469 13.3197 17.2528 13.7258 17.7626 14.2375\" stroke=\"#010741\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n<\/svg>            <\/button>\n            <span class=\"modal-copy__feedback\">Enlace copiado<\/span>\n          <\/div>\n          <div class=\"modal__body__content\">\n            <div class=\"modal-accordion\">\n                              <div class=\"modal-accordion__item is-open\">\n                  <button type=\"button\" class=\"modal-accordion__header\">\n                    <span>Presentaci\u00f3n<\/span>\n                    <svg width=\"18\" height=\"10\" viewBox=\"0 0 19 11\" fill=\"none\">\n  <path d=\"M1 1L9.5 9L18 1\" stroke=\"#2501C3\" stroke-width=\"2\" \/>\n<\/svg>                  <\/button>\n                  <div class=\"modal-accordion__panel\">\n                    <div class=\"modal-accordion__panel-inner wysiwyg\">\n                                              <p class=\"modal-accordion__revision\">\u00daltima revisi\u00f3n realizada: <span>01\/09\/2026<\/span><\/p>\n                                            <div class=\"modal-accordion__content\">\n                        <p>This course encompasses the creation, design, and public defense of a theoretical or practical cybersecurity case. You must demonstrate your knowledge and skills using one or more of the following methods:<br data-start=\"7693\" data-end=\"7696\" \/>Exhaustive analysis of complex information systems where security is critical for proper functioning.<br data-start=\"7797\" data-end=\"7800\" \/>Identification of possible threats, vulnerabilities, and unsecured elements, both internal and external.<br data-start=\"7904\" data-end=\"7907\" \/>It can be theoretical, administrative, legal, or any combination of these.<br data-start=\"7981\" data-end=\"7984\" \/>Detailed analysis of threats, vulnerabilities, and unsecured elements, used to generate a report with possible solutions and recommendations for improving the system from an IT perspective.<br data-start=\"8173\" data-end=\"8176\" \/>Presentation of an implementation plan for the previously defined solutions.<\/p>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n  \n<script>\n  document.querySelectorAll(\".trigger:not([data-modal])\").forEach((accordion) => {\n    accordion.onclick = function () {\n      \/\/ analitics\n      if (this.parentNode.classList.contains(\"open\")) {\n        this.parentNode.setAttribute('data-gtm-action', 'accordion_open');\n      } else {\n        this.parentNode.setAttribute('data-gtm-action', 'accordion_close');\n      }\n      const image = this.querySelector(\".trigger svg\");\n      let content = this.nextElementSibling;\n      if (content?.style?.maxHeight) {\n        this.parentElement.classList.remove(\"open\");\n        content.style.maxHeight = null;\n        image.classList.remove(\"rotated\");\n        content.querySelectorAll(\".trigger:not([data-modal])\").forEach((item) => {\n          const svg = item.querySelector(\"svg\");\n          svg?.classList.remove(\"rotated\");\n          let section = item.nextElementSibling;\n          if (!section) return;\n          section.parentElement.classList.remove(\"open\");\n          if (section.style) {\n            section.style.maxHeight = null;\n          }\n        });\n      } else {\n        \/\/ get class name of this.parentElement\n        let className = this.parentElement.className;\n        \/\/ get all elements with the same class name\n        let elementsParent = document.getElementsByClassName(className);\n        \/\/ remove class open from all elements with the same class name\n        for (let i = 0; i < elementsParent.length; i++) {\n          elementsParent[i].classList.remove(\"open\");\n          let siblingContent = elementsParent[i].querySelector(\"section\");\n          if (siblingContent) {\n            siblingContent.style.maxHeight = null;\n          }\n          let siblingImage = elementsParent[i].querySelector(\"svg\");\n          if (siblingImage) {\n            siblingImage.classList.remove(\"rotated\");\n          }\n        }\n        this.parentElement.classList.add(\"open\");\n        setParentHeight(content, content.scrollHeight * 1.5);\n        content.style.maxHeight = content.scrollHeight * 1.5 + \"px\";\n        image.classList.add(\"rotated\");\n      }\n    };\n  });\n\n  function setParentHeight(content, scrollHeight) {\n    const parent = content.parentElement.parentElement;\n    if (parent.style.maxHeight) {\n      parent.style.maxHeight =\n        parent.scrollHeight + scrollHeight * 1.2 + \"px\";\n      setParentHeight(parent, parent.scrollHeight + scrollHeight * 1.2);\n    }\n  }\n\n  \/\/ Acorde\u00f3n de secciones dentro de los modales (Presentaci\u00f3n, Competencias, ...)\n  document.querySelectorAll(\".modal-accordion__header\").forEach((header) => {\n    header.onclick = function () {\n      const item = this.closest(\".modal-accordion__item\");\n      item.classList.toggle(\"is-open\");\n    };\n  });\n\n  \/\/ Bot\u00f3n \"Copiar\" del modal: copia la URL de esta p\u00e1gina con el modal ya abierto\n  document.querySelectorAll(\".modal-copy__button\").forEach((button) => {\n    button.onclick = function () {\n      const modalId = this.getAttribute(\"data-copy-modal-id\");\n      const url = new URL(window.location.href);\n      url.hash = \"\";\n      url.searchParams.set(\"modal\", modalId);\n      const feedback = this.parentElement.querySelector(\".modal-copy__feedback\");\n\n      const showFeedback = function () {\n        if (!feedback) return;\n        feedback.classList.add(\"is-visible\");\n        clearTimeout(feedback._trainingCopyTimeout);\n        feedback._trainingCopyTimeout = setTimeout(function () {\n          feedback.classList.remove(\"is-visible\");\n        }, 2000);\n      };\n\n      if (navigator.clipboard && navigator.clipboard.writeText) {\n        navigator.clipboard.writeText(url.toString()).then(showFeedback, showFeedback);\n      } else {\n        const helper = document.createElement(\"textarea\");\n        helper.value = url.toString();\n        helper.style.position = \"fixed\";\n        helper.style.opacity = \"0\";\n        document.body.appendChild(helper);\n        helper.select();\n        try {\n          document.execCommand(\"copy\");\n        } catch (e) {}\n        document.body.removeChild(helper);\n        showFeedback();\n      }\n    };\n  });\n\n  \/\/ Si la URL trae ?modal=<id>, abre ese modal autom\u00e1ticamente al cargar la p\u00e1gina\n  (function () {\n    const modalId = new URLSearchParams(window.location.search).get(\"modal\");\n    if (!modalId) return;\n    const modal = document.getElementById(modalId);\n    if (!modal || !modal.classList.contains(\"modal\")) return;\n    modal.classList.add(\"is-open\");\n    document.body.style.overflow = \"hidden\";\n  })();\n\n  \/\/ Cada vez que se (re)abre un modal de este bloque, su acorde\u00f3n interno vuelve\n  \/\/ al estado inicial: solo la primera secci\u00f3n (Presentaci\u00f3n) queda abierta.\n  function resetTrainingModalAccordion(modal) {\n    if (!modal) return;\n    modal.querySelectorAll(\".modal-accordion__item\").forEach((item, index) => {\n      item.classList.toggle(\"is-open\", index === 0);\n    });\n  }\n\n  document.querySelectorAll(\".training .accordion [data-modal=\\\"button-modal\\\"][data-modal-id]\").forEach((trigger) => {\n    trigger.addEventListener(\"click\", function () {\n      resetTrainingModalAccordion(document.getElementById(this.getAttribute(\"data-modal-id\")));\n    });\n  });\n<\/script>\n\n\n<section  class=\"testimonial navy\">\n    <div class=\"testimonial__container container\">\n\n                    <div class=\"testimonial__head\">\n\n                                    <h2 class=\"testimonial__title text-white\">Testimonios<\/h2>\n                \n                                    <div class=\"testimonial__description wysiwyg text-white\"><p>Esto es una mini descripci\u00f3n<\/p>\n<\/div>\n                \n            <\/div>\n        \n                    <div class=\"testimonial__content\">\n\n                                    <!-- Si hay solo un video -->\n\n                    \n                    <div class=\"testimonial__inner\">\n\n                        <div class=\"testimonial__inner__video --border-dark\" data-modal=\"button-modal\" data-modal-id=\"video-modal\" data-modal-iframe=\"https:\/\/www.youtube.com\/watch?v=K4TOrB7at0Y\" data-gtm-container=\"video\" data-gtm-category=\"William Johnson\" data-gtm-action=\"video_open\">\n\n                            <img decoding=\"async\" class=\"testimonial__inner__video__image\" src=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2026\/05\/MBA-Colombia-Desktop.jpg\" alt=\"Video cover image\" loading=\"lazy\" title=\"\">\n                            <div class=\"testimonial__inner__video__overlay\"><\/div>\n                            <span class=\"testimonial__inner__video__iconplay --play\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"80\" height=\"80\" fill=\"#ffffff\" viewBox=\"0 0 256 256\"><path d=\"M128,28A100,100,0,1,0,228,128,100.11,100.11,0,0,0,128,28Zm0,192a92,92,0,1,1,92-92A92.1,92.1,0,0,1,128,220Zm46.12-95.39-64-40A4,4,0,0,0,104,88v80a4,4,0,0,0,2.06,3.5,4.06,4.06,0,0,0,1.94.5,4,4,0,0,0,2.12-.61l64-40a4,4,0,0,0,0-6.78ZM112,160.78V95.22L164.45,128Z\"><\/path><\/svg><\/span>\n                            <span class=\"testimonial__inner__video__iconplay --play-fill\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"80\" height=\"80\" fill=\"#ffffff\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm40.55,110.58-52,36A8,8,0,0,1,104,164V92a8,8,0,0,1,12.55-6.58l52,36a8,8,0,0,1,0,13.16Z\"><\/path><\/svg><\/span>\n                            <div class=\"testimonial__inner__video__head\">\n                                <h5 class=\"testimonial__inner__video__name\">William Johnson<\/h5>\n                                <h6 class=\"testimonial__inner__video__job\">Software Engineer at Google<\/h6>\n                            <\/div>\n\n                        <\/div>\n\n                                                    <div class=\"testimonial__inner__content\">\n                                                                <h3 class=\"testimonial__inner__content__title text-white\">Descripci\u00f3n<\/h3>\n                                                                <div class=\"testimonial__inner__content__description wysiwyg text-white\"><p>Morem ipsum dolor sit amet, consectetur adipiscing elit. Etiam eu turpis molestie, dictum est a, mattis tellus. Sed dignissim, metus nec fringilla accumsan, risus sem sollicitudin lacus, ut interdum tellus elit sed risus. Maecenas eget condimentum velit, sit amet feugiat lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<\/p>\n<p>Curabitur tempor quis eros tempus lacinia. Nam bibendum pellentesque quam a convallis. Sed ut vulputate nisi. Integer in felis sed leo vestibulum venenatis. Suspendisse quis arcu sem. Aenean feugiat ex eu vestibulum vestibulum. Morbi a eleifend magna. Nam metus lacus, porttitor eu mauris a, blandit ultrices nibh.<\/p>\n<\/div>\n                            <\/div>\n                        \n                    <\/div>\n\n                \n            <\/div>\n        \n    <\/div>\n<\/section>\n\n<!-- Modal -->\n<div id=\"video-modal\" class=\"modal template-video\" data-modal=\"modal\" data-gtm-action=\"video_close\" data-gtm-container=\"video\">\n    <div class=\"modal__inner\">\n        <div class=\"modal__content\">\n            <div class=\"modal__body\">\n                <button type=\"button\" class=\"modal__close\" data-modal=\"close\" data-gtm-action=\"video_close\" data-gtm-container=\"video\">Cerrar\n                    <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"16px\" height=\"16px\" viewBox=\"0 0 22 22\" version=\"1.1\" alt=\"cerrar\" title=\"cerrar\" style=\"pointer-events: none;\">\n                        <g transform=\"translate(-750.000000, -1401.000000)\" fill=\"#fff\" fill-rule=\"nonzero\">\n                            <g id=\"Group\" transform=\"translate(749.000000, 1400.000000)\">\n                                <rect id=\"Rectangle\" transform=\"translate(11.989581, 11.990509) rotate(-135.605335) translate(-11.989581, -11.990509) \" x=\"-2.83410042\" y=\"10.7545291\" width=\"29.6473631\" height=\"2.47195968\" rx=\"1.23597984\"><\/rect>\n                                <rect id=\"Rectangle\" transform=\"translate(11.990970, 11.990492) rotate(134.419160) translate(-11.990970, -11.990492) \" x=\"-2.83271172\" y=\"10.7545628\" width=\"29.6473631\" height=\"2.47185909\" rx=\"1.23592955\"><\/rect>\n                            <\/g>\n                        <\/g>\n                    <\/svg>\n                <\/button>\n                <div class=\"video-frame modal__body__content\"><\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<section  class=\"written-testimony navy\">\n    <div class=\"written-testimony__container container\">\n\n                    <div class=\"written-testimony__head\">\n                <h2 class=\"written-testimony__title text-white\">Conoce la experiencia de nuestros egresados<\/h2>\n            <\/div>\n        \n                    <div class=\"written-testimony__content\">\n                <div class=\"written-testimony__slider\" data-slider=\"slider\" id=\"testimonios-slider\">\n\n                    \n\n                        <div class=\"written-testimony__item\" data-slider=\"item\">\n\n                                                            <div class=\"written-testimony__image\">\n                                    <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2026\/02\/gr-2025.jpg\" alt=\"gr-2025\" title=\"gr-2025\" loading=\"lazy\">\n                                <\/div>\n                            \n                            <blockquote class=\"written-testimony__blockquote darkgrey quotes-white\">\n\n                                                                    <div class=\"written-testimony__testimonial text-white\"><p>Lo m\u00e1s destacable de la titulaci\u00f3n, sin duda, son los docentes. Adem\u00e1s, la programaci\u00f3n est\u00e1 pensada de forma global para que todas las asignaturas se interconecten con un hilo conductor com\u00fan, lo que facilita mucho el progreso conjunto entre todas las asignaturas.<\/p>\n<\/div>\n                                \n                                                                    <footer class=\"written-testimony__footer\">\n\n                                                                                    <p class=\"written-testimony__name text-white\">Jose Manuel Sanz<\/p>\n                                        \n                                                                                    <p class=\"written-testimony__job text-white\">Estudiante del MBA en Administraci\u00f3n de Empresas<\/p>\n                                        \n                                    <\/footer>\n                                \n                            <\/blockquote>\n                        <\/div>\n                    \n\n                        <div class=\"written-testimony__item\" data-slider=\"item\">\n\n                            \n                            <blockquote class=\"written-testimony__blockquote darkgrey quotes-white\">\n\n                                                                    <div class=\"written-testimony__testimonial text-white\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam imperdiet dui ante, vel pharetra ligula rhoncus a. In dui magna, suscipit et lorem ac, maximus facilisis erat. Nullam imperdiet dui ante, vel pharetra ligula rhoncus a.<\/p>\n<\/div>\n                                \n                                                                    <footer class=\"written-testimony__footer\">\n\n                                                                                    <p class=\"written-testimony__name text-white\">Lorem ipsum dolor sit amet<\/p>\n                                        \n                                                                                    <p class=\"written-testimony__job text-white\">In dui magna<\/p>\n                                        \n                                    <\/footer>\n                                \n                            <\/blockquote>\n                        <\/div>\n                    \n                <\/div>\n\n                                    <div class=\"written-testimony__controls\">\n                        <button class=\"written-testimony__button written-testimony__button--prev controls-white\" data-slider=\"prev\" aria-label=\"Anterior\" data-gtm-container=\"carousel\" data-gtm-category=\"Conoce la experiencia de nuestros egresados\" data-gtm-action=\"backward\"><\/button>\n                        <button class=\"written-testimony__button written-testimony__button--next controls-white\" data-slider=\"next\" aria-label=\"Siguiente\" data-gtm-container=\"carousel\" data-gtm-category=\"Conoce la experiencia de nuestros egresados\" data-gtm-action=\"forward\"><\/button>\n                    <\/div>\n                \n            <\/div>\n        \n    <\/div>\n<\/section>\n\n\n<section  class=\"written-testimony grey\">\n    <div class=\"written-testimony__container container\">\n\n                    <div class=\"written-testimony__head\">\n                <h2 class=\"written-testimony__title text-navy\">Conoce la experiencia de nuestros egresados<\/h2>\n            <\/div>\n        \n                    <div class=\"written-testimony__content\">\n                <div class=\"written-testimony__slider\" data-slider=\"slider\" id=\"testimonios-slider\">\n\n                    \n\n                        <div class=\"written-testimony__item\" data-slider=\"item\">\n\n                            \n                            <blockquote class=\"written-testimony__blockquote white quotes-navy\">\n\n                                                                    <div class=\"written-testimony__testimonial text-navy\"><p>Lo m\u00e1s destacable de la titulaci\u00f3n, sin duda, son los docentes. Adem\u00e1s, la programaci\u00f3n est\u00e1 pensada de forma global para que todas las asignaturas se interconecten con un hilo conductor com\u00fan, lo que facilita mucho el progreso conjunto entre todas las asignaturas.<\/p>\n<\/div>\n                                \n                                                                    <footer class=\"written-testimony__footer\">\n\n                                                                                    <p class=\"written-testimony__name text-navy\">Jose Manuel Sanz<\/p>\n                                        \n                                                                                    <p class=\"written-testimony__job text-navy\">Estudiante del MBA en Administraci\u00f3n de Empresas<\/p>\n                                        \n                                    <\/footer>\n                                \n                            <\/blockquote>\n                        <\/div>\n                    \n\n                        <div class=\"written-testimony__item\" data-slider=\"item\">\n\n                            \n                            <blockquote class=\"written-testimony__blockquote white quotes-navy\">\n\n                                                                    <div class=\"written-testimony__testimonial text-navy\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam imperdiet dui ante, vel pharetra ligula rhoncus a. In dui magna, suscipit et lorem ac, maximus facilisis erat. Nullam imperdiet dui ante, vel pharetra ligula rhoncus a.<\/p>\n<\/div>\n                                \n                                                                    <footer class=\"written-testimony__footer\">\n\n                                                                                    <p class=\"written-testimony__name text-navy\">Lorem ipsum dolor sit amet<\/p>\n                                        \n                                                                                    <p class=\"written-testimony__job text-navy\">In dui magna<\/p>\n                                        \n                                    <\/footer>\n                                \n                            <\/blockquote>\n                        <\/div>\n                    \n                <\/div>\n\n                                    <div class=\"written-testimony__controls\">\n                        <button class=\"written-testimony__button written-testimony__button--prev controls-blue\" data-slider=\"prev\" aria-label=\"Anterior\" data-gtm-container=\"carousel\" data-gtm-category=\"Conoce la experiencia de nuestros egresados\" data-gtm-action=\"backward\"><\/button>\n                        <button class=\"written-testimony__button written-testimony__button--next controls-blue\" data-slider=\"next\" aria-label=\"Siguiente\" data-gtm-container=\"carousel\" data-gtm-category=\"Conoce la experiencia de nuestros egresados\" data-gtm-action=\"forward\"><\/button>\n                    <\/div>\n                \n            <\/div>\n        \n    <\/div>\n<\/section>\n\n\n<section  class=\"written-testimony white\">\n    <div class=\"written-testimony__container container\">\n\n                    <div class=\"written-testimony__head\">\n                <h2 class=\"written-testimony__title text-navy\">Conoce la experiencia de nuestros egresados<\/h2>\n            <\/div>\n        \n                    <div class=\"written-testimony__content\">\n                <div class=\"written-testimony__slider\" data-slider=\"slider\" id=\"testimonios-slider\">\n\n                    \n\n                        <div class=\"written-testimony__item\" data-slider=\"item\">\n\n                            \n                            <blockquote class=\"written-testimony__blockquote grey quotes-navy\">\n\n                                                                    <div class=\"written-testimony__testimonial text-navy\"><p>Lo m\u00e1s destacable de la titulaci\u00f3n, sin duda, son los docentes. Adem\u00e1s, la programaci\u00f3n est\u00e1 pensada de forma global para que todas las asignaturas se interconecten con un hilo conductor com\u00fan, lo que facilita mucho el progreso conjunto entre todas las asignaturas.<\/p>\n<\/div>\n                                \n                                                                    <footer class=\"written-testimony__footer\">\n\n                                                                                    <p class=\"written-testimony__name text-navy\">Jose Manuel Sanz<\/p>\n                                        \n                                                                                    <p class=\"written-testimony__job text-navy\">Estudiante del MBA en Administraci\u00f3n de Empresas<\/p>\n                                        \n                                    <\/footer>\n                                \n                            <\/blockquote>\n                        <\/div>\n                    \n\n                        <div class=\"written-testimony__item\" data-slider=\"item\">\n\n                            \n                            <blockquote class=\"written-testimony__blockquote grey quotes-navy\">\n\n                                                                    <div class=\"written-testimony__testimonial text-navy\"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam imperdiet dui ante, vel pharetra ligula rhoncus a. In dui magna, suscipit et lorem ac, maximus facilisis erat. Nullam imperdiet dui ante, vel pharetra ligula rhoncus a.<\/p>\n<\/div>\n                                \n                                                                    <footer class=\"written-testimony__footer\">\n\n                                                                                    <p class=\"written-testimony__name text-navy\">Lorem ipsum dolor sit amet<\/p>\n                                        \n                                                                                    <p class=\"written-testimony__job text-navy\">In dui magna<\/p>\n                                        \n                                    <\/footer>\n                                \n                            <\/blockquote>\n                        <\/div>\n                    \n                <\/div>\n\n                                    <div class=\"written-testimony__controls\">\n                        <button class=\"written-testimony__button written-testimony__button--prev controls-blue\" data-slider=\"prev\" aria-label=\"Anterior\" data-gtm-container=\"carousel\" data-gtm-category=\"Conoce la experiencia de nuestros egresados\" data-gtm-action=\"backward\"><\/button>\n                        <button class=\"written-testimony__button written-testimony__button--next controls-blue\" data-slider=\"next\" aria-label=\"Siguiente\" data-gtm-container=\"carousel\" data-gtm-category=\"Conoce la experiencia de nuestros egresados\" data-gtm-action=\"forward\"><\/button>\n                    <\/div>\n                \n            <\/div>\n        \n    <\/div>\n<\/section>\n\n\n<section  class=\"qs-stars navy\">\n    <div class=\"qs-stars__container container\">\n\n        <div class=\"qs-stars__content\">\n\n                            <h2 class=\"qs-stars__title text-white\">5 Estrellas en el Ranking QS<\/h2>\n            \n                            <div class=\"qs-stars__description wysiwyg text-white\"><p>MIU City University Miami cuenta con 4 estrellas en el ranking QS Stars, aval que reconoce su calidad acad\u00e9mica, su orientaci\u00f3n pr\u00e1ctica y su compromiso con la empleabilidadd.<\/p>\n<\/div>\n            \n                            <div class=\"qs-stars__stars qs-stars__stars--5\">\n                                            <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/plugins\/iter-bloques\/blocks\/qs-stars\/images\/star.svg\" alt=\"Star\" title=\"\">\n                                            <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/plugins\/iter-bloques\/blocks\/qs-stars\/images\/star.svg\" alt=\"Star\" title=\"\">\n                                            <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/plugins\/iter-bloques\/blocks\/qs-stars\/images\/star.svg\" alt=\"Star\" title=\"\">\n                                            <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/plugins\/iter-bloques\/blocks\/qs-stars\/images\/star.svg\" alt=\"Star\" title=\"\">\n                                            <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/plugins\/iter-bloques\/blocks\/qs-stars\/images\/star.svg\" alt=\"Star\" title=\"\">\n                                    <\/div>\n            \n        <\/div>\n\n                    <div class=\"qs-stars__side\">\n                <div class=\"qs-stars__side-image\">\n                    <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2025\/10\/image-15-1.svg\" alt=\",\" title=\"\">\n                <\/div>\n            <\/div>\n        \n    <\/div>\n<\/section>\n\n\n<section class=\"faq white\"  >\n  <div class=\"faq__container container\">\n\n    <div class=\"faq__introduction -width-75p-md -width-full\">\n\n              <h3 class=\"faq__title\">Preguntas frecuentes<\/h3>\n      \n      \n    <\/div>\n\n    \n      <div class=\"faq__list\" data-module=\"accordion\">\n\n                  \n            <details class=\"faq__item grey\" data-accordion=\"item\" open>\n\n              <summary class=\"faq__item__title\" data-accordion=\"button\">\n                <h3>\n                  <span class=\"accordion__action -icon-after icon--plus-slim\"\n                    data-gtm-container=\"Preguntas frecuentes\"\n                    data-gtm-category=\"\u00bfA qu\u00e9 hora tienes que estar?\u00a0\"\n                    data-gtm-action=\"accordion_close\">\n                    \u00bfA qu\u00e9 hora tienes que estar?\u00a0                  <\/span>\n                <\/h3>\n              <\/summary>\n\n              <div class=\"faq__body\" data-accordion=\"content\">\n                <div class=\"faq__inner\"><!-- wp:paragraph -->\n<p>-Los estudiantes deben presentarse <strong>1 hora y 30 minutos antes<\/strong> del inicio. Es decir, a la 1:30 pm.<\/p>\n<!-- \/wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>-El acompa\u00f1ante debe llegar con al menos <strong>30 minutos de antelaci\u00f3n<\/strong>.<\/p>\n<!-- \/wp:paragraph --><\/div>\n              <\/div>\n\n            <\/details>\n\n                            \n            <details class=\"faq__item grey\" data-accordion=\"item\" open>\n\n              <summary class=\"faq__item__title\" data-accordion=\"button\">\n                <h3>\n                  <span class=\"accordion__action -icon-after icon--plus-slim\"\n                    data-gtm-container=\"Preguntas frecuentes\"\n                    data-gtm-category=\"\u00bfC\u00f3mo y cu\u00e1ndo ser\u00e1 la ceremonia de graduaci\u00f3n de MIU City University Miami?\u00a0\"\n                    data-gtm-action=\"accordion_close\">\n                    \u00bfC\u00f3mo y cu\u00e1ndo ser\u00e1 la ceremonia de graduaci\u00f3n de MIU City University Miami?\u00a0                  <\/span>\n                <\/h3>\n              <\/summary>\n\n              <div class=\"faq__body\" data-accordion=\"content\">\n                <div class=\"faq__inner\"><!-- wp:paragraph -->\n<p>La ceremonia se llevar\u00e1 a cabo el viernes 6 de marzo de 2026 a las 15:00 h.<\/p>\n<!-- \/wp:paragraph --><\/div>\n              <\/div>\n\n            <\/details>\n\n                            \n            <details class=\"faq__item grey\" data-accordion=\"item\" open>\n\n              <summary class=\"faq__item__title\" data-accordion=\"button\">\n                <h3>\n                  <span class=\"accordion__action -icon-after icon--plus-slim\"\n                    data-gtm-container=\"Preguntas frecuentes\"\n                    data-gtm-category=\"\u00bfCu\u00e1ntos acompa\u00f1antes pueden asistir?\u00a0\"\n                    data-gtm-action=\"accordion_close\">\n                    \u00bfCu\u00e1ntos acompa\u00f1antes pueden asistir?\u00a0                  <\/span>\n                <\/h3>\n              <\/summary>\n\n              <div class=\"faq__body\" data-accordion=\"content\">\n                <div class=\"faq__inner\"><!-- wp:paragraph -->\n<p><strong>Cada egresado podr\u00e1 asistir con un acompa\u00f1ante como m\u00e1ximo.<\/strong><br>Por motivos de organizaci\u00f3n, el acompa\u00f1ante deber\u00e1 ser mayor de edad, ya que estar\u00e1 ubicado en una zona diferente a la de los egresados y la universidad no podr\u00e1 hacerse responsable de su cuidado.<\/p>\n<!-- \/wp:paragraph --><\/div>\n              <\/div>\n\n            <\/details>\n\n                  \n      <\/div>\n\n    \n  <\/div>\n\n<\/section>\n\n<!-- Schema FAQ -->\n\n  <script type=\"application\/ld+json\">\n    {\n    \"@context\": \"https:\/\/schema.org\",\n    \"@type\": \"FAQPage\",\n    \"mainEntity\": [\n        {\n            \"@type\": \"Question\",\n            \"name\": \"\u00bfA qu\u00e9 hora tienes que estar?\u00a0\",\n            \"acceptedAnswer\": {\n                \"@type\": \"Answer\",\n                \"text\": \"-Los estudiantes deben presentarse 1 hora y 30 minutos antes del inicio. Es decir, a la 1:30 pm.\\n\\n\\n\\n-El acompa\u00f1ante debe llegar con al menos 30 minutos de antelaci\u00f3n.\"\n            }\n        },\n        {\n            \"@type\": \"Question\",\n            \"name\": \"\u00bfC\u00f3mo y cu\u00e1ndo ser\u00e1 la ceremonia de graduaci\u00f3n de MIU City University Miami?\u00a0\",\n            \"acceptedAnswer\": {\n                \"@type\": \"Answer\",\n                \"text\": \"La ceremonia se llevar\u00e1 a cabo el viernes 6 de marzo de 2026 a las 15:00 h.\"\n            }\n        },\n        {\n            \"@type\": \"Question\",\n            \"name\": \"\u00bfCu\u00e1ntos acompa\u00f1antes pueden asistir?\u00a0\",\n            \"acceptedAnswer\": {\n                \"@type\": \"Answer\",\n                \"text\": \"Cada egresado podr\u00e1 asistir con un acompa\u00f1ante como m\u00e1ximo.Por motivos de organizaci\u00f3n, el acompa\u00f1ante deber\u00e1 ser mayor de edad, ya que estar\u00e1 ubicado en una zona diferente a la de los egresados y la universidad no podr\u00e1 hacerse responsable de su cuidado.\"\n            }\n        }\n    ]\n}  <\/script>\n\n\n\n\n<div id=\"formats\" class=\"format white\">\n    <div class=\"container\">\n        <div class=\"content\">\n\n            <div>\n                <h2 class=\"format__title\">Maecenas bibendum<\/h2>                <p>Suspendisse potenti. Nam quam augue, facilisis ac mauris sed, dignissim congue ex. Proin quis varius felis. Pellentesque placerat sollicitudin ante, sed sagittis tellus interdum ac. Maecenas aliquet tristique velit. Sed iaretramperdiet sit amet lorem a ph.<\/p>\n            <\/div>\n\n            <div class=\"list \">\n\n                                    \n                        <div class=\"card\">\n                            <h3>Suspendisse potenti<\/h3>\n\n                            \n                            \n                                                            \n                                    <section>\n                                        <div class=\"header\">\n\n                                                                                            <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2024\/11\/buildings-icon.svg\" alt=\",\" title=\"\">\n                                            \n                                            <h4>Maecenas aliquet tristique velit<\/h4>\n                                        <\/div>\n                                        <p>Suspendisse potenti. Nam quam augue, facilisis ac mauris sed, dignissim congue ex. Proin quis varius felis. Pellentesque placerat sollicitudin ante, sed sagittis tellus interdum ac. Maecenas aliquet tristique velit. Sed iaretramperdiet sit amet lorem a ph.<\/p>\n                                    <\/section>\n\n                                                            \n                                                            <a href=\"#enlace\" data-gtm-container=\"becas\" data-gtm-category=\"formato_Suspendisse potenti\" data-gtm-action=\"navigation\">\n                                    M\u00e1s informaci\u00f3n                                    <img decoding=\"async\" src=\"\/wp-content\/plugins\/iter-bloques\/icons\/arrow.svg\" alt=\"Arrow\" title=\"\">\n                                <\/a>\n                            \n                        <\/div>\n                    \n                        <div class=\"card\">\n                            <h3>Pellentesque placerat sollicitudin<\/h3>\n\n                            \n                            \n                                                            \n                                    <section>\n                                        <div class=\"header\">\n\n                                                                                            <img decoding=\"async\" src=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/2024\/11\/calendar-dots-icon.svg\" alt=\",\" title=\"\">\n                                            \n                                            <h4>Pellentesque placerat sollicitudin<\/h4>\n                                        <\/div>\n                                        <p>Suspendisse potenti. Nam quam augue, facilisis ac mauris sed, dignissim congue ex. Proin quis varius felis. Pellentesque placerat sollicitudin ante, sed sagittis tellus interdum ac. Maecenas aliquet tristique velit. Sed iaretramperdiet sit amet lorem a ph.<\/p>\n                                    <\/section>\n\n                                                            \n                                                            <a href=\"#enlace\" data-gtm-container=\"becas\" data-gtm-category=\"formato_Pellentesque placerat sollicitudin\" data-gtm-action=\"navigation\">\n                                    M\u00e1s informaci\u00f3n                                    <img decoding=\"async\" src=\"\/wp-content\/plugins\/iter-bloques\/icons\/arrow.svg\" alt=\"Arrow\" title=\"\">\n                                <\/a>\n                            \n                        <\/div>\n                    \n                        <div class=\"card\">\n                            <h3>Pellentesque placerat sollicitudin<\/h3>\n\n                                                            <div class=\"grid list__grid--mainsquares\">\n\n                                                                            <div class=\"feat\">\n                                            <span>Pellentesque <\/span>\n                                            <p>Placerat sollicitudin<\/p>\n                                        <\/div>\n                                    \n                                <\/div>\n                            \n                            \n                                                            \n                                    <section>\n                                        <div class=\"header\">\n\n                                            \n                                            <h4>Pellentesque placerat sollicitudin<\/h4>\n                                        <\/div>\n                                        <p>Suspendisse potenti. Nam quam augue, facilisis ac mauris sed, dignissim congue ex. Proin quis varius felis. Pellentesque placerat sollicitudin ante, sed sagittis tellus interdum ac. Maecenas aliquet tristique velit. Sed iaretramperdiet sit amet lorem a ph.<\/p>\n                                    <\/section>\n\n                                                            \n                            \n                        <\/div>\n                                    \n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<div class=\"form grey\" id=\"formulario\"\n  data-form-block\n  data-course-url=\"https:\/\/miuniversity.edu\/wp-content\/uploads\/course-combinations.json\"\n  data-course-version=\"20260922_18\"\n  data-program-selected=\"\"\n  data-programas=\"[]\"\n  data-programas-count=\"0\">\n  <div class=\"container\">\n    <div class=\"content\">\n      <h2 class=\"form__title\">Solicitar informaci\u00f3nnnn<\/h2>\n      <p><\/p>\n            <!-- form -->\n      \n<div class=\"wpcf7 no-js\" id=\"wpcf7-f399-o3\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"399\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/en\/wp-json\/wp\/v2\/pages\/6252#wpcf7-f399-o3\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"399\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.7\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f399-o3\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/fieldset>\n<div class=\"js-form\">\n \n   <div class=\"form__row\">\n     <div class=\"form__column\">\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"first_name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name\" value=\"\" type=\"text\" name=\"first_name\" \/><\/span>\n     <\/div>\n     <div class=\"form__column\">\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"last_name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Surname\" value=\"\" type=\"text\" name=\"last_name\" \/><\/span>\n     <\/div>\n   <\/div>\n \n  <div class=\"form__row\">\n    <div class=\"form__column\">\n      <span class=\"wpcf7-form-control-wrap\" data-name=\"email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Enter your email\" value=\"\" type=\"email\" name=\"email\" \/><\/span>\n    <\/div>\n    <div class='form__column form__telephone'>\n      <div class=\"form__column form__column-prefix\">\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"prefix\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required form__field form__prefix\" aria-required=\"true\" aria-invalid=\"false\" value=\"+34\" type=\"text\" name=\"prefix\" \/><\/span>\n      <\/div>\n      <div class=\"form__column\">\n         <span class=\"wpcf7-form-control-wrap\" data-name=\"phone\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-tel wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-tel form__field\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Enter your phone\" value=\"\" type=\"tel\" name=\"phone\" \/><\/span>\n      <\/div>\n    <\/div>\n  <\/div>\n \n   <div class=\"form__row\">\n     <div class=\"form__column form__select\">\n<select id=\"education_level-5\" name=\"education_level\" data-name=\"education_level\" required=\"\" class=\"form__field\"><option value=\"\">Level of studies completed *<\/option><option value=\"doctorado\">PhD\/Doctorate<\/option><option value=\"postgrado\">Master<\/option><option value=\"graduado\">Bachelor&#8217;s Degree<\/option><option value=\"bachiller\">High school<\/option><\/select>\n     <\/div>\n     <div class=\"form__column form__select\">\n       <select class=\"form__field form__country\" aria-invalid=\"false\" placeholder=\"Country of residence\" name=\"country_code\"><\/select>\n     <\/div>\n   <\/div>\n\n  <div class=\"form__row row-reverse\">\n    <div class='form__column form__radio'>\n      <p>Program language :<\/p>\n        <span class=\"wpcf7-form-control-wrap\" data-name=\"language\"><span class=\"wpcf7-form-control wpcf7-radio\"><span class=\"wpcf7-list-item first\"><label><input type=\"radio\" name=\"language\" value=\"es\" \/><span class=\"wpcf7-list-item-label\">es<\/span><\/label><\/span><span class=\"wpcf7-list-item last\"><label><input type=\"radio\" name=\"language\" value=\"en\" \/><span class=\"wpcf7-list-item-label\">en<\/span><\/label><\/span><\/span><\/span>\n    <\/div>\n\n    <div class='form__column form__radio'>\n       <p>Format :<\/p>\n       <span class=\"wpcf7-form-control-wrap\" data-name=\"modoDiFruizione\"><span class=\"wpcf7-form-control wpcf7-radio\"><span class=\"wpcf7-list-item first\"><input type=\"radio\" name=\"modoDiFruizione\" value=\"Online\" \/><span class=\"wpcf7-list-item-label\">Online<\/span><\/span><span class=\"wpcf7-list-item last\"><input type=\"radio\" name=\"modoDiFruizione\" value=\"Hybrid\" \/><span class=\"wpcf7-list-item-label\">Hybrid<\/span><\/span><\/span><\/span>\n    <\/div>\n  <\/div>\n\n<div class=\"form__row\"><div class=\"form__column form__select\"><select name=\"studio\" required=\"\" class=\"form__field\" aria-invalid=\"false\" aria-required=\"true\" data-dynamic=\"true\"><option value=\"\">Select a program *<\/option><option value=\"BSBA\">Bachelor of Science in Business Administration<\/option><option value=\"BSCS\">Bachelor of Science in Computer Science<\/option><\/select><\/div><div class=\"form__column form__select\"><select name=\"studio_child\" id=\"certificado_experto\" data-dynamic=\"true\" class=\"form__field\" aria-invalid=\"false\" aria-required=\"true\"><option value=\"\">Select a specialization course<\/option><\/select><\/div><\/div>\n \n<div class=\"form__rgpd\"><div class=\"form__row\"><div class=\"form__legal\"><p class=\"form__legal-p\">MIU CITY UNIVERSITY MIAMI, INC. (hereinafter, \u201cMIU\u201d), shall process the personal data you have provided so as to manage your request for information, claim doubt or suggestion regarding the products and\/or services .offered by MIU, by telephone, and to keep you up to date with our activities.We also inform you that we will profile your personal data with the aim of sending you information tailored to your interests. You may find additional information by clicking here.You may revoke your consent and exercise your rights under articles 15 to 22 of EU Regulation 2016\/679 by writing to 111 NE 1st Street, 6th Floor, Miami, FL 33132, or the following email address: ppd@miuniversity.edu, attaching a copy of your DNI or proof of identity. If you wish, you can read the additional, detailed information on data protection in the following link: https:\/\/miuniversity.edu\/privacy-policy\/ I want to receive information from MIU, and from the other Proeduca Group companies that operate in the education sector.<\/p><\/div><\/div>\n<div><label class=\"form__check\"><input type=\"checkbox\" class=\"form__check-input\" name=\"gdpr\" value=\"1\" aria-invalid=\"false\"><div class=\"form__checkbox\"><\/div><span class=\"form__checkbox-text\"><span>I want to receive information from MIU, and from the other <a href=\"https:\/\/miuniversity.edu\/en\/privacy-policy\/\" target=\"_blank\">Proeduca Group<\/a>, companies that operate in the education sector.<\/span><\/span><\/label><\/div>\n<\/div>\n \n   <div class=\"form__send\">\n     <div class=\"form__loader\"><\/div>\n     <input class=\"wpcf7-submit\" type=\"submit\" value=\"Request information\">\n   <\/div>\n\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"sw4yJvw8aOfd9d1hZop00ZH0EM9F2XBu\" type=\"hidden\" name=\"token\" \/>\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"web\" type=\"hidden\" name=\"request_from\" \/>\n<input class=\"wpcf7-form-control wpcf7-hidden\" value=\"EN\" type=\"hidden\" name=\"lang_lead\" \/>\n<input type=\"hidden\" name=\"utm_medium\" value=\"\" \/><input type=\"hidden\" name=\"utm_content\" value=\"\" \/><input type=\"hidden\" name=\"facebook_utm\" value=\"\" \/><input type=\"hidden\" name=\"source_url\" value=\"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/pages\/6252\" \/><input type=\"hidden\" name=\"utm_source\" value=\"\" \/> <input type=\"hidden\" name=\"utm_campaign\" value=\"\" \/>\n <span id=\"wpcf7-6ab2cd52c96f8-wrapper\" class=\"wpcf7-form-control-wrap cf7apps-honeypot-wrap honeypot-470-wrap\" data-cf7apps-honeypot=\"honeypot-470\" style=\"position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;\"><input type=\"hidden\" name=\"honeypot-470-random-hash\" value=\"20260922\"><input type=\"hidden\" name=\"honeypot-470-time-token\" value=\"MTc5MDEwMjg2Ng==.d1c8ba0fea996d7758856791d86a5abab1731b6840e3bfa8c893dc9bb5d78c35\"><label\n\t\t    for=\"wpcf7-6ab2cd52c96f8-field\"\n\t\t    class=\"hp-message\"\n        >Please leave this field empty.<\/label><input\n\t    id=\"wpcf7-6ab2cd52c96f8-field\"\n\t    \n\t    class=\"wpcf7-form-control wpcf7-text\"\n\t    type=\"text\"\n\t    name=\"epitorcjlxnw\"\n\t    value=\"\"\n\t    autocomplete=\"new-password\"\n\t    tabindex=\"1000\"\n\t    data-cf7apps-tabindex=\"1000\"\n    \/><\/span>\n<\/div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n    <\/div>\n    <div class=\"price\">\n              <div class=\"price__container\">\n          <p class=\"price__number\">14800\u20ac<\/p>\n          <p class=\"price__description\">1250\u20ac<\/p>\n        <\/div>\n          <\/div>\n  <\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":12,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_programas_asociados":[],"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-6252","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/pages\/6252","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/comments?post=6252"}],"version-history":[{"count":26,"href":"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/pages\/6252\/revisions"}],"predecessor-version":[{"id":38212,"href":"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/pages\/6252\/revisions\/38212"}],"wp:attachment":[{"href":"https:\/\/miuniversity.edu\/en\/wp-json\/wp\/v2\/media?parent=6252"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}