{"id":693,"date":"2024-07-09T22:18:40","date_gmt":"2024-07-09T21:18:40","guid":{"rendered":"http:\/\/localhost\/wordpress\/?page_id=693"},"modified":"2024-09-04T15:39:47","modified_gmt":"2024-09-04T14:39:47","slug":"projects","status":"publish","type":"page","link":"https:\/\/alex.jove-egypt.com\/index.php\/projects\/","title":{"rendered":"Projects"},"content":{"rendered":"<div class=\"\" style=\"\" >\n    \n    <section class=\"u-clearfix u-image u-section-2\" id=\"sec-7923\" data-image-width=\"150\" data-image-height=\"27\" style=\"background-image: url(&quot;https:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Egyptian-symbols-2.png&quot;);\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\">\n        <h1 class=\"u-align-center u-custom-font u-text u-text-1\" data-animation-name=\"tada\" data-animation-duration=\"1000\" data-animation-delay=\"0\" data-animation-direction=\"\">All projects<\/h1>\n      <\/div>\n    <\/section>\n    <section class=\"u-clearfix u-white u-section-3\" id=\"sec-631a\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\">\n        <div class=\"u-align-center u-clearfix u-custom-html u-expanded-width u-custom-html-1\">\n          <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/5.15.4\/css\/all.min.css\">\n          <div class=\"search-container\"><i class=\"fa-search fas search-icon\"><\/i>\n            <input type=\"text\" class=\"search-input\" placeholder=\"Search posts by title...\">\n          <\/div>\n          <script> document.addEventListener(\"DOMContentLoaded\", function() {\n  console.log('Search input:', document.querySelector(\".search-input\"));\n  document.querySelector(\".search-input\").addEventListener(\"keyup\", function() {\n    let input = document.querySelector(\".search-input\").value.toLowerCase();\n    \n    \/\/ Select all blog post containers\n    const posts = document.querySelectorAll(\".u-blog-post\");\n    console.log('Posts NodeList:', posts); \/\/ Log NodeList to debug\n    \/\/ Check if any posts are found\n    if (posts.length === 0) {\n      console.error('No posts found. Check the class names and HTML structure.');\n    }\n    \/\/ Loop through all posts\n    posts.forEach(post => {\n      \/\/ Select the title of the post\n      let titleElement = post.querySelector('a.u-post-header-link');\n      if (!titleElement) {\n        console.error('Title element not found in post:', post);\n      }\n      \n      let title = titleElement ? titleElement.innerText.toLowerCase() : '';\n      console.log('Title:', title); \/\/ Log title to debug\n      \/\/ Check if the title includes the search input\n      if (title.includes(input)) {\n        post.style.display = \"block\"; \/\/ Show post if title matches search\n      } else {\n        post.style.display = \"none\"; \/\/ Hide post if title does not match\n      }\n    });\n  });\n}); <\/script>\n        <\/div>\n        <div class=\"u-align-center u-clearfix u-custom-html u-expanded-width-lg u-expanded-width-xl u-expanded-width-xs u-custom-html-2\">\n          <div id=\"tags-container\">\n            <button id=\"show-all\">All<\/button><!-- Buttons will be dynamically generated here -->\n          <\/div>\n          <script> document.addEventListener(\"DOMContentLoaded\", function() {\n    \/\/ Array of tags to dynamically create buttons\n    const tags = [\n        \"Social Entrepreneurship\",\n        \"Social Innovation\",\n        \"Social Inclusion\",\n        \"Circular\/Green Economy\",\n        \"Intercultural Dialogue for peace\",\n        \"Youth Empowerment\",\n        \"Education for Development\",\n        \"Gender Equality\/Women Empowerment\",\n        \"Digital Transformation\/Literacy\",\n        \"Environmental issues\/Climate change\"\n    ];\n    \/\/ Reference to the tags container\n    const tagsContainer = document.getElementById('tags-container');\n    \/\/ Dynamically create filter buttons based on the tags array\n    tags.forEach(tag => {\n        const button = document.createElement('button');\n        button.className = 'filter-tag';\n        button.setAttribute('data-tag', tag);\n        button.textContent = tag;\n        tagsContainer.appendChild(button);\n    });\n    \/\/ Function to filter blog posts based on the selected tag\n    function filterPosts(tagToFilter) {\n        let blogPosts = document.querySelectorAll('.u-blog-post');\n        blogPosts.forEach(function(post) {\n            let tagLink = post.querySelector('.u-post-tags a[rel=\"tag\"]');\n            if (tagLink && tagLink.textContent.trim() === tagToFilter) {\n                post.style.display = \"block\"; \n            } else {\n                post.style.display = \"none\"; \n            }\n        });\n    }\n    \/\/ Function to show all blog posts\n    function showAllPosts() {\n        let blogPosts = document.querySelectorAll('.u-blog-post');\n        blogPosts.forEach(function(post) {\n            post.style.display = \"block\";\n        });\n    }\n    \/\/ Add event listeners to the dynamically created filter tags\n    let filterTags = document.querySelectorAll('#tags-container .filter-tag');\n    filterTags.forEach(function(tag) {\n        tag.addEventListener('click', function(event) {\n            event.preventDefault(); \n            filterTags.forEach(function(t) {\n                t.style.color = \"lightgrey\"; \n            });\n            tag.style.color = \"#d5355d\";\n            let tagText = tag.getAttribute('data-tag');\n            filterPosts(tagText);\n        });\n    });\n    \/\/ Add event listener for the \"Show All\" button\n    let showAllButton = document.getElementById('show-all');\n    if (showAllButton) {\n        showAllButton.addEventListener('click', function() {\n            filterTags.forEach(function(t) {\n                t.style.color = \"black\"; \n            });\n            showAllPosts();\n        });\n    }\n    \/\/ Optionally, show all posts initially\n    showAllPosts();\n}); <\/script>\n          <style> .filter-tag {\n  background-color: white;\n  color: black;\n  padding: 10px 8px;\n  border: none;\n  border-radius: 14px;\n  cursor: pointer;\n  text-decoration: none;\n  font-size: 18px;\n  transition: color 0.3s;\n}\n.filter-tag:hover {\n  color: grey;\n}\n#tags-container {\n  font-family: 'Orelega One', sans-serif;\n  font-weight: bold;\n}\n#show-all {\n  background-color: #d5355d;\n  color: white;\n  padding: 3px 18px;\n  border: none;\n  border-radius: 18px;\n  cursor: pointer;\n  font-weight: bold;\n} <\/style>\n        <\/div>\n      <\/div>\n    <\/section>\n    <section class=\"u-align-center u-clearfix u-container-align-center u-image u-image-contain u-section-4\" id=\"carousel_e24f\" data-image-width=\"1440\" data-image-height=\"850\" style=\"background-image: url(&quot;https:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/08\/Eye-3-1.png&quot;);\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\">\n        <div class=\"u-blog u-expanded-width u-pagination-center u-blog-1\">\n          <div class=\"u-list-control\"><\/div>\n          <div class=\"u-repeater u-repeater-1\">\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-1\" data-href=\"#sec-631a\" title=\"Block 2\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/enviro-4\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-10-174924-2-2.png\" data-image-width=\"457\" data-image-height=\"336\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-1\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/enviro-4\/\">Enviro 4<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-1\">\n                  <span class=\"u-meta-date u-meta-icon\">23 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/enviro-4\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-1\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/environmental-issues-climate-change\/\" rel=\"tag\">Environmental issues\/Climate change<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-2\" data-href=\"https:\/\/alex.jove-egypt.com\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/digital-4\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-171137-3.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-2\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/digital-4\/\">Digital 4<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-2\">\n                  <span class=\"u-meta-date u-meta-icon\">23 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/digital-4\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-2\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/digital-transformation-literacy\/\" rel=\"tag\">Digital Transformation\/Literacy<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/gender-4\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/woman4-1.jpg\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/gender-4\/\">Gender 4<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">23 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/gender-4\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-3\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/gender-equality-women-empowerment\/\" rel=\"tag\">Gender Equality\/Women Empowerment<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/education-4\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/vecteezy_egypt-scarab_36659120-3.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/education-4\/\">Education 4<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">23 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/education-4\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-4\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/education-for-development\/\" rel=\"tag\">Education for Development<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/youth-4\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-171119-3.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/youth-4\/\">Youth 4<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">23 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/youth-4\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-5\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/youth-empowerment\/\" rel=\"tag\">Youth Empowerment<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\" data-href=\"#\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/intercultural-4\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-03-114136-7-1-2-2-1-7.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/intercultural-4\/\">Intercultural 4<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">23 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/intercultural-4\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-6\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/intercultural-dialogue-for-peace\/\" rel=\"tag\">Intercultural Dialogue for peace<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-1\" data-href=\"#sec-631a\" title=\"Block 2\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/circular-4\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-10-174802-2-1.png\" data-image-width=\"457\" data-image-height=\"336\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-1\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/circular-4\/\">Circular 4<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-1\">\n                  <span class=\"u-meta-date u-meta-icon\">23 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/23\/circular-4\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-1\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/circular-green-economy\/\" rel=\"tag\">Circular\/Green Economy<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-2\" data-href=\"https:\/\/alex.jove-egypt.com\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/enviro-3\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/2099199-7-1-2-3-1-7.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-2\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/enviro-3\/\">Enviro 3<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-2\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/enviro-3\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-2\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/environmental-issues-climate-change\/\" rel=\"tag\">Environmental issues\/Climate change<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/enviro-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Eye-3-1-3.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/enviro-2\/\">Enviro 2<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/enviro-2\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-3\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/environmental-issues-climate-change\/\" rel=\"tag\">Environmental issues\/Climate change<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/enviro-1\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot2024-07-03114125-7-1-2-2-1-6.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/enviro-1\/\">Enviro 1<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/enviro-1\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-4\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/environmental-issues-climate-change\/\" rel=\"tag\">Environmental issues\/Climate change<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/digital-3\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-11-155425-2.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/digital-3\/\">Digital 3<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/digital-3\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-5\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/digital-transformation-literacy\/\" rel=\"tag\">Digital Transformation\/Literacy<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\" data-href=\"#\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/digital-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-171111-2.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/digital-2\/\">Digital 2<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/digital-2\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-6\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/digital-transformation-literacy\/\" rel=\"tag\">Digital Transformation\/Literacy<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-1\" data-href=\"#sec-631a\" title=\"Block 2\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/digital-1\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-171023-2.png\" data-image-width=\"457\" data-image-height=\"336\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-1\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/digital-1\/\">Digital 1<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-1\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/digital-1\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-1\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/digital-transformation-literacy\/\" rel=\"tag\">Digital Transformation\/Literacy<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-2\" data-href=\"https:\/\/alex.jove-egypt.com\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/gender-3\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-171211-3.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-2\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/gender-3\/\">Gender 3<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-2\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/gender-3\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-2\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/gender-equality-women-empowerment\/\" rel=\"tag\">Gender Equality\/Women Empowerment<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/gender-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-03-114136-7-1-2-2-1-6.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/gender-2\/\">Gender 2<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/gender-2\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-3\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/gender-equality-women-empowerment\/\" rel=\"tag\">Gender Equality\/Women Empowerment<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/gender-1\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-11-155425-2.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/gender-1\/\">Gender 1<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/gender-1\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-4\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/gender-equality-women-empowerment\/\" rel=\"tag\">Gender Equality\/Women Empowerment<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/education-3\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/2099199-7-1-2-3-1-7.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/education-3\/\">Education 3<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/education-3\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-5\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/education-for-development\/\" rel=\"tag\">Education for Development<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\" data-href=\"#\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/education-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-170940-3.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/education-2\/\">Education 2<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/education-2\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-6\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/education-for-development\/\" rel=\"tag\">Education for Development<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-1\" data-href=\"#sec-631a\" title=\"Block 2\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/education-1\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-171150-3.png\" data-image-width=\"457\" data-image-height=\"336\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-1\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/education-1\/\">Education 1<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-1\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/education-1\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-1\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/education-for-development\/\" rel=\"tag\">Education for Development<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-2\" data-href=\"https:\/\/alex.jove-egypt.com\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/youth-3\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-03-114136-7-1-2-2-1-8.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-2\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/youth-3\/\">Youth 3<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-2\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/youth-3\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-2\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/youth-empowerment\/\" rel=\"tag\">Youth Empowerment<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/youth-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/08\/Screenshot-2024-07-11-155425.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/youth-2\/\">Youth 2<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/youth-2\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-3\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/youth-empowerment\/\" rel=\"tag\">Youth Empowerment<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/youth-1\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-171150-3.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/youth-1\/\">Youth 1<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/youth-1\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-4\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/youth-empowerment\/\" rel=\"tag\">Youth Empowerment<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/intercultural-3\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-171204-3.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/intercultural-3\/\">Intercultural 3<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/intercultural-3\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-5\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/intercultural-dialogue-for-peace\/\" rel=\"tag\">Intercultural Dialogue for peace<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\" data-href=\"#\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/intercultural-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/New-mission-3.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/intercultural-2\/\">Intercultural 2<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/intercultural-2\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-6\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/intercultural-dialogue-for-peace\/\" rel=\"tag\">Intercultural Dialogue for peace<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-1\" data-href=\"#sec-631a\" title=\"Block 2\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/intercultural-1\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot2024-07-03114125-7-1-2-2-1-3.png\" data-image-width=\"457\" data-image-height=\"336\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-1\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/intercultural-1\/\">Intercultural 1<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-1\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/intercultural-1\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-1\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/intercultural-dialogue-for-peace\/\" rel=\"tag\">Intercultural Dialogue for peace<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-2\" data-href=\"https:\/\/alex.jove-egypt.com\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/circular-3\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/New-vision-3.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-2\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/circular-3\/\">Circular 3<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-2\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/circular-3\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-2\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/circular-green-economy\/\" rel=\"tag\">Circular\/Green Economy<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/circular-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-03-114136-7-1-2-2-1-5.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/circular-2\/\">Circular 2<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/circular-2\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-3\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/circular-green-economy\/\" rel=\"tag\">Circular\/Green Economy<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/circular-1\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/france-1-3.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/circular-1\/\">Circular 1<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/circular-1\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-4\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/circular-green-economy\/\" rel=\"tag\">Circular\/Green Economy<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-6\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/08\/Screenshot-2024-07-11-155456.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-6\/\">S Incl 6<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-6\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-5\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-inclusion\/\" rel=\"tag\">Social Inclusion<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\" data-href=\"#\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-5\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-11-155425-2.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-5\/\">S Incl 5<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-5\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-6\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-inclusion\/\" rel=\"tag\">Social Inclusion<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-1\" data-href=\"#sec-631a\" title=\"Block 2\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-4\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/2099199-7-1-2-3-1-6.png\" data-image-width=\"457\" data-image-height=\"336\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-1\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-4\/\">S Incl 4<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-1\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-4\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-1\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-inclusion\/\" rel=\"tag\">Social Inclusion<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-2\" data-href=\"https:\/\/alex.jove-egypt.com\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-3\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot2024-07-03114125-7-1-2-2-1-7.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-2\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-3\/\">S Incl 3<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-2\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-3\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-2\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-inclusion\/\" rel=\"tag\">Social Inclusion<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-03-114136-7-1-2-2-1-9.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-2\/\">S Incl 2<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-2\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-3\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-inclusion\/\" rel=\"tag\">Social Inclusion<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-1\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-02-171132-3.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-1\/\">S Incl 1<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/s-incl-1\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-4\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-inclusion\/\" rel=\"tag\">Social Inclusion<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-6\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/france-1-3.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-6\/\">SI 6<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-6\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-5\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-innovation\/\" rel=\"tag\">Social Innovation<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\" data-href=\"#\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-5\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/08\/Screenshot-2024-07-11-155425.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-5\/\">SI 5<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-5\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-6\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-innovation\/\" rel=\"tag\">Social Innovation<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-1\" data-href=\"#sec-631a\" title=\"Block 2\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-4\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot2024-07-03114125-7-1-2-2-1-6.png\" data-image-width=\"457\" data-image-height=\"336\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-1\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-4\/\">SI 4<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-1\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-4\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-1\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-innovation\/\" rel=\"tag\">Social Innovation<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-2\" data-href=\"https:\/\/alex.jove-egypt.com\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-3\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Eye-3-1-3.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-2\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-3\/\">SI 3<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-2\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-3\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-2\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-innovation\/\" rel=\"tag\">Social Innovation<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/2099199-7-1-2-3-1-6.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-2\/\">SI 2<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-2\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-3\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-innovation\/\" rel=\"tag\">Social Innovation<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-1\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/vecteezy_egypt-scarab_36659120-1-1.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-1\/\">SI 1<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">20 August 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/08\/20\/si-1\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-4\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-innovation\/\" rel=\"tag\">Social Innovation<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/revive-0-5\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"https:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-10-174947-2-1.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/revive-0-5\/\">REVIVE 0.5 social<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">15 July 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/revive-0-5\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-5\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-entrepreneurship\/\" rel=\"tag\">Social Entrepreneurship<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\" data-href=\"#\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/you-heal\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-10-174924-1-1.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/you-heal\/\">You Heal social<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">15 July 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/you-heal\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-6\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-entrepreneurship\/\" rel=\"tag\">Social Entrepreneurship<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-1\" data-href=\"#sec-631a\" title=\"Block 2\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-1\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/idea\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-1\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-10-174909-1-1.png\" data-image-width=\"457\" data-image-height=\"336\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-1\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/idea\/\">IDEA social<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-1\">\n                  <span class=\"u-meta-date u-meta-icon\">15 July 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/idea\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-1\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-entrepreneurship\/\" rel=\"tag\">Social Entrepreneurship<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-2\" data-href=\"https:\/\/alex.jove-egypt.com\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-2\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/sce-vet\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-2\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-10-174843-3-1-1.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-2\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/sce-vet\/\">SCE-VET social<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-2\">\n                  <span class=\"u-meta-date u-meta-icon\">15 July 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/sce-vet\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-2\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-entrepreneurship\/\" rel=\"tag\">Social Entrepreneurship<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/green-genesis-startup\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-10-174802-3-1-1.png\" data-image-width=\"150\" data-image-height=\"111\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/green-genesis-startup\/\">Green Genesis Startup social<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">15 July 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/15\/green-genesis-startup\/#respond\">Comments (0)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-3\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-entrepreneurship\/\" rel=\"tag\">Social Entrepreneurship<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n            <div class=\"u-align-center u-blog-post u-border-2 u-border-custom-color-17 u-container-align-center u-container-style u-custom-color-2 u-repeater-item u-repeater-item-3\">\n              <div class=\"u-container-layout u-similar-container u-container-layout-3\"><a class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/08\/hello-world-2\/\">\n                <img decoding=\"async\" alt=\"\" class=\"u-blog-control u-expanded-width u-hover-feature u-image u-image-default u-image-3\" src=\"http:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-10-174735-3-1-1.png\" data-image-width=\"150\" data-image-height=\"110\"><\/a>\n                <h2 class=\"u-align-center u-blog-control u-custom-font u-text u-text-3\">\n                  <a class=\"u-post-header-link\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/08\/hello-world-2\/\">WeNEETlabs social<\/a>\n                <\/h2>\n                <div class=\"u-blog-control u-metadata u-text-grey-30 u-metadata-3\">\n                  <span class=\"u-meta-date u-meta-icon\">8 July 2024<\/span>\n                  <span class=\"u-meta-comments u-meta-icon\"><a class=\"u-textlink\" href=\"https:\/\/alex.jove-egypt.com\/index.php\/2024\/07\/08\/hello-world-2\/#comments\">Comments (1)<\/a><\/span>\n                <\/div>\n                <div class=\"u-align-center u-blog-control u-custom-font u-post-tags u-post-tags-4\"><a href=\"https:\/\/alex.jove-egypt.com\/index.php\/tag\/social-entrepreneurship\/\" rel=\"tag\">Social Entrepreneurship<\/a>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n          <div class=\"u-list-control\"><\/div>\n        <\/div>\n        <p class=\"u-text u-text-body-alt-color u-text-default u-text-7\">Images from <a href=\"https:\/\/www.freepik.com\/free-photos-vectors\/background\" class=\"u-active-none u-border-1 u-border-hover-white u-border-no-left u-border-no-right u-border-no-top u-border-white u-bottom-left-radius-0 u-bottom-right-radius-0 u-btn u-button-link u-button-style u-hover-none u-none u-radius-0 u-text-body-alt-color u-top-left-radius-0 u-top-right-radius-0 u-btn-1\" target=\"_blank\">Freepik<\/a>\n        <\/p>\n      <\/div>\n      \n      \n      \n    <\/section>\n    <section class=\"u-clearfix u-custom-color-2 u-section-5\" id=\"sec-a72a\">\n      <div class=\"u-clearfix u-sheet u-sheet-1\">\n        <div class=\"data-layout-selected u-clearfix u-expanded-width u-layout-wrap u-layout-wrap-1\">\n          <div class=\"u-layout\">\n            <div class=\"u-layout-row\">\n              <div class=\"u-container-style u-layout-cell u-size-30 u-layout-cell-1\">\n                <div class=\"u-container-layout u-container-layout-1\">\n                  <h3 class=\"u-custom-font u-text u-text-default u-text-1\">Kee<span style=\"text-decoration: underline !important;\"><\/span>p in touch\n                  <\/h3>\n                  <p class=\"u-custom-font u-text u-text-2\"> 1 El-Shaikh Marouf, Marouf, Qasr El Nil, Cairo Governorate 4272132<\/p>\n                  <p class=\"u-align-left u-custom-font u-text u-text-3\"><span class=\"u-icon u-text-custom-color-11 u-icon-1\"><svg class=\"u-svg-content\" viewBox=\"0 0 54.757 54.757\" x=\"0px\" y=\"0px\" style=\"width: 1em; height: 1em;\"><path d=\"M40.94,5.617C37.318,1.995,32.502,0,27.38,0c-5.123,0-9.938,1.995-13.56,5.617c-6.703,6.702-7.536,19.312-1.804,26.952\n\tL27.38,54.757L42.721,32.6C48.476,24.929,47.643,12.319,40.94,5.617z M27.557,26c-3.859,0-7-3.141-7-7s3.141-7,7-7s7,3.141,7,7\n\tS31.416,26,27.557,26z\"><\/path><\/svg><\/span>&nbsp; <br>\n                    <br>\n                  <\/p>\n                  <a href=\"#\" class=\"u-btn u-btn-rectangle u-button-style u-custom-font u-text-custom-color-1 u-btn-1\"><span class=\"u-icon u-text-custom-color-11 u-icon-2\"><svg class=\"u-svg-content\" viewBox=\"0 0 405.333 405.333\" x=\"0px\" y=\"0px\" style=\"width: 1em; height: 1em;\"><path d=\"M373.333,266.88c-25.003,0-49.493-3.904-72.704-11.563c-11.328-3.904-24.192-0.896-31.637,6.699l-46.016,34.752    c-52.8-28.181-86.592-61.952-114.389-114.368l33.813-44.928c8.512-8.512,11.563-20.971,7.915-32.64    C142.592,81.472,138.667,56.96,138.667,32c0-17.643-14.357-32-32-32H32C14.357,0,0,14.357,0,32    c0,205.845,167.488,373.333,373.333,373.333c17.643,0,32-14.357,32-32V298.88C405.333,281.237,390.976,266.88,373.333,266.88z\"><\/path><\/svg><\/span>&nbsp; &nbsp;+201151335563\n                  <\/a>\n                  <p class=\"u-custom-font u-text u-text-4\"><span class=\"u-file-icon u-icon u-text-custom-color-11 u-icon-3\"><img decoding=\"async\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAAAXNSR0IArs4c6QAAB6xJREFUeF7tnf9vE3UYx99P2yEbRhORRMMXod2WoMRfALsRxMEPEg12hcgSRAK66O8QvsTIEtRogiHoH0BUSCDgBFxnNBoJC5itVX4xGONgLQi6qEEMCa5D1nvMVQpb6ea1u+t97j5Pf1v3uc\/ned7P63nfXXvXI8hLawVI6+wleQgAmkMgAAgAmiugefriAAKA5gponr44gACguQKapy8OIABoroDm6YsDCACaK6B5+uIAAoDmCmievjiAADC+Ar2Nq2bSSChGhJUEnsPAQwCmaq6Z6ukPE\/Abgy4x40sOjSSWnPvs1\/GCLukA30ZaZxvgnQC1AwiqnrHEN6ECBpiOUk1uR7S\/+0LxyLsASIVbX2DCPgC1IqyvFBgCuL0pnTg8OqsxAPRFWl8n4C1ALhTxVenvJMNE2Bkd6Hqn8NZtAJL18Q1gPuDTxCWtURAw84bmTOKg+VYegN5IrD4AOisHeNpwMhwMBB9bfP5YJg9AKhI7wqA2bdKXRE0FDjelu9ZRMryqARTsl\/2+dlSwAW6kVCS+ncG7tUtfEjYV2EbJSPwEwCtEDy0V+JqS4dYMCPO0TF\/zpAlIUzLSOiQf+mhLwpAAoG3t84lfp2QklgYorLcO2mY\/YB4DdILwvLYS6Jw4Uyf1ReKbCPyhzjromjsBG+n7x5+elv279mcA03UVQsu8CVdr67JzCh8Fb2PQu1oKoW\/S25rSXXvyAJxZ+GrNyF+\/nwYhqq8eWmXel519bdnynp6R218Hm5d\/BXKBU3JG4G8QzA9\/boZ42dL+xKCZ6ZgLQpL1a2aBc58CWOhvGbTN7owRzMVHXyN41yVhn9c\/c88DPMW8KmiLXA\/oG1ByAPZepX86nh344sborMa9LLyvoTVKBszTw\/m+kUHDRPKf9wf45SfOJ06VSn\/C+wJOzm2ZWhe6fxcztoobeI4eA+B9oSxvXjTYbX7fU\/Jl6cYQcQNvFf\/\/ut7SLqA4ZXEDT0BgqevHAHCypSVkng9aTU\/cwKpS1R1XTtcXIjNrb34d3Ecc2BjNHD9nNWRxA6tKVWVc2V1vRpUKr25kMvabADCAYWbsupyZsqcNneYpg6WXuIElmRwbVEnXM2BeB\/oKmPeCMK0AQCHIpJEzXlpysfsnq1GLG1hVytZxFXX9dw1rwoYx8gGDnipEUwyA+b64ga21sncyO7p+zEHgrV1AqSjFDeyt3WRns63rrQIgbjDZktm0vd1dXw4AcmxgUxErnMaRrq8EAHGDCitY6WZOdn2lAIgbVFrN8rZzvOsnC4C4QXkFtTy6Wl1vBwDiBpbLamlgVbveTgDEDSzVd\/xBbnS93QCIG1QGgWtd7xQA4gYWQXC7650EQNxgYgiU6PpqACBuUASCSl1fLQDEDf5TQLmurzYA2rqBql3vBgC6uYHSXe8mAL53Ay90vdsA+NUNPNP1qgDgGzfwWterBIDX3cCTXa8iAJ5zAy93vaoAeMUNPN\/1qgOgrBv4peu9AIBqbuCrrvcSAK67gR+73msAuOUGvu16rwJQsRukwrFFTHgPoKVFX9KN9+dpYt4SzSTOWByP4nvurG7n9rhSt4a5HZOV9cu+a8mcNDWv9UmDeGOAqIWBSNFCAwT0MAf2N2WOf2MliMKYUvfclbO9m2O9CkDFblAQ++Sja++tyw3PMG4Eebiu5sryHzuvl1sIr3a9l3cBpWpUkRuUW+zi8V7uer8BMGk3KAcGP3S9HwGo+EyhnOL7pev9DICZWxaMN7PGtfeXX+wZLqfA4401fwSjNnTfZjB1+O3xOl4+CJy4towLTHjtcnrKJ+X87M3oST\/G2uAj4ZttTGw+a3euHTCpNod\/Abij9C8AfWTkcget\/vRNX8Pq+QHDWM\/AJgAzVSuanfHoAMBovf4AkGTghwDhChh\/5v9JmG4wHiRgAYGbGTTDTpFVnks3AFSuhSuxCQCuyK7OogKAOrVwJRIBwBXZ1VlUAFCnFq5EIgC4Irs6iwoA6tTClUgEAFdkV2dRAUCdWrgSiQDgiuzqLCoAqFMLVyIRAFyRXZ1FBQB1auFKJAKAK7Krs6gAoE4tXIlEAHBFdnUWFQDUqYUrkQgArsiuzqImAOaDhWvVCUkiqaICWUpGYmmAwlVcVJZSR4EBSkbiJwBeoU5MEkm1FGDghPkY0e0M3l2tRWUdlRSgrXTrIcLmo2JJpdAkFscVYAPcmC96KhI7wqA2x5eUBZRRgAmHmge61ucB6I3E6gOgswCmKhOhBOKkAtlgILhg8fljmdu2n6yPbwDzASdXlbmVUICJ8WI003XIjGbMfj8ZiXcA\/IYcDyhRKCeCYAY6mtNdbxcmv+vALxWOr2PifQDqnIhA5nRNgSGA25vSicOjIyh55J+sXzMLPNIBUDuAoGshy8J2KGCA6SjV5HZE+7svFE844alfb+OqmcGRwHNMtBKgOQA\/LAeKdtTE0TnMH8UYZOBSgPmrmzVILO1PDI63opz7O1oL9ScXANSvkaMRCgCOyqv+5AKA+jVyNEIBwFF51Z9cAFC\/Ro5GKAA4Kq\/6kwsA6tfI0QgFAEflVX9yAUD9GjkaoQDgqLzqTy4AqF8jRyMUAByVV\/3JBQD1a+RohAKAo\/KqP7kAoH6NHI3wX32Y3A+gKECJAAAAAElFTkSuQmCC\" alt=\"\"><\/span>&nbsp; &nbsp;JovesolidesEgypt22@gmail.com\n                  <\/p>\n                  <div class=\"u-social-icons u-spacing-20 u-social-icons-1\">\n                    <a class=\"u-social-url\" title=\"facebook\" target=\"_blank\" href=\"https:\/\/facebook.com\/name\"><span class=\"u-icon u-social-facebook u-social-icon u-text-custom-color-11\"><svg class=\"u-svg-link\" preserveAspectRatio=\"xMidYMin slice\" viewBox=\"0 0 97.75 97.75\" style=\"\"><use xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"#svg-fc9a\"><\/use><\/svg><svg class=\"u-svg-content\" viewBox=\"0 0 97.75 97.75\" x=\"0px\" y=\"0px\" id=\"svg-fc9a\" style=\"enable-background:new 0 0 97.75 97.75;\"><g><path d=\"M48.875,0C21.882,0,0,21.882,0,48.875S21.882,97.75,48.875,97.75S97.75,75.868,97.75,48.875S75.868,0,48.875,0z    M67.521,24.89l-6.76,0.003c-5.301,0-6.326,2.519-6.326,6.215v8.15h12.641L67.07,52.023H54.436v32.758H41.251V52.023H30.229V39.258   h11.022v-9.414c0-10.925,6.675-16.875,16.42-16.875l9.851,0.015V24.89L67.521,24.89z\"><\/path>\n<\/g><\/svg><\/span>\n                    <\/a>\n                    <a class=\"u-social-url\" title=\"twitter\" target=\"_blank\" href=\"https:\/\/twitter.com\/name\"><span class=\"u-icon u-social-icon u-social-twitter u-text-custom-color-11 u-icon-5\"><svg class=\"u-svg-link\" preserveAspectRatio=\"xMidYMin slice\" viewBox=\"0 0 1200 1200\" style=\"\"><use xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"#svg-a813\"><\/use><\/svg><svg class=\"u-svg-content\" viewBox=\"0 0 1200 1200\" x=\"0px\" y=\"0px\" id=\"svg-a813\" style=\"enable-background:new 0 0 1200 1200;\"><g><polygon points=\"334.1,309.2 769.1,890.8 867.6,890.8 432.6,309.2 \t\"><\/polygon><path d=\"M600,18C278.6,18,18,278.6,18,600s260.6,582,582,582s582-260.6,582-582S921.4,18,600,18z M745.9,937.2l-198-264.8\n\t\tL302.7,937.2h-63l279.9-302.4l-278.2-372h214.4l182.4,243.8L864,262.8h63L666.4,544.3l293.8,392.9H745.9z\"><\/path>\n<\/g><\/svg><\/span>\n                    <\/a>\n                    <a class=\"u-social-url\" title=\"instagram\" target=\"_blank\" href=\"https:\/\/instagram.com\/name\"><span class=\"u-icon u-social-icon u-social-instagram u-text-custom-color-11\"><svg class=\"u-svg-link\" preserveAspectRatio=\"xMidYMin slice\" viewBox=\"0 0 512 512\" style=\"\"><use xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" xlink:href=\"#svg-4885\"><\/use><\/svg><svg class=\"u-svg-content\" viewBox=\"0 0 512 512\" id=\"svg-4885\"><path d=\"m305 256c0 27.0625-21.9375 49-49 49s-49-21.9375-49-49 21.9375-49 49-49 49 21.9375 49 49zm0 0\"><\/path><path d=\"m370.59375 169.304688c-2.355469-6.382813-6.113281-12.160157-10.996094-16.902344-4.742187-4.882813-10.515625-8.640625-16.902344-10.996094-5.179687-2.011719-12.960937-4.40625-27.292968-5.058594-15.503906-.707031-20.152344-.859375-59.402344-.859375-39.253906 0-43.902344.148438-59.402344.855469-14.332031.65625-22.117187 3.050781-27.292968 5.0625-6.386719 2.355469-12.164063 6.113281-16.902344 10.996094-4.882813 4.742187-8.640625 10.515625-11 16.902344-2.011719 5.179687-4.40625 12.964843-5.058594 27.296874-.707031 15.5-.859375 20.148438-.859375 59.402344 0 39.25.152344 43.898438.859375 59.402344.652344 14.332031 3.046875 22.113281 5.058594 27.292969 2.359375 6.386719 6.113281 12.160156 10.996094 16.902343 4.742187 4.882813 10.515624 8.640626 16.902343 10.996094 5.179688 2.015625 12.964844 4.410156 27.296875 5.0625 15.5.707032 20.144532.855469 59.398438.855469 39.257812 0 43.90625-.148437 59.402344-.855469 14.332031-.652344 22.117187-3.046875 27.296874-5.0625 12.820313-4.945312 22.953126-15.078125 27.898438-27.898437 2.011719-5.179688 4.40625-12.960938 5.0625-27.292969.707031-15.503906.855469-20.152344.855469-59.402344 0-39.253906-.148438-43.902344-.855469-59.402344-.652344-14.332031-3.046875-22.117187-5.0625-27.296874zm-114.59375 162.179687c-41.691406 0-75.488281-33.792969-75.488281-75.484375s33.796875-75.484375 75.488281-75.484375c41.6875 0 75.484375 33.792969 75.484375 75.484375s-33.796875 75.484375-75.484375 75.484375zm78.46875-136.3125c-9.742188 0-17.640625-7.898437-17.640625-17.640625s7.898437-17.640625 17.640625-17.640625 17.640625 7.898437 17.640625 17.640625c-.003906 9.742188-7.898437 17.640625-17.640625 17.640625zm0 0\"><\/path><path d=\"m256 0c-141.363281 0-256 114.636719-256 256s114.636719 256 256 256 256-114.636719 256-256-114.636719-256-256-256zm146.113281 316.605469c-.710937 15.648437-3.199219 26.332031-6.832031 35.683593-7.636719 19.746094-23.246094 35.355469-42.992188 42.992188-9.347656 3.632812-20.035156 6.117188-35.679687 6.832031-15.675781.714844-20.683594.886719-60.605469.886719-39.925781 0-44.929687-.171875-60.609375-.886719-15.644531-.714843-26.332031-3.199219-35.679687-6.832031-9.8125-3.691406-18.695313-9.476562-26.039063-16.957031-7.476562-7.339844-13.261719-16.226563-16.953125-26.035157-3.632812-9.347656-6.121094-20.035156-6.832031-35.679687-.722656-15.679687-.890625-20.6875-.890625-60.609375s.167969-44.929688.886719-60.605469c.710937-15.648437 3.195312-26.332031 6.828125-35.683593 3.691406-9.808594 9.480468-18.695313 16.960937-26.035157 7.339844-7.480469 16.226563-13.265625 26.035157-16.957031 9.351562-3.632812 20.035156-6.117188 35.683593-6.832031 15.675781-.714844 20.683594-.886719 60.605469-.886719s44.929688.171875 60.605469.890625c15.648437.710937 26.332031 3.195313 35.683593 6.824219 9.808594 3.691406 18.695313 9.480468 26.039063 16.960937 7.476563 7.34375 13.265625 16.226563 16.953125 26.035157 3.636719 9.351562 6.121094 20.035156 6.835938 35.683593.714843 15.675781.882812 20.683594.882812 60.605469s-.167969 44.929688-.886719 60.605469zm0 0\"><\/path><\/svg><\/span>\n                    <\/a>\n                    <a class=\"u-social-url\" target=\"_blank\" data-type=\"YouTube\" title=\"YouTube\" href=\"\"><span class=\"u-icon u-social-icon u-social-youtube u-text-custom-color-11 u-icon-7\"><svg class=\"u-svg-link\" preserveAspectRatio=\"xMidYMin slice\" viewBox=\"0 0 112 112\" style=\"\"><use xlink:href=\"#svg-3bb2\"><\/use><\/svg><svg class=\"u-svg-content\" viewBox=\"0 0 112 112\" x=\"0\" y=\"0\" id=\"svg-3bb2\"><circle fill=\"currentColor\" cx=\"56.1\" cy=\"56.1\" r=\"55\"><\/circle><path fill=\"#FFFFFF\" d=\"M74.9,33.3H37.3c-7.4,0-13.4,6-13.4,13.4v18.8c0,7.4,6,13.4,13.4,13.4h37.6c7.4,0,13.4-6,13.4-13.4V46.7 C88.3,39.3,82.3,33.3,74.9,33.3L74.9,33.3z M65.9,57l-17.6,8.4c-0.5,0.2-1-0.1-1-0.6V47.5c0-0.5,0.6-0.9,1-0.6l17.6,8.9 C66.4,56,66.4,56.8,65.9,57L65.9,57z\"><\/path><\/svg><\/span>\n                    <\/a>\n                  <\/div>\n                <\/div>\n              <\/div>\n              <div class=\"u-container-style u-layout-cell u-size-30 u-layout-cell-2\">\n                <div class=\"u-container-layout u-container-layout-2\">\n                  <h3 class=\"u-custom-font u-text u-text-default u-text-5\">News and articles<span style=\"text-decoration: underline !important;\"><\/span>\n                  <\/h3>\n                  <img decoding=\"async\" class=\"u-image u-image-default u-preserve-proportions u-image-1\" src=\"https:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot2024-07-03114125-7-1-2-2-1-3.png\" alt=\"\" data-image-width=\"121\" data-image-height=\"81\">\n                  <p class=\"u-custom-font u-text u-text-6\">Our eye on the EU<br>March 2024\n                  <\/p>\n                  <p class=\"u-custom-font u-text u-text-palette-5-dark-1 u-text-7\">2\/Dec\/20\u200b24<\/p>\n                  <p class=\"u-custom-font u-text u-text-8\">Inter Alia's youth&nbsp;<br>network<br>2024-2025\n                  <\/p>\n                  <img decoding=\"async\" class=\"u-image u-image-default u-preserve-proportions u-image-2\" src=\"https:\/\/alex.jove-egypt.com\/wp-content\/uploads\/2024\/07\/Screenshot-2024-07-03-114136-7-1-2-2-1-3.png\" alt=\"\" data-image-width=\"120\" data-image-height=\"91\">\n                  <p class=\"u-custom-font u-text u-text-palette-5-dark-1 u-text-9\">2\/Dec\/20\u200b24<\/p>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/section>\n    \n    \n    \n    \n    \n    \n    \n  \n<\/div>","protected":false},"excerpt":{"rendered":"<p>All projects All Enviro 4 23 August 2024 Comments (0) Environmental issues\/Climate change Digital 4 23 August 2024 Comments (0) Digital Transformation\/Literacy Gender 4 23 August 2024 Comments (0) Gender Equality\/Women Empowerment Education 4 23 August 2024 Comments (0) Education for Development Youth 4 23 August 2024 Comments (0) Youth Empowerment Intercultural 4 23 August <a href=\"https:\/\/alex.jove-egypt.com\/index.php\/projects\/\" class=\"more-link\">&#8230;<span class=\"screen-reader-text\">  Projects<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-693","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/alex.jove-egypt.com\/index.php\/wp-json\/wp\/v2\/pages\/693","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/alex.jove-egypt.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/alex.jove-egypt.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/alex.jove-egypt.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/alex.jove-egypt.com\/index.php\/wp-json\/wp\/v2\/comments?post=693"}],"version-history":[{"count":49,"href":"https:\/\/alex.jove-egypt.com\/index.php\/wp-json\/wp\/v2\/pages\/693\/revisions"}],"predecessor-version":[{"id":2323,"href":"https:\/\/alex.jove-egypt.com\/index.php\/wp-json\/wp\/v2\/pages\/693\/revisions\/2323"}],"wp:attachment":[{"href":"https:\/\/alex.jove-egypt.com\/index.php\/wp-json\/wp\/v2\/media?parent=693"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}