{"id":44,"date":"2025-11-04T13:31:11","date_gmt":"2025-11-04T13:31:11","guid":{"rendered":"https:\/\/aytognosia.gr\/contact\/"},"modified":"2026-01-17T10:49:37","modified_gmt":"2026-01-17T10:49:37","slug":"contact","status":"publish","type":"page","link":"https:\/\/aytognosia.gr\/en\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Animated Purple Background<\/title>\n    <style>\n        \/* Reset *\/\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        \/* Animated Background Container *\/\n        .animated-background {\n            position: fixed;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            z-index: -1;\n            overflow: hidden;\n            background: linear-gradient(135deg, #f5e6ff 0%, #faf5ff 50%, #f0e5fa 100%);\n        }\n\n        \/* Animated Gradient Overlay *\/\n        .gradient-overlay {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: linear-gradient(45deg, \n                rgba(128, 0, 128, 0.1), \n                rgba(217, 181, 229, 0.15), \n                rgba(128, 0, 128, 0.1),\n                rgba(217, 181, 229, 0.15));\n            background-size: 400% 400%;\n            animation: gradientShift 15s ease infinite;\n        }\n\n        @keyframes gradientShift {\n            0% { background-position: 0% 50%; }\n            50% { background-position: 100% 50%; }\n            100% { background-position: 0% 50%; }\n        }\n\n        \/* Floating Circles\/Particles *\/\n        .particle {\n            position: absolute;\n            border-radius: 50%;\n            opacity: 0.6;\n            animation: float 20s ease-in-out infinite;\n        }\n\n        .particle-1 {\n            width: 300px;\n            height: 300px;\n            background: radial-gradient(circle, rgba(128, 0, 128, 0.15) 0%, transparent 70%);\n            top: 10%;\n            left: 5%;\n            animation-duration: 15s;\n        }\n\n        .particle-2 {\n            width: 250px;\n            height: 250px;\n            background: radial-gradient(circle, rgba(217, 181, 229, 0.2) 0%, transparent 70%);\n            top: 60%;\n            right: 10%;\n            animation-duration: 18s;\n            animation-delay: 2s;\n        }\n\n        .particle-3 {\n            width: 200px;\n            height: 200px;\n            background: radial-gradient(circle, rgba(128, 0, 128, 0.12) 0%, transparent 70%);\n            bottom: 20%;\n            left: 15%;\n            animation-duration: 22s;\n            animation-delay: 4s;\n        }\n\n        .particle-4 {\n            width: 180px;\n            height: 180px;\n            background: radial-gradient(circle, rgba(217, 181, 229, 0.18) 0%, transparent 70%);\n            top: 40%;\n            right: 20%;\n            animation-duration: 16s;\n            animation-delay: 6s;\n        }\n\n        .particle-5 {\n            width: 150px;\n            height: 150px;\n            background: radial-gradient(circle, rgba(128, 0, 128, 0.1) 0%, transparent 70%);\n            bottom: 40%;\n            left: 40%;\n            animation-duration: 19s;\n            animation-delay: 3s;\n        }\n\n        @keyframes float {\n            0%, 100% {\n                transform: translate(0, 0) scale(1);\n            }\n            33% {\n                transform: translate(30px, -30px) scale(1.1);\n            }\n            66% {\n                transform: translate(-20px, 20px) scale(0.9);\n            }\n        }\n\n        \/* Geometric Shapes *\/\n        .shape {\n            position: absolute;\n            opacity: 0.08;\n        }\n\n        .shape-1 {\n            width: 120px;\n            height: 120px;\n            border: 4px solid #800080;\n            border-radius: 20px;\n            top: 15%;\n            right: 15%;\n            animation: rotate 20s linear infinite;\n        }\n\n        .shape-2 {\n            width: 100px;\n            height: 100px;\n            border: 4px solid #d9b5e5;\n            transform: rotate(45deg);\n            bottom: 25%;\n            left: 10%;\n            animation: rotate 15s linear infinite reverse;\n        }\n\n        .shape-3 {\n            width: 80px;\n            height: 80px;\n            background: linear-gradient(135deg, #800080, #d9b5e5);\n            border-radius: 50%;\n            top: 45%;\n            left: 8%;\n            animation: float 12s ease-in-out infinite;\n        }\n\n        .shape-4 {\n            width: 60px;\n            height: 60px;\n            border: 3px solid #800080;\n            bottom: 15%;\n            right: 30%;\n            animation: rotate 18s linear infinite;\n        }\n\n        @keyframes rotate {\n            from { transform: rotate(0deg); }\n            to { transform: rotate(360deg); }\n        }\n\n        \/* Grid Pattern *\/\n        .grid-pattern {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background-image: \n                linear-gradient(rgba(128, 0, 128, 0.02) 1px, transparent 1px),\n                linear-gradient(90deg, rgba(128, 0, 128, 0.02) 1px, transparent 1px);\n            background-size: 50px 50px;\n            animation: gridMove 20s linear infinite;\n        }\n\n        @keyframes gridMove {\n            0% { transform: translate(0, 0); }\n            100% { transform: translate(50px, 50px); }\n        }\n\n        \/* Wave Effect at Bottom *\/\n        .wave-container {\n            position: absolute;\n            bottom: 0;\n            left: 0;\n            width: 100%;\n            height: 200px;\n            overflow: hidden;\n        }\n\n        .wave {\n            position: absolute;\n            bottom: 0;\n            left: 0;\n            width: 200%;\n            height: 100%;\n            background: linear-gradient(to top, rgba(128, 0, 128, 0.08) 0%, transparent 100%);\n            animation: wave 10s linear infinite;\n        }\n\n        .wave:nth-child(2) {\n            animation-duration: 15s;\n            opacity: 0.5;\n            animation-delay: -5s;\n        }\n\n        @keyframes wave {\n            0% { transform: translateX(0) translateY(0); }\n            50% { transform: translateX(-25%) translateY(-10px); }\n            100% { transform: translateX(-50%) translateY(0); }\n        }\n\n        \/* Glowing Orbs *\/\n        .glow-orb {\n            position: absolute;\n            border-radius: 50%;\n            filter: blur(40px);\n            animation: pulse 8s ease-in-out infinite;\n        }\n\n        .glow-orb-1 {\n            width: 300px;\n            height: 300px;\n            background: rgba(128, 0, 128, 0.1);\n            top: 20%;\n            left: 10%;\n            animation-delay: 0s;\n        }\n\n        .glow-orb-2 {\n            width: 250px;\n            height: 250px;\n            background: rgba(217, 181, 229, 0.12);\n            bottom: 30%;\n            right: 15%;\n            animation-delay: 4s;\n        }\n\n        @keyframes pulse {\n            0%, 100% {\n                transform: scale(1);\n                opacity: 0.6;\n            }\n            50% {\n                transform: scale(1.2);\n                opacity: 0.8;\n            }\n        }\n\n        \/* Sparkles\/Stars *\/\n        .sparkle {\n            position: absolute;\n            width: 3px;\n            height: 3px;\n            background: #800080;\n            border-radius: 50%;\n            animation: sparkle 3s ease-in-out infinite;\n        }\n\n        @keyframes sparkle {\n            0%, 100% {\n                opacity: 0;\n                transform: scale(0);\n            }\n            50% {\n                opacity: 1;\n                transform: scale(1);\n            }\n        }\n\n        \/* Generate random sparkles *\/\n        .sparkle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }\n        .sparkle:nth-child(2) { top: 40%; left: 60%; animation-delay: 1s; }\n        .sparkle:nth-child(3) { top: 70%; left: 20%; animation-delay: 2s; }\n        .sparkle:nth-child(4) { top: 30%; left: 80%; animation-delay: 1.5s; }\n        .sparkle:nth-child(5) { top: 60%; left: 40%; animation-delay: 2.5s; }\n        .sparkle:nth-child(6) { top: 80%; left: 70%; animation-delay: 0.5s; }\n        .sparkle:nth-child(7) { top: 15%; left: 50%; animation-delay: 1.8s; }\n        .sparkle:nth-child(8) { top: 50%; left: 90%; animation-delay: 0.8s; }\n\n        \/* Responsive adjustments *\/\n        @media (max-width: 768px) {\n            .particle {\n                display: none;\n            }\n            .shape {\n                opacity: 0.04;\n            }\n            .glow-orb {\n                display: none;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n\n    <!-- Animated Background Container -->\n    <div class=\"animated-background\">\n        \n        <!-- Gradient Overlay -->\n        <div class=\"gradient-overlay\"><\/div>\n        \n        <!-- Grid Pattern -->\n        <div class=\"grid-pattern\"><\/div>\n        \n        <!-- Floating Particles -->\n        <div class=\"particle particle-1\"><\/div>\n        <div class=\"particle particle-2\"><\/div>\n        <div class=\"particle particle-3\"><\/div>\n        <div class=\"particle particle-4\"><\/div>\n        <div class=\"particle particle-5\"><\/div>\n        \n        <!-- Geometric Shapes -->\n        <div class=\"shape shape-1\"><\/div>\n        <div class=\"shape shape-2\"><\/div>\n        <div class=\"shape shape-3\"><\/div>\n        <div class=\"shape shape-4\"><\/div>\n        \n        <!-- Glowing Orbs -->\n        <div class=\"glow-orb glow-orb-1\"><\/div>\n        <div class=\"glow-orb glow-orb-2\"><\/div>\n        \n        <!-- Wave Effect -->\n        <div class=\"wave-container\">\n            <div class=\"wave\"><\/div>\n            <div class=\"wave\"><\/div>\n        <\/div>\n        \n        <!-- Sparkles -->\n        <div class=\"sparkle\"><\/div>\n        <div class=\"sparkle\"><\/div>\n        <div class=\"sparkle\"><\/div>\n        <div class=\"sparkle\"><\/div>\n        <div class=\"sparkle\"><\/div>\n        <div class=\"sparkle\"><\/div>\n        <div class=\"sparkle\"><\/div>\n        <div class=\"sparkle\"><\/div>\n        \n    <\/div>\n\n    <!-- \n    ====================================\n    WORDPRESS IMPLEMENTATION\n    ====================================\n    \n    METHOD 1: Custom HTML Block (Easiest)\n    --------------------------------------\n    1. Edit your page in WordPress\n    2. Add a \"Custom HTML\" block at the TOP of your page\n    3. Copy everything from <div class=\"animated-background\"> to <\/div> (including the style tag)\n    4. Paste it into the Custom HTML block\n    5. Add your contact form below it in a separate block\n    \n    METHOD 2: Theme Footer\/Header\n    --------------------------------------\n    1. Go to Appearance > Theme File Editor\n    2. Find footer.php or header.php\n    3. Paste the entire HTML structure right after <body> tag\n    4. Save the file\n    \n    METHOD 3: Page Template\n    --------------------------------------\n    1. Create a custom page template\n    2. Add this HTML at the beginning of the template\n    3. Assign the template to your contact page\n    \n    METHOD 4: Using a Plugin (Recommended)\n    --------------------------------------\n    1. Install \"Insert Headers and Footers\" plugin\n    2. Go to Settings > Insert Headers and Footers\n    3. Paste the HTML in \"Scripts in Body\" section\n    4. Save\n    \n    IMPORTANT NOTES:\n    - The background is set to position: fixed, so it stays behind all content\n    - It has z-index: -1, so it won't interfere with your form\n    - All animations are CSS-based, no JavaScript needed\n    - Responsive: some elements hide on mobile for better performance\n    \n    ====================================\n    -->\n\n<\/body>\n<\/html>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" style=\"font-size:41px\">Contact Us<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\" style=\"font-size:22px\">At your disposal for more information about the services provided. You can contact us through any of the following methods:<\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large is-style-default wp-duotone-rgb255255255-9d00a6-1\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/aytognosia.gr\/wp-content\/uploads\/2025\/11\/contact-me-aytognosia-1024x683.png\" alt=\"\" class=\"wp-image-1143\" style=\"aspect-ratio:3\/2;object-fit:cover\" srcset=\"https:\/\/aytognosia.gr\/wp-content\/uploads\/2025\/11\/contact-me-aytognosia-1024x683.png 1024w, https:\/\/aytognosia.gr\/wp-content\/uploads\/2025\/11\/contact-me-aytognosia-300x200.png 300w, https:\/\/aytognosia.gr\/wp-content\/uploads\/2025\/11\/contact-me-aytognosia-768x512.png 768w, https:\/\/aytognosia.gr\/wp-content\/uploads\/2025\/11\/contact-me-aytognosia.png 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">      \n\t\t\t<div data-aos= \"fade\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"uagb-icon-wrapper uagb-block-c2ddd268\"\n\t\t\tstyle=\"\" >\n\t\t\t\t\t\t\t\t\t<span class=\"uagb-svg-wrapper\" \n\t\t\t\t\t aria-label=\"location-dot\"\t\t\t\t\ttabindex=\"0\">\t\t\n\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" viewbox= \"0 0 384 512\" role=\"graphics-symbol\" aria-hidden=\"false\" aria-label=\"\"><path d=\"M168.3 499.2C116.1 435 0 279.4 0 192C0 85.96 85.96 0 192 0C298 0 384 85.96 384 192C384 279.4 267 435 215.7 499.2C203.4 514.5 180.6 514.5 168.3 499.2H168.3zM192 256C227.3 256 256 227.3 256 192C256 156.7 227.3 128 192 128C156.7 128 128 156.7 128 192C128 227.3 156.7 256 192 256z\"><\/path><\/svg>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\n\n<h3 class=\"wp-block-heading has-text-align-center\">Location<\/h3>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">Pipinou 30 &amp; Patision, Athens, Greece<\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">      \n\t\t\t<div data-aos= \"fade\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"uagb-icon-wrapper uagb-block-f9207625\"\n\t\t\tstyle=\"\" >\n\t\t\t\t\t\t\t\t\t<span class=\"uagb-svg-wrapper\" \n\t\t\t\t\t aria-label=\"phone\"\t\t\t\t\ttabindex=\"0\">\t\t\n\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" viewbox= \"0 0 512 512\" role=\"graphics-symbol\" aria-hidden=\"false\" aria-label=\"\"><path d=\"M511.2 387l-23.25 100.8c-3.266 14.25-15.79 24.22-30.46 24.22C205.2 512 0 306.8 0 54.5c0-14.66 9.969-27.2 24.22-30.45l100.8-23.25C139.7-2.602 154.7 5.018 160.8 18.92l46.52 108.5c5.438 12.78 1.77 27.67-8.98 36.45L144.5 207.1c33.98 69.22 90.26 125.5 159.5 159.5l44.08-53.8c8.688-10.78 23.69-14.51 36.47-8.975l108.5 46.51C506.1 357.2 514.6 372.4 511.2 387z\"><\/path><\/svg>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\n\n<h3 class=\"wp-block-heading has-text-align-center\">Contact Number<\/h3>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">6942557742<\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">      \n\t\t\t<div data-aos= \"fade\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"uagb-icon-wrapper uagb-block-aaa6e90a\"\n\t\t\tstyle=\"\" >\n\t\t\t\t\t\t\t\t\t<span class=\"uagb-svg-wrapper\" \n\t\t\t\t\t aria-label=\"circle-check\"\t\t\t\t\ttabindex=\"0\">\t\t\n\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" viewbox= \"0 0 512 512\" role=\"graphics-symbol\" aria-hidden=\"false\" aria-label=\"\"><path d=\"M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM371.8 211.8C382.7 200.9 382.7 183.1 371.8 172.2C360.9 161.3 343.1 161.3 332.2 172.2L224 280.4L179.8 236.2C168.9 225.3 151.1 225.3 140.2 236.2C129.3 247.1 129.3 264.9 140.2 275.8L204.2 339.8C215.1 350.7 232.9 350.7 243.8 339.8L371.8 211.8z\"><\/path><\/svg>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\n\n<h3 class=\"wp-block-heading has-text-align-center\">E-mail<\/h3>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">info@aytognosia.gr<\/p>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-6fb7c405 alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-container uagb-block-63c515fb\">      \n\t\t\t<div class=\"uagb-icon-wrapper uagb-block-9158015a\"\n\t\t\tstyle=\"\" >\n\t\t\t\t\t\t\t\t\t<span class=\"uagb-svg-wrapper\" \n\t\t\t\t\t aria-label=\"calendar-days\"\t\t\t\t\ttabindex=\"0\">\t\t\n\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" viewbox= \"0 0 448 512\" role=\"graphics-symbol\" aria-hidden=\"false\" aria-label=\"\"><path d=\"M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM64 304C64 312.8 71.16 320 80 320H112C120.8 320 128 312.8 128 304V272C128 263.2 120.8 256 112 256H80C71.16 256 64 263.2 64 272V304zM192 304C192 312.8 199.2 320 208 320H240C248.8 320 256 312.8 256 304V272C256 263.2 248.8 256 240 256H208C199.2 256 192 263.2 192 272V304zM336 256C327.2 256 320 263.2 320 272V304C320 312.8 327.2 320 336 320H368C376.8 320 384 312.8 384 304V272C384 263.2 376.8 256 368 256H336zM64 432C64 440.8 71.16 448 80 448H112C120.8 448 128 440.8 128 432V400C128 391.2 120.8 384 112 384H80C71.16 384 64 391.2 64 400V432zM208 384C199.2 384 192 391.2 192 400V432C192 440.8 199.2 448 208 448H240C248.8 448 256 440.8 256 432V400C256 391.2 248.8 384 240 384H208zM320 432C320 440.8 327.2 448 336 448H368C376.8 448 384 440.8 384 432V400C384 391.2 376.8 384 368 384H336C327.2 384 320 391.2 320 400V432z\"><\/path><\/svg>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\n\n<h3 class=\"wp-block-heading has-text-align-left\" style=\"padding-top:0;padding-bottom:var(--wp--preset--spacing--40)\">Availability<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li style=\"padding-top:var(--wp--preset--spacing--40);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\">Monday-Saturday<\/li>\n<\/ul>\n<\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-50f3d560\"><div class=\"uagb-container__video-wrap\"><\/div>      \n\t\t\t<div class=\"uagb-icon-wrapper uagb-block-0cbe3e9f\"\n\t\t\tstyle=\"\" >\n\t\t\t\t\t\t\t\t\t<span class=\"uagb-svg-wrapper\" \n\t\t\t\t\t aria-label=\"sun-plant-wilt\"\t\t\t\t\ttabindex=\"0\">\t\t\n\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" viewbox= \"0 0 640 512\" role=\"graphics-symbol\" aria-hidden=\"false\" aria-label=\"\"><path d=\"M192 160C192 177.7 177.7 192 160 192C142.3 192 128 177.7 128 160C128 142.3 142.3 128 160 128C177.7 128 192 142.3 192 160zM160 0C166.3 0 172 3.708 174.6 9.467L199.4 64.89L256.1 43.23C262 40.98 268.7 42.4 273.1 46.86C277.6 51.32 279 57.99 276.8 63.88L255.1 120.6L310.5 145.4C316.3 147.1 320 153.7 320 160C320 166.3 316.3 172 310.5 174.6L255.1 199.4L276.8 256.1C279 262 277.6 268.7 273.1 273.1C268.7 277.6 262 279 256.1 276.8L199.4 255.1L174.6 310.5C172 316.3 166.3 320 160 320C153.7 320 147.1 316.3 145.4 310.5L120.6 255.1L63.88 276.8C57.99 279 51.32 277.6 46.86 273.1C42.4 268.7 40.98 262 43.23 256.1L64.89 199.4L9.467 174.6C3.708 172 0 166.3 0 160C0 153.7 3.708 147.1 9.467 145.4L64.89 120.6L43.23 63.88C40.98 57.99 42.4 51.32 46.86 46.86C51.32 42.4 57.99 40.98 63.88 43.23L120.6 64.89L145.4 9.467C147.1 3.708 153.7 0 160 0V0zM160 224C195.3 224 224 195.3 224 160C224 124.7 195.3 96 160 96C124.7 96 96 124.7 96 160C96 195.3 124.7 224 160 224zM504 448H608C625.7 448 640 462.3 640 480C640 497.7 625.7 512 608 512H32C14.33 512 .0003 497.7 .0003 480C.0003 462.3 14.33 448 32 448H456V272C456 254.3 441.7 240 424 240C406.3 240 392 254.3 392 272V293.4C406.8 301.1 416 316.5 416 338C416 357.3 394.5 390.1 368 416C341.5 390.1 320 357.6 320 338C320 316.5 329.2 301.1 344 293.4V271.1C344 227.8 379.8 191.1 424 191.1C435.4 191.1 446.2 194.4 456 198.7V175.1C456 131.8 491.8 95.1 536 95.1C580.2 95.1 616 131.8 616 175.1V229.4C630.8 237.1 640 252.5 640 274C640 293.3 618.5 326.1 592 352C565.5 326.1 544 293.6 544 274C544 252.5 553.2 237.1 568 229.4V175.1C568 158.3 553.7 143.1 536 143.1C518.3 143.1 504 158.3 504 175.1V448z\"><\/path><\/svg>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\n\n<h3 class=\"wp-block-heading has-text-align-left\">Session format<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li style=\"margin-top:0;margin-bottom:0\">NDI Psychotherapy<\/li>\n\n\n\n<li style=\"padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)\">Hollistic Counselling<\/li>\n\n\n\n<li style=\"padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--20)\">Encounter Groups<\/li>\n\n\n\n<li>Energy Therapy<\/li>\n<\/ul>\n<\/div>\n<\/div><\/div>\n\n\n\n<h5 class=\"wp-block-heading has-text-align-center has-background uag-hide-desktop\" style=\"background-color:#ffd1f7;padding-top:var(--wp--preset--spacing--70);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--40);font-size:17px\"><strong>Sessions<\/strong> are held <strong>in person<\/strong> at our private office in <strong>Athens<\/strong>, <em>Pipinou 30 &amp; Patision Street<\/em> (ground floor) or <strong>online<\/strong> via a secure online platform. Each session lasts <em>60 minutes<\/em> and can be conducted in <em>greek<\/em> or <em>english<\/em>.<\/h5>\n\n\n\n<h4 class=\"wp-block-heading has-text-align-center has-background uag-hide-tab uag-hide-mob\" style=\"background-color:#ffd1f7;padding-top:var(--wp--preset--spacing--70);padding-right:10rem;padding-bottom:var(--wp--preset--spacing--70);padding-left:10rem;font-size:21px\"><strong>Sessions<\/strong> are held <strong>in person<\/strong> at our private office in <strong>Athens<\/strong>, <em>Pipinou 30 &amp; Patision Street<\/em> (ground floor) or <strong>online<\/strong> via a secure online platform. Each session lasts <em>60 minutes<\/em> and can be conducted in <em>greek<\/em> or <em>english<\/em>.<\/h4>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\" id=\"contact_form\" style=\"font-size:17px\">You can also use the form below<\/p>\n\n\n\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f685-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"685\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/en\/wp-json\/wp\/v2\/pages\/44#wpcf7-f685-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\" data-trp-original-action=\"\/en\/wp-json\/wp\/v2\/pages\/44#wpcf7-f685-o1\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"685\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.3\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f685-o1\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/fieldset>\n<div class=\"contact-form\">\n\t<h3>Contact\n\t<\/h3>\n\t<p><label>Name<\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" \/><\/span>\n\t<\/p>\n\t<p><label>Email *<\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" \/><\/span>\n\t<\/p>\n\t<p><label>Phone Number<\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-phone\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-phone\" \/><\/span>\n\t<\/p>\n\t<p><label>Prefered Session Format<\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"session-format\"><select class=\"wpcf7-form-control wpcf7-select\" aria-invalid=\"false\" name=\"session-format\"><option value=\"\u0394\u03b9\u03b1 \u0396\u03ce\u03c3\u03b7\u03c2\">In Person<\/option><option value=\"\u0397\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03ac\">Online<\/option><option value=\"Group\">Group<\/option><\/select><\/span>\n\t<\/p>\n\t<p><label>Message<\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-message\"><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" class=\"wpcf7-form-control wpcf7-textarea\" aria-invalid=\"false\" name=\"your-message\"><\/textarea><\/span>\n\t<\/p>\n\t<p><input class=\"wpcf7-form-control wpcf7-submit has-spinner\" type=\"submit\" value=\"Submit Message\" \/>\n\t<\/p>\n<\/div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<input type=\"hidden\" name=\"trp-form-language\" value=\"en\"\/><\/form>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Animated Purple Background \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03a3\u03c4\u03b7 \u03b4\u03b9\u03ac\u03b8\u03b5\u03c3\u03ae \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c0\u03b1\u03c1\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bc\u03ad\u03c3\u03c9 \u03bf\u03c0\u03bf\u03b9\u03bf\u03c5\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03c4\u03c1\u03cc\u03c0\u03bf\u03c5\u03c2 \u03a4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03a0\u03b9\u03c0\u03af\u03bd\u03bf\u03c5 30 &amp; \u03a0\u03b1\u03c4\u03b7\u03c3\u03af\u03c9\u03bd, \u0391\u03b8\u03ae\u03bd\u03b1, \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 \u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2 6942557742 E-mail info@aytognosia.gr \u0394\u03b9\u03b1\u03b8\u03b5\u03c3\u03b9\u03bc\u03cc\u03c4\u03b7\u03c4\u03b1 \u039c\u03bf\u03c1\u03c6\u03ae \u03c3\u03c5\u03bd\u03b5\u03b4\u03c1\u03af\u03b1\u03c2 \u039f\u03b9 \u03c3\u03c5\u03bd\u03b5\u03b4\u03c1\u03af\u03b5\u03c2 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b4\u03b9\u03b1 \u03b6\u03ce\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf \u03b9\u03b4\u03b9\u03c9\u03c4\u03b9\u03ba\u03cc \u03b3\u03c1\u03b1\u03c6\u03b5\u03af\u03bf \u03c3\u03c4\u03b7\u03bd \u0391\u03b8\u03ae\u03bd\u03b1, \u03bf\u03b4\u03cc\u03c2 \u03a0\u03b9\u03c0\u03af\u03bd\u03bf\u03c5 30 \u03ba\u03b1\u03b9 \u03a0\u03b1\u03c4\u03b7\u03c3\u03af\u03c9\u03bd (\u03b9\u03c3\u03cc\u03b3\u03b5\u03b9\u03bf\u03c2 [&hellip;]<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"zakra_sidebar_layout":"customizer","zakra_remove_content_margin":false,"zakra_sidebar":"customizer","zakra_transparent_header":"customizer","zakra_logo":0,"zakra_main_header_style":"default","zakra_menu_item_color":"","zakra_menu_item_hover_color":"","zakra_menu_item_active_color":"","zakra_menu_active_style":"","zakra_page_header":true,"_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-44","page","type-page","status-publish","hentry"],"acf":[],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"trp-custom-language-flag":false},"uagb_author_info":{"display_name":"admin","author_link":"https:\/\/aytognosia.gr\/en\/author\/admin\/"},"uagb_comment_info":0,"uagb_excerpt":"Animated Purple Background \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03a3\u03c4\u03b7 \u03b4\u03b9\u03ac\u03b8\u03b5\u03c3\u03ae \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c0\u03b1\u03c1\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2. \u039c\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bc\u03ad\u03c3\u03c9 \u03bf\u03c0\u03bf\u03b9\u03bf\u03c5\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03c4\u03c1\u03cc\u03c0\u03bf\u03c5\u03c2 \u03a4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03a0\u03b9\u03c0\u03af\u03bd\u03bf\u03c5 30 &amp; \u03a0\u03b1\u03c4\u03b7\u03c3\u03af\u03c9\u03bd, \u0391\u03b8\u03ae\u03bd\u03b1, \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 \u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2 6942557742 E-mail info@aytognosia.gr \u0394\u03b9\u03b1\u03b8\u03b5\u03c3\u03b9\u03bc\u03cc\u03c4\u03b7\u03c4\u03b1 \u039c\u03bf\u03c1\u03c6\u03ae \u03c3\u03c5\u03bd\u03b5\u03b4\u03c1\u03af\u03b1\u03c2 \u039f\u03b9 \u03c3\u03c5\u03bd\u03b5\u03b4\u03c1\u03af\u03b5\u03c2 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b4\u03b9\u03b1 \u03b6\u03ce\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf \u03b9\u03b4\u03b9\u03c9\u03c4\u03b9\u03ba\u03cc \u03b3\u03c1\u03b1\u03c6\u03b5\u03af\u03bf \u03c3\u03c4\u03b7\u03bd \u0391\u03b8\u03ae\u03bd\u03b1, \u03bf\u03b4\u03cc\u03c2 \u03a0\u03b9\u03c0\u03af\u03bd\u03bf\u03c5 30 \u03ba\u03b1\u03b9 \u03a0\u03b1\u03c4\u03b7\u03c3\u03af\u03c9\u03bd (\u03b9\u03c3\u03cc\u03b3\u03b5\u03b9\u03bf\u03c2&hellip;","_links":{"self":[{"href":"https:\/\/aytognosia.gr\/en\/wp-json\/wp\/v2\/pages\/44","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aytognosia.gr\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/aytognosia.gr\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/aytognosia.gr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aytognosia.gr\/en\/wp-json\/wp\/v2\/comments?post=44"}],"version-history":[{"count":80,"href":"https:\/\/aytognosia.gr\/en\/wp-json\/wp\/v2\/pages\/44\/revisions"}],"predecessor-version":[{"id":2197,"href":"https:\/\/aytognosia.gr\/en\/wp-json\/wp\/v2\/pages\/44\/revisions\/2197"}],"wp:attachment":[{"href":"https:\/\/aytognosia.gr\/en\/wp-json\/wp\/v2\/media?parent=44"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}