{"id":817,"date":"2025-01-28T14:51:40","date_gmt":"2025-01-28T14:51:40","guid":{"rendered":"https:\/\/allaboutquarks.de\/?page_id=817"},"modified":"2025-11-12T14:13:50","modified_gmt":"2025-11-12T14:13:50","slug":"home-new","status":"publish","type":"page","link":"https:\/\/allaboutquarks.de\/de\/","title":{"rendered":"Home-New"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"817\" class=\"elementor elementor-817\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b08caed e-con-full e-flex e-con e-parent\" data-id=\"b08caed\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9515dbe elementor-widget__width-inherit elementor-widget elementor-widget-html\" data-id=\"9515dbe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- Load Three.js -->\r\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/three@0.150.1\/build\/three.min.js\"><\/script>\r\n\r\n<style>\r\n  #stage {\r\n    position: absolute;\r\n    top: 0;\r\n    left: 0;\r\n    width: 100% !important;\r\n    height: 100vh !important;\r\n    z-index: 0 !important;\r\n    pointer-events: none;\r\n    overflow: hidden;\r\n  }\r\n<\/style>\r\n\r\n<div id=\"stage\"><\/div>\r\n\r\n<script>\r\n  let width = window.innerWidth;\r\n  let height = window.innerHeight;\r\n  let container = document.getElementById('stage');\r\n\r\n  let scene = new THREE.Scene();\r\n  let camera = new THREE.PerspectiveCamera(75, width \/ height, 1, 3000); \/\/75 old value\r\n  camera.position.z = 600;\r\n\r\n  let renderer = new THREE.WebGLRenderer({ alpha: true, antialias: true });\r\n  renderer.setSize(width, height);\r\n  container.appendChild(renderer.domElement);\r\n\r\n  let colors = ['#FF004B', '#6437E6', '#00E6F0'];\r\n  let particles = [];\r\n  let mouse = new THREE.Vector2();\r\n  let raycaster = new THREE.Raycaster();\r\n\r\n  function createPerfectPixelShape() {\r\n    let shape = new THREE.Shape();\r\n    shape.moveTo(-6, 9);\r\n    shape.lineTo(6, 9);\r\n    shape.lineTo(6, 6);\r\n    shape.lineTo(9, 6);\r\n    shape.lineTo(9, -6);\r\n    shape.lineTo(6, -6);\r\n    shape.lineTo(6, -9);\r\n    shape.lineTo(-6, -9);\r\n    shape.lineTo(-6, -6);\r\n    shape.lineTo(-9, -6);\r\n    shape.lineTo(-9, 6);\r\n    shape.lineTo(-6, 6);\r\n    shape.closePath();\r\n    return shape;\r\n  }\r\n\r\n  function createParticle() {\r\n    let shapeGeometry = new THREE.ShapeGeometry(createPerfectPixelShape());\r\n    shapeGeometry.scale(0.6, 0.6, 0.6);\r\n\r\n    let material = new THREE.MeshBasicMaterial({\r\n      color: colors[Math.floor(Math.random() * colors.length)],\r\n      side: THREE.DoubleSide\r\n    });\r\n\r\n    let particle = new THREE.Mesh(shapeGeometry, material);\r\n    particle.position.set(\r\n      (Math.random() - 0.5) * width,\r\n      (Math.random() - 0.5) * height,\r\n      0\r\n    );\r\n\r\n    particle.userData.velocity = new THREE.Vector3(\r\n      (Math.random() - 0.5) * 0.2,\r\n      (Math.random() - 0.5) * 0.2,\r\n      0\r\n    );\r\n\r\n    particle.userData.originalColor = particle.material.color.getHex();\r\n    scene.add(particle);\r\n    particles.push(particle);\r\n  }\r\n\r\n  for (let i = 0; i < 150; i++) {\r\n    createParticle();\r\n  }\r\n\r\n  function animate() {\r\n    requestAnimationFrame(animate);\r\n\r\n    particles.forEach(p => {\r\n      p.position.x += p.userData.velocity.x;\r\n      p.position.y += p.userData.velocity.y;\r\n\r\n      if (p.position.x > width \/ 2 || p.position.x < -width \/ 2) {\r\n        p.userData.velocity.x *= -1;\r\n      }\r\n\r\n      if (p.position.y > height \/ 2 || p.position.y < -height \/ 2) {\r\n        p.userData.velocity.y *= -1;\r\n      }\r\n    });\r\n\r\n    raycaster.setFromCamera(mouse, camera);\r\n    let intersects = raycaster.intersectObjects(particles);\r\n\r\n    particles.forEach(p => p.material.color.setHex(p.userData.originalColor));\r\n\r\n    if (intersects.length > 0) {\r\n      let object = intersects[0].object;\r\n      object.userData.hoverColor = object.userData.hoverColor || Math.random() * 0xffffff;\r\n      object.material.color.setHex(object.userData.hoverColor);\r\n    }\r\n\r\n    renderer.render(scene, camera);\r\n  }\r\n\r\n  function onMouseMove(event) {\r\n    mouse.x = (event.clientX \/ width) * 2 - 1;\r\n    mouse.y = -(event.clientY \/ height) * 2 + 1;\r\n  }\r\n\r\n  window.addEventListener('mousemove', onMouseMove);\r\n  animate();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-287110e elementor-widget__width-inherit elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-html\" data-id=\"287110e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t \r\n  body { margin: 0; }\r\n  #stage {\r\n    position: absolute;\r\n    top: 0;\r\n    left: 0;\r\n    width: 100%;\r\n    height: 100vh;\r\n    z-index: 1;\r\n    pointer-events: none;\r\n    overflow: hidden;\r\n  }\r\n\r\n\r\n<div id=\"stage\"><\/div>\r\n\r\n\r\n  let width = window.innerWidth;\r\n  height = window.innerHeight;\r\n  let container = document.getElementById('stage');\r\n  let scene = new THREE.Scene();\r\n  let camera = new THREE.PerspectiveCamera(75, width \/ height, 1, 3000);\r\n  camera.position.z = 600;\r\n  let renderer = new THREE.WebGLRenderer({ alpha: true, antialias: true });\r\n  renderer.setSize(width, height);\r\n  container.appendChild(renderer.domElement);\r\n\r\n  let colors = ['#FF004B', '#6437E6', '#00E6F0'];\r\n  let particles = [];\r\n  let mouse = new THREE.Vector2();\r\n  let raycaster = new THREE.Raycaster();\r\n\r\n  function createPerfectPixelShape() {\r\n    let shape = new THREE.Shape();\r\n    shape.moveTo(-6, 9);\r\n    shape.lineTo(6, 9);\r\n    shape.lineTo(6, 6);\r\n    shape.lineTo(9, 6);\r\n    shape.lineTo(9, -6);\r\n    shape.lineTo(6, -6);\r\n    shape.lineTo(6, -9);\r\n    shape.lineTo(-6, -9);\r\n    shape.lineTo(-6, -6);\r\n    shape.lineTo(-9, -6);\r\n    shape.lineTo(-9, 6);\r\n    shape.lineTo(-6, 6);\r\n    shape.closePath();\r\n    return shape;\r\n  }\r\n\r\n  function createParticle() {\r\n    let shapeGeometry = new THREE.ShapeGeometry(createPerfectPixelShape());\r\n    shapeGeometry.scale(0.6, 0.6, 0.6);\r\n    let material = new THREE.MeshBasicMaterial({\r\n      color: colors[Math.floor(Math.random() * colors.length)],\r\n      side: THREE.DoubleSide\r\n    });\r\n    let particle = new THREE.Mesh(shapeGeometry, material);\r\n    particle.position.set(\r\n      (Math.random() - 0.5) * width,\r\n      (Math.random() - 0.5) * height,\r\n      0\r\n    );\r\n    particle.userData.velocity = new THREE.Vector3(\r\n      (Math.random() - 0.5) * 0.2,\r\n      (Math.random() - 0.5) * 0.2,\r\n      0\r\n    );\r\n    particle.userData.originalColor = particle.material.color.getHex();\r\n    scene.add(particle);\r\n    particles.push(particle);\r\n  }\r\n\r\n  for (let i = 0; i  {\r\n      p.position.x += p.userData.velocity.x;\r\n      p.position.y += p.userData.velocity.y;\r\n\r\n      if (\r\n        p.position.x &gt; width \/ 2 || p.position.x  height \/ 2 || p.position.y  {\r\n        if (p !== other) {\r\n          let distance = p.position.distanceTo(other.position);\r\n          if (distance  p.material.color.setHex(p.userData.originalColor));\r\n    if (intersects.length &gt; 0) {\r\n      let object = intersects[0].object;\r\n      object.userData.hoverColor = object.userData.hoverColor || Math.random() * 0xffffff;\r\n      object.material.color.setHex(object.userData.hoverColor);\r\n    }\r\n\r\n    renderer.render(scene, camera);\r\n  }\r\n\r\n  function onMouseMove(event) {\r\n    mouse.x = (event.clientX \/ window.innerWidth) * 2 - 1;\r\n    mouse.y = -(event.clientY \/ window.innerHeight) * 2 + 1;\r\n  }\r\n\r\n  window.addEventListener('mousemove', onMouseMove);\r\n  animate();\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cee6d6a smart-slider-container e-flex e-con-boxed e-con e-parent\" data-id=\"cee6d6a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0525935 elementor-widget__width-inherit elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-shortcode\" data-id=\"0525935\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-81736a7 e-grid e-con-boxed e-con e-parent\" data-id=\"81736a7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8946d58 elementor-widget elementor-widget-heading\" data-id=\"8946d58\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">QUARKS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7f84802 elementor-widget elementor-widget-text-editor\" data-id=\"7f84802\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>The Project<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6102bd7 elementor-widget elementor-widget-text-editor\" data-id=\"6102bd7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>The QUARKS project is a groundbreaking initiative dedicated to o<span dir=\"ltr\" role=\"presentation\">ptimi<\/span><span dir=\"ltr\" role=\"presentation\">zing<\/span> the tangibility and accessibility of quantum technologies, while offering research, industry, society, and education new opportunities for synergy. Through a series of experiments and activities, such as quantum programming and the exploration of quantum superposition, QUARKS opens the door to a new future of communication networks that exceeds the limits of traditional ones.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-49ee2df elementor-align-center elementor-widget elementor-widget-button\" data-id=\"49ee2df\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#contacts\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Contact &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cbfa53c e-flex e-con-boxed e-con e-parent\" data-id=\"cbfa53c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-48884e6 elementor-widget-tablet__width-inherit elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"48884e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">NEWS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bfc1d9c elementor-widget elementor-widget-text-editor\" data-id=\"bfc1d9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Keep up to date with the discoveries and developments that are making quantum technologies ever more accessible. Here you will find the latest news from QUARKS and collaborative projects that are paving the way for a future of communication beyond the limits of conventional networks.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6972673 news_post elementor-grid-3 elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-widget elementor-widget-posts\" data-id=\"6972673\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;classic_masonry&quot;:&quot;yes&quot;,&quot;classic_columns&quot;:&quot;3&quot;,&quot;classic_columns_tablet&quot;:&quot;2&quot;,&quot;classic_columns_mobile&quot;:&quot;1&quot;,&quot;classic_row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:35,&quot;sizes&quot;:[]},&quot;classic_row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;classic_row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"posts.classic\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-posts-container elementor-posts elementor-posts--skin-classic elementor-grid\" role=\"list\">\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-8082 post type-post status-publish format-standard has-post-thumbnail hentry category-events tag-society\" role=\"listitem\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/allaboutquarks.de\/de\/ieee-6g-summit-dresden-2026-award\/\" tabindex=\"-1\" >\n\t\t\t<div class=\"elementor-post__thumbnail\"><img fetchpriority=\"high\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/DSC8631-300x200.jpg\" class=\"attachment-medium size-medium wp-image-8083\" alt=\"\" srcset=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/DSC8631-300x200.jpg 300w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/DSC8631-1024x682.jpg 1024w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/DSC8631-768x512.jpg 768w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/DSC8631-1536x1024.jpg 1536w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/DSC8631-18x12.jpg 18w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/DSC8631.jpg 2000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div>\n\t\t<\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h5 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/allaboutquarks.de\/de\/ieee-6g-summit-dresden-2026-award\/\" >\n\t\t\t\tLooking Back at the IEEE 6G Summit Dresden 2026\t\t\t<\/a>\n\t\t<\/h5>\n\t\t\t\t<div class=\"elementor-post__meta-data\">\n\t\t\t\t\t<span class=\"elementor-post-date\">\n\t\t\tMai 22, 2026\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\n\t\t<a class=\"elementor-post__read-more\" href=\"https:\/\/allaboutquarks.de\/de\/ieee-6g-summit-dresden-2026-award\/\" aria-label=\"Mehr \u00fcber Looking Back at the IEEE 6G Summit Dresden 2026\" tabindex=\"-1\" >\n\t\t\tmore &gt;\t\t<\/a>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-8075 post type-post status-publish format-standard has-post-thumbnail hentry category-events tag-society\" role=\"listitem\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/allaboutquarks.de\/de\/quantum-communication-startups-mentoring-innovation\/\" tabindex=\"-1\" >\n\t\t\t<div class=\"elementor-post__thumbnail\"><img decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1118-2-300x200.jpg\" class=\"attachment-medium size-medium wp-image-8076\" alt=\"\" srcset=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1118-2-300x200.jpg 300w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1118-2-1024x684.jpg 1024w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1118-2-768x513.jpg 768w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1118-2-1536x1026.jpg 1536w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1118-2-2048x1367.jpg 2048w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1118-2-18x12.jpg 18w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div>\n\t\t<\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h5 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/allaboutquarks.de\/de\/quantum-communication-startups-mentoring-innovation\/\" >\n\t\t\t\tFrom Quantum Theory to Startup Reality\t\t\t<\/a>\n\t\t<\/h5>\n\t\t\t\t<div class=\"elementor-post__meta-data\">\n\t\t\t\t\t<span class=\"elementor-post-date\">\n\t\t\tMai 8, 2026\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\n\t\t<a class=\"elementor-post__read-more\" href=\"https:\/\/allaboutquarks.de\/de\/quantum-communication-startups-mentoring-innovation\/\" aria-label=\"Mehr \u00fcber From Quantum Theory to Startup Reality\" tabindex=\"-1\" >\n\t\t\tmore &gt;\t\t<\/a>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-8070 post type-post status-publish format-standard has-post-thumbnail hentry category-events tag-society\" role=\"listitem\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/allaboutquarks.de\/de\/quantum-realities-coherence-screening\/\" tabindex=\"-1\" >\n\t\t\t<div class=\"elementor-post__thumbnail\"><img decoding=\"async\" width=\"300\" height=\"225\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1110-300x225.jpg\" class=\"attachment-medium size-medium wp-image-8071\" alt=\"\" srcset=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1110-300x225.jpg 300w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1110-1024x768.jpg 1024w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1110-768x576.jpg 768w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1110-1536x1152.jpg 1536w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1110-2048x1536.jpg 2048w, https:\/\/allaboutquarks.de\/wp-content\/uploads\/2026\/05\/IMG_1110-16x12.jpg 16w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div>\n\t\t<\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h5 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/allaboutquarks.de\/de\/quantum-realities-coherence-screening\/\" >\n\t\t\t\tQuantum Realities at Kino im Kasten\t\t\t<\/a>\n\t\t<\/h5>\n\t\t\t\t<div class=\"elementor-post__meta-data\">\n\t\t\t\t\t<span class=\"elementor-post-date\">\n\t\t\tMai 6, 2026\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\n\t\t<a class=\"elementor-post__read-more\" href=\"https:\/\/allaboutquarks.de\/de\/quantum-realities-coherence-screening\/\" aria-label=\"Mehr \u00fcber Quantum Realities at Kino im Kasten\" tabindex=\"-1\" >\n\t\t\tmore &gt;\t\t<\/a>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/article>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aa07a60 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"aa07a60\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/allaboutquarks.de\/news\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">News &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-29661bd e-flex e-con-boxed e-con e-parent\" data-id=\"29661bd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-83a2441 e-con-full e-flex e-con e-child\" data-id=\"83a2441\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8394b27 e-transform elementor-widget elementor-widget-image\" data-id=\"8394b27\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotate_3d&quot;:&quot;yes&quot;,&quot;_transform_rotateX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;19&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;26&quot;,&quot;sizes&quot;:[]},&quot;_transform_perspective_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;633&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateX_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateX_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateY_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateY_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_perspective_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_perspective_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg\" class=\"attachment-large size-large wp-image-1406\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f22a7c5 e-con-full e-flex e-con e-child\" data-id=\"f22a7c5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-31b9abb elementor-widget elementor-widget-heading\" data-id=\"31b9abb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Beat the Quantum Randomness<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-79b8563 elementor-widget elementor-widget-text-editor\" data-id=\"79b8563\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Human vs. Quantum Computer<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b0363b elementor-widget elementor-widget-text-editor\" data-id=\"6b0363b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>How random can you type a row of fifty 0 and 1? Are you more random than a Quantum Computer is? Give it a try and learn more about the way a Quantum Computer works!<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e694f5b elementor-widget elementor-widget-button\" data-id=\"e694f5b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;8.2&quot;,&quot;sizes&quot;:[]},&quot;motion_fx_translateX_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:&quot;0&quot;,&quot;end&quot;:&quot;50&quot;}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/allaboutquarks.de\/randomnessgame\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Play now &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-323c4d1 e-flex e-con-boxed e-con e-parent\" data-id=\"323c4d1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3b591a7 elementor-widget-tablet__width-inherit elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"3b591a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">EVENTS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4ba62a8 elementor-widget elementor-widget-text-editor\" data-id=\"4ba62a8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Visit QUARKS events and experience the future of quantum technologies up close. Our events offer a unique opportunity to drive innovation and create new synergies between science, business, and society.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-caf9685 elementor-grid-1 elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-widget elementor-widget-loop-grid\" data-id=\"caf9685\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;template_id&quot;:&quot;1247&quot;,&quot;columns&quot;:&quot;1&quot;,&quot;row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;50&quot;,&quot;sizes&quot;:[]},&quot;_skin&quot;:&quot;post&quot;,&quot;columns_tablet&quot;:&quot;2&quot;,&quot;columns_mobile&quot;:&quot;1&quot;,&quot;edit_handle_selector&quot;:&quot;[data-elementor-type=\\&quot;loop-item\\&quot;]&quot;,&quot;row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-grid.post\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-loop-container elementor-grid\" role=\"list\">\n\t\t<style id=\"loop-1247\">.elementor-1247 .elementor-element.elementor-element-c057fca{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-post-info .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a{color:var( --e-global-color-secondary );}.elementor-widget-post-info .elementor-icon-list-item{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-icon-list-item:not(:last-child):after{content:\"\";border-color:#ddd;}.elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child):after{border-top-style:solid;border-top-width:1px;}.elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:not(:last-child):after{border-left-style:solid;}.elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-inline-items .elementor-icon-list-item:not(:last-child):after{border-left-width:1px;}.elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-icon-list-icon{width:14px;}.elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-icon-list-icon i{font-size:14px;}.elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-icon-list-text, .elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-icon-list-text a{color:#FFFFFF;}.elementor-1247 .elementor-element.elementor-element-d7bc1fb .elementor-icon-list-item{font-family:\"Jura\", Sans-serif;font-size:50px;font-weight:600;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1247 .elementor-element.elementor-element-e353f12{text-align:start;}.elementor-1247 .elementor-element.elementor-element-e353f12 .elementor-heading-title{font-family:\"Jura\", Sans-serif;font-size:30px;font-weight:500;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1247 .elementor-element.elementor-element-2bb1e46{text-align:start;font-family:\"Jura\", Sans-serif;font-size:20px;font-weight:600;}.elementor-widget-theme-post-excerpt .elementor-widget-container{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-1247 .elementor-element.elementor-element-7350fd6 .elementor-widget-container{text-align:start;font-family:\"Jura\", Sans-serif;font-size:20px;font-weight:600;}.elementor-widget-theme-post-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-1247 .elementor-element.elementor-element-c7fd647{font-family:\"Jura\", Sans-serif;font-size:20px;font-weight:600;}.elementor-widget-button .elementor-button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-size:var( --e-global-typography-accent-font-size );font-weight:var( --e-global-typography-accent-font-weight );background-color:var( --e-global-color-accent );}.elementor-1247 .elementor-element.elementor-element-0e54f8b .elementor-button{font-family:\"Jura\", Sans-serif;font-size:20px;font-weight:700;line-height:23.66px;fill:#FFFFFF;color:#FFFFFF;border-style:none;border-radius:20px 20px 20px 20px;padding:7px 13px 9px 14px;}.elementor-1247 .elementor-element.elementor-element-0e54f8b .elementor-button:hover, .elementor-1247 .elementor-element.elementor-element-0e54f8b .elementor-button:focus{color:#FFFFFF;background-color:#4D2BBD;}.elementor-1247 .elementor-element.elementor-element-0e54f8b .elementor-button:hover svg, .elementor-1247 .elementor-element.elementor-element-0e54f8b .elementor-button:focus svg{fill:#FFFFFF;}@media(min-width:768px){.elementor-1247 .elementor-element.elementor-element-c057fca{--content-width:1140px;}}@media(max-width:1024px){.elementor-1247 .elementor-element.elementor-element-c057fca{--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-widget-post-info .elementor-icon-list-item{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-theme-post-title .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-theme-post-excerpt .elementor-widget-container{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-theme-post-content{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-button .elementor-button{font-size:var( --e-global-typography-accent-font-size );}}@media(max-width:767px){.elementor-widget-post-info .elementor-icon-list-item{font-size:var( --e-global-typography-text-font-size );}.elementor-1247 .elementor-element.elementor-element-d7bc1fb > .elementor-widget-container{margin:10px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-widget-theme-post-title .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-1247 .elementor-element.elementor-element-e353f12 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-theme-post-excerpt .elementor-widget-container{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-theme-post-content{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-button .elementor-button{font-size:var( --e-global-typography-accent-font-size );}}\/* Start custom CSS for theme-post-title, class: .elementor-element-e353f12 *\/.event_post .elementor-widget-container {\r\n    display: flex !important;\r\n    flex-direction: column;\r\n}\r\n\r\n\r\n\/* Order of the title *\/\r\n.event_post .event_title a{\r\n  display: inline !important; \/* Ensures proper alignment *\/\r\n  flex-wrap: wrap !important; \/* Allows words to wrap naturally *\/\r\n  justify-content: flex-start !important; \/* Align text to the left *\/\r\n    \r\n   width: fit-content !important; \/* Makes the background only as wide as the text *\/\r\n    \r\n    line-height: 1.5 !important; \/* Ensures no extra spacing *\/\r\n height: fit-content !important; \/* Ensures background matches text height *\/\r\n  padding-bottom: 5px !important; \/* Remove any extra margin *\/\r\n\r\n background: #6437E6 none repeat scroll 0 0 !important;\r\n\r\n    box-decoration-break: clone !important;\r\n    -webkit-box-decoration-break: clone !important;\r\n}\/* End custom CSS *\/\n\/* Start custom CSS for theme-post-content, class: .elementor-element-c7fd647 *\/\/* Ensure Event Posts Have Space at Bottom for Button *\/\r\n.event_text {\r\n    position: relative; \/* Ensures button and line are positioned properly *\/\r\n     padding-top: 0px;\r\n    padding-bottom: 10px; \/* Creates space for the button *\/\r\n}\r\n\r\n.event_text::after {\r\n    \r\n    content: \"\";\r\n    display: block;\r\n    width: 90%; \/* Reduced width so it doesn\u2019t extend full width *\/\r\n    height: 1px ;\r\n    background-color: #00E6F0;\r\n    position: absolute;\r\n    bottom: 0 !important;\r\n    left: 0 !important;\r\n    margin-right: 50px !important; \/* Adds a slight space before the button *\/\r\n    margin-bottom: 0px;\r\n}\/* End custom CSS *\/\n\/* Start custom CSS for button, class: .elementor-element-0e54f8b *\/.event_btn a {\r\n   position: absolute;\r\n   display: inline !important;\r\n    bottom: 0 !important; \/* Align exactly with the bottom line *\/\r\n    right: 0 !important; \/* Align to the right side *\/\r\n     line-height: 1;\r\n    text-decoration: none;\r\n    transition: background-color 0.3s ease;\r\n   \r\n}\/* End custom CSS *\/\n\/* Start custom CSS for container, class: .elementor-element-c057fca *\/.event_post{\n    position: relative; \/* Allows absolute positioning inside *\/\n    display: flex;\n    flex-direction: column;\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"1247\" class=\"elementor elementor-1247 e-loop-item e-loop-item-7218 post-7218 tribe_events type-tribe_events status-publish hentry tribe_events_cat-education cat_education\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c057fca event_post e-flex e-con-boxed e-con e-parent\" data-id=\"c057fca\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d7bc1fb elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"d7bc1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-340072e elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-custom\">\n\t\t\t\t\t\t\t\t\t\t06.06.2026\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e353f12 event_title elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"e353f12\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/allaboutquarks.de\/de\/event\/uni-tag-2026\/\">UNIDAY<\/a><\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2bb1e46 event_text elementor-widget elementor-widget-text-editor\" data-id=\"2bb1e46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tOn June 6, 2026, during UNIDAY, we will offer numerous opportunities for information on the TUD campus. You can learn more about our quantum communications.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c7fd647 event_text elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-theme-post-content\" data-id=\"c7fd647\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-content.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p>On June 6, 2026, during UNIDAY, we will offer numerous opportunities for information on the TUD campus. You can learn more about our quantum communications.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e54f8b event_btn elementor-widget elementor-widget-button\" data-id=\"0e54f8b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/allaboutquarks.de\/de\/event\/uni-tag-2026\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">more &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"1247\" class=\"elementor elementor-1247 e-loop-item e-loop-item-3734 post-3734 tribe_events type-tribe_events status-publish hentry tag-industry tribe_events_cat-industry cat_industry\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c057fca event_post e-flex e-con-boxed e-con e-parent\" data-id=\"c057fca\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d7bc1fb elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"d7bc1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-340072e elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-custom\">\n\t\t\t\t\t\t\t\t\t\t15.06. \u2013 17.06.2026\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e353f12 event_title elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"e353f12\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/allaboutquarks.de\/de\/event\/silicon-saxony-day\/\">Silicon Saxony Day<\/a><\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2bb1e46 event_text elementor-widget elementor-widget-text-editor\" data-id=\"2bb1e46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tJoin QUARKS at Silicon Saxony Dayfor an elite look at high-tech innovation. Catch Bassem\u2019s keynote, &quot;Entering 4th Dimension with Quantum Tech,&quot; to discover how quantum applications are redefini&#8230;\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7350fd6 event_text elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"7350fd6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-excerpt.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\tJoin QUARKS at Silicon Saxony Dayfor an elite look at high-tech innovation. Catch Bassem\u2019s keynote, \"Entering 4th Dimension with Quantum Tech,\" to discover how quantum applications are redefining the future of ICT and hardware.\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c7fd647 event_text elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-theme-post-content\" data-id=\"c7fd647\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-content.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p>Join QUARKS at the Silicon Saxony Day, one of Europe&#8217;s premier international high-tech networking events. This platform offers vital cross-industry insights into hardware, software, and connectivity, fostering open exchange between developers, producers, and users.<\/p>\n<p>We are excited to announce that our expert, Bassem, will deliver a keynote titled &#8220;Entering 4th Dimension with Quantum Tech.&#8221; His presentation will explore how quantum technologies and their real-world applications are pushing the boundaries of the ICT sector. This session is a must-attend for anyone looking to bridge the gap between cutting-edge research and industrial innovation. We look forward to seeing you in Dresden as we explore the future of technology together!<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e54f8b event_btn elementor-widget elementor-widget-button\" data-id=\"0e54f8b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/allaboutquarks.de\/de\/event\/silicon-saxony-day\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">more &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"1247\" class=\"elementor elementor-1247 e-loop-item e-loop-item-7220 post-7220 tribe_events type-tribe_events status-publish hentry tribe_events_cat-society cat_society\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c057fca event_post e-flex e-con-boxed e-con e-parent\" data-id=\"c057fca\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d7bc1fb elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"d7bc1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-340072e elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-custom\">\n\t\t\t\t\t\t\t\t\t\t26.06.2026\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e353f12 event_title elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"e353f12\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/allaboutquarks.de\/de\/event\/science-night-dresden-2026\/\">Science Night Dresden<\/a><\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2bb1e46 event_text elementor-widget elementor-widget-text-editor\" data-id=\"2bb1e46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tDuring Dresden&#039;s Long Night of Science, Dresden&#039;s universities, non-university research institutions, and science-related companies open their doors, laboratories, lecture halls, and archives to &#8230;\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c7fd647 event_text elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-theme-post-content\" data-id=\"c7fd647\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-content.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p>During Dresden&#8217;s Long Night of Science, Dresden&#8217;s universities, non-university research institutions, and science-related companies open their doors, laboratories, lecture halls, and archives to the public. Visitors can experience science and technology, research and innovation, art, and culture up close through a variety of lectures, experiments, guided tours, exhibitions, and films.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e54f8b event_btn elementor-widget elementor-widget-button\" data-id=\"0e54f8b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/allaboutquarks.de\/de\/event\/science-night-dresden-2026\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">more &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9bd27cb elementor-align-center elementor-widget elementor-widget-button\" data-id=\"9bd27cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/allaboutquarks.de\/calendar\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Events &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-166e57a e-grid e-con-boxed e-con e-parent\" data-id=\"166e57a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2431d55 elementor-widget elementor-widget-heading\" data-id=\"2431d55\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Why are quantum techno&shy;logies the future?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-01e6006 elementor-widget elementor-widget-text-editor\" data-id=\"01e6006\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Secure | Fast | Efficient<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-83b85d4 elementor-widget elementor-widget-text-editor\" data-id=\"83b85d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Quantum technologies represent a new resource to be wielded for social and economic progress, enhancing security, enabling unprecedented low latency in technological interactions, and lowering energy consumption. Imagine a future in which interactions with robots and participation in virtual worlds such as the Metaverse occur seamlessly and in an extremely secure manner. QUARKS is here to realise these innovations.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3eaf335 e-flex e-con-boxed e-con e-parent\" data-id=\"3eaf335\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d4cd612 e-con-full e-flex e-con e-child\" data-id=\"d4cd612\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6886210 elementor-widget elementor-widget-image\" data-id=\"6886210\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/elementor\/thumbs\/2024_04_17_TUD-CeTI-Gymnasium-014-scaled-r25zy410oyq99vy2nbxgixi4or6jzgmpty07hrasxs.jpg\" title=\"2024_04_17_TUD-CeTI-Gymnasium-014\" alt=\"2024_04_17_TUD-CeTI-Gymnasium-014\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6e308a7 e-con-full e-flex e-con e-child\" data-id=\"6e308a7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a15ec1f elementor-widget elementor-widget-heading\" data-id=\"a15ec1f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">SCHOOL<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ee3053a title_logo elementor-widget elementor-widget-heading\" data-id=\"ee3053a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"http:\/\/allaboutquarks.de\/research\">QUARKS combines research and teaching to give students an insight into the practical applications of quantum physics.<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-69da1fb logo_text elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-text-editor\" data-id=\"69da1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2d746a3 view_page_btn elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"2d746a3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"http:\/\/allaboutquarks.de\/schools\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">view page<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-021c4c9 logo_text2 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"021c4c9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5408a26 logo_btn2 elementor-align-right elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"5408a26\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"http:\/\/allaboutquarks.de\/schools\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\"><span>view page &gt;<\/span><\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ff9536f e-flex e-con-boxed e-con e-parent\" data-id=\"ff9536f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d82ffd4 e-con-full e-flex e-con e-child\" data-id=\"d82ffd4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-39fb358 elementor-widget elementor-widget-heading\" data-id=\"39fb358\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">INDUSTRY<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2dada91 title_logo elementor-widget elementor-widget-heading\" data-id=\"2dada91\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"http:\/\/allaboutquarks.de\/research\">QUARKS informs industry about quantum technology and promotes forward-looking collaborations in a tandem mentoring programm.<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b82f72a logo_text2 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"b82f72a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fe288ff logo_btn2 elementor-align-right elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"fe288ff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"http:\/\/allaboutquarks.de\/industry\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\"><span>view page &gt;<\/span><\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d7804eb e-con-full e-flex e-con e-child\" data-id=\"d7804eb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5889b97 elementor-widget elementor-widget-image\" data-id=\"5889b97\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/elementor\/thumbs\/SummerSchool2023-3-scaled-r22vrhmufw5rp09qd44qvk9gwj1asikxkmdbp9el8g.jpg\" title=\"SummerSchool2023-3\" alt=\"SummerSchool2023-3\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7de8a1f e-flex e-con-boxed e-con e-parent\" data-id=\"7de8a1f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0280863 e-con-full e-flex e-con e-child\" data-id=\"0280863\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7e118a0 elementor-widget elementor-widget-image\" data-id=\"7e118a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/elementor\/thumbs\/DSCF6878-r24lkl4wt65fa46xcxb7c2f8oztc2g2a5tw5hu8buo.jpg\" title=\"DSCF6878\" alt=\"DSCF6878\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6069443 e-con-full e-flex e-con e-child\" data-id=\"6069443\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-df47b7b elementor-widget elementor-widget-heading\" data-id=\"df47b7b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">RESEARCH<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9b74efc title_logo elementor-widget elementor-widget-heading\" data-id=\"9b74efc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"http:\/\/allaboutquarks.de\/research\">QUARKS analyzes the quantum advantage for 6G, aiming to improve performance, security, and scalability.<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-14a3c77 logo_text2 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"14a3c77\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c3e7893 logo_btn2 elementor-align-right elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"c3e7893\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"http:\/\/allaboutquarks.de\/research\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\"><span>view page &gt;<\/span><\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fc706fe e-flex e-con-boxed e-con e-parent\" data-id=\"fc706fe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-31cde95 e-con-full e-flex e-con e-child\" data-id=\"31cde95\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22a0851 elementor-widget elementor-widget-heading\" data-id=\"22a0851\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">TEAM<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-434ce71 title_logo elementor-widget elementor-widget-heading\" data-id=\"434ce71\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"http:\/\/allaboutquarks.de\/research\">QUARKS  is a cooperation between TU Munich and TU Dresden to bring the Research of Quantum Communication to Industry and Society.<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-128187a logo_text2 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"128187a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-45a5743 logo_btn2 elementor-align-right elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"45a5743\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"http:\/\/allaboutquarks.de\/team\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\"><span>view page &gt;<\/span><\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0bcf0dd e-con-full e-flex e-con e-child\" data-id=\"0bcf0dd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a629abe elementor-widget elementor-widget-image\" data-id=\"a629abe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/elementor\/thumbs\/20250515_6G-Summit-2_121_FGraetz_web-r9wte9be5z3n7flo9k0ezhfu8y5rj6q5l7sjlmstts.png\" title=\"20250515_6G Summit 2_121_FGraetz_web\" alt=\"20250515_6G Summit 2_121_FGraetz_web\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a4c7ef0 e-con-full e-flex e-con e-parent\" data-id=\"a4c7ef0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_scale_effect&quot;:&quot;yes&quot;,&quot;motion_fx_scale_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_scale_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;motion_fx_scale_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:20,&quot;end&quot;:80}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-58f8125 e-flex e-con-boxed e-con e-parent\" data-id=\"58f8125\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-7ecca89 e-con-full e-flex e-con e-child\" data-id=\"7ecca89\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0150f58 elementor-widget elementor-widget-heading\" data-id=\"0150f58\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">The QUARKS Vision<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3bb6fff e-flex e-con-boxed e-con e-parent\" data-id=\"3bb6fff\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-cf4db15 e-con-full e-flex e-con e-child\" data-id=\"cf4db15\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d086dd7 elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"d086dd7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_blue_screen.svg\" class=\"attachment-thumbnail size-thumbnail wp-image-1407\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c1f2c6a e-con-full e-flex e-con e-child\" data-id=\"c1f2c6a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-87e90c9 elementor-widget elementor-widget-text-editor\" data-id=\"87e90c9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tAn Innovative Approach for All\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e79463 elementor-widget elementor-widget-text-editor\" data-id=\"0e79463\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tQUARKS is not just aimed at industry experts\u2014we are committed to making quantum technologies understandable and accessible to a wide audience. Through innovation days at companies, educational models for schools, and participatory events in public institutions, we bring quantum communication networks to skilled workers, students, and everyday citizens.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c037479 e-flex e-con-boxed e-con e-parent\" data-id=\"c037479\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-86399b7 e-con-full e-flex e-con e-child\" data-id=\"86399b7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0185aa8 elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"0185aa8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_violett_screen.svg\" class=\"attachment-thumbnail size-thumbnail wp-image-1408\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-58c74bb e-con-full e-flex e-con e-child\" data-id=\"58c74bb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9f21698 elementor-widget elementor-widget-text-editor\" data-id=\"9f21698\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Where we operate<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bf8188f elementor-widget elementor-widget-text-editor\" data-id=\"bf8188f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tTU Dresden and TU Munich are the scientific hubs where QUARKS fosters the development of new talents, while simulatenously aiming to address the shortage of specialized professionals in the field of quantum communication networks. We offer training modules for skilled workers and students, combining theory and practice to tackle the challenges of the future.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-857f79d e-flex e-con-boxed e-con e-parent\" data-id=\"857f79d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3bb506d e-con-full e-flex e-con e-child\" data-id=\"3bb506d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-31ba8b1 elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"31ba8b1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg\" class=\"attachment-thumbnail size-thumbnail wp-image-1406\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-413cf89 e-con-full e-flex e-con e-child\" data-id=\"413cf89\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fa0c391 elementor-widget elementor-widget-text-editor\" data-id=\"fa0c391\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tJoin the Quantum Revolution\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c52d10f elementor-widget elementor-widget-text-editor\" data-id=\"c52d10f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\tBeing a part of QUARKS means actively contributing to the development of the communication networks of tomorrow. Together, we can break down barriers and discover how quantum technologies will transform our society for an actual sustainable growth. Do you want to be part of this revolution? Learn more about how quantum innovations can change the world and how you can get involved below.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>body { margin: 0; } #stage { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1; pointer-events: none; overflow: hidden; } let width = window.innerWidth; height =<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-817","page","type-page","status-publish","hentry","cat_society"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Home-New - QUARKS<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/allaboutquarks.de\/de\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home-New - QUARKS\" \/>\n<meta property=\"og:description\" content=\"body { margin: 0; } #stage { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1; pointer-events: none; overflow: hidden; } let width = window.innerWidth; height =\" \/>\n<meta property=\"og:url\" content=\"https:\/\/allaboutquarks.de\/de\/\" \/>\n<meta property=\"og:site_name\" content=\"QUARKS\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-12T14:13:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@allaboutquarks\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"8\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/allaboutquarks.de\/\",\"url\":\"https:\/\/allaboutquarks.de\/\",\"name\":\"Home-New - QUARKS\",\"isPartOf\":{\"@id\":\"https:\/\/allaboutquarks.de\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/allaboutquarks.de\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/allaboutquarks.de\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg\",\"datePublished\":\"2025-01-28T14:51:40+00:00\",\"dateModified\":\"2025-11-12T14:13:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/allaboutquarks.de\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/allaboutquarks.de\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/allaboutquarks.de\/#primaryimage\",\"url\":\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg\",\"contentUrl\":\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/allaboutquarks.de\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/allaboutquarks.de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home-New\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/allaboutquarks.de\/#website\",\"url\":\"https:\/\/allaboutquarks.de\/\",\"name\":\"All about QUARKS\",\"description\":\"QRK\",\"publisher\":{\"@id\":\"https:\/\/allaboutquarks.de\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/allaboutquarks.de\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/allaboutquarks.de\/#organization\",\"name\":\"QUARKS \u2013 Quantum Communication Networks\",\"alternateName\":\"QUARKS\",\"url\":\"https:\/\/allaboutquarks.de\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/allaboutquarks.de\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Logo-Subline_wht-bkl_screen.png\",\"contentUrl\":\"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Logo-Subline_wht-bkl_screen.png\",\"width\":9540,\"height\":2973,\"caption\":\"QUARKS \u2013 Quantum Communication Networks\"},\"image\":{\"@id\":\"https:\/\/allaboutquarks.de\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/allaboutquarks\",\"https:\/\/www.linkedin.com\/company\/allaboutquarks\",\"https:\/\/www.instagram.com\/allaboutquarks\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Home-New - QUARKS","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/allaboutquarks.de\/de\/","og_locale":"de_DE","og_type":"article","og_title":"Home-New - QUARKS","og_description":"body { margin: 0; } #stage { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1; pointer-events: none; overflow: hidden; } let width = window.innerWidth; height =","og_url":"https:\/\/allaboutquarks.de\/de\/","og_site_name":"QUARKS","article_modified_time":"2025-11-12T14:13:50+00:00","og_image":[{"url":"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@allaboutquarks","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"8\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/allaboutquarks.de\/","url":"https:\/\/allaboutquarks.de\/","name":"Home-New - QUARKS","isPartOf":{"@id":"https:\/\/allaboutquarks.de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/allaboutquarks.de\/#primaryimage"},"image":{"@id":"https:\/\/allaboutquarks.de\/#primaryimage"},"thumbnailUrl":"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg","datePublished":"2025-01-28T14:51:40+00:00","dateModified":"2025-11-12T14:13:50+00:00","breadcrumb":{"@id":"https:\/\/allaboutquarks.de\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/allaboutquarks.de\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/allaboutquarks.de\/#primaryimage","url":"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg","contentUrl":"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Pixel_red_screen.svg"},{"@type":"BreadcrumbList","@id":"https:\/\/allaboutquarks.de\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/allaboutquarks.de\/"},{"@type":"ListItem","position":2,"name":"Home-New"}]},{"@type":"WebSite","@id":"https:\/\/allaboutquarks.de\/#website","url":"https:\/\/allaboutquarks.de\/","name":"All about QUARKS","description":"QRK","publisher":{"@id":"https:\/\/allaboutquarks.de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/allaboutquarks.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/allaboutquarks.de\/#organization","name":"QUARKS \u2013 Quantum Communication Networks","alternateName":"QUARKS","url":"https:\/\/allaboutquarks.de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/allaboutquarks.de\/#\/schema\/logo\/image\/","url":"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Logo-Subline_wht-bkl_screen.png","contentUrl":"https:\/\/allaboutquarks.de\/wp-content\/uploads\/2025\/02\/20241218_QRK_Logo-Subline_wht-bkl_screen.png","width":9540,"height":2973,"caption":"QUARKS \u2013 Quantum Communication Networks"},"image":{"@id":"https:\/\/allaboutquarks.de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/allaboutquarks","https:\/\/www.linkedin.com\/company\/allaboutquarks","https:\/\/www.instagram.com\/allaboutquarks\/"]}]}},"_links":{"self":[{"href":"https:\/\/allaboutquarks.de\/de\/wp-json\/wp\/v2\/pages\/817","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/allaboutquarks.de\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/allaboutquarks.de\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/allaboutquarks.de\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/allaboutquarks.de\/de\/wp-json\/wp\/v2\/comments?post=817"}],"version-history":[{"count":0,"href":"https:\/\/allaboutquarks.de\/de\/wp-json\/wp\/v2\/pages\/817\/revisions"}],"wp:attachment":[{"href":"https:\/\/allaboutquarks.de\/de\/wp-json\/wp\/v2\/media?parent=817"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}