CINXE.COM
Polska Akademia Nauk
<!DOCTYPE html> <html lang="pl-PL"> <head> <meta charset="UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="format-detection" content="telephone=no"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Polska Akademia Nauk</title> <link rel="pingback" href="https://pan.pl/wp/xmlrpc.php"/> <script type="text/javascript">/* wpack.io publicPath */window.__wpackIotheforcecodedist='https://pan.pl/app/themes/theforcecode/dist/';</script><meta name='robots' content='noindex, nofollow' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel="alternate" href="https://pan.pl/" hreflang="pl" /> <link rel="alternate" href="https://pan.pl/en/" hreflang="en" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/pan.pl\/wp\/wp-includes\/js\/wp-emoji.js?ver=6.7.1","twemoji":"https:\/\/pan.pl\/wp\/wp-includes\/js\/twemoji.js?ver=6.7.1"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://pan.pl/wp/wp-includes/css/dist/block-library/style.css?ver=6.7.1' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='contact-form-7-css' href='https://pan.pl/app/plugins/contact-form-7/includes/css/styles.css?ver=6.0.3' type='text/css' media='all' /> <link rel='stylesheet' id='wpackio_theforcecodefrontend_frontend_vendors_main_6520b291_css_style-css' href='https://pan.pl/app/themes/theforcecode/dist/frontend/vendors~main-6520b291.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='wpackio_theforcecodefrontend_frontend_main_55d1f951_css_style-css' href='https://pan.pl/app/themes/theforcecode/dist/frontend/main-55d1f951.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='newsletter-css' href='https://pan.pl/app/plugins/newsletter/style.css?ver=8.6.6' type='text/css' media='all' /> <link rel="https://api.w.org/" href="https://pan.pl/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://pan.pl/wp-json/wp/v2/pages/234" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://pan.pl/wp/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.1" /> <link rel="canonical" href="https://pan.pl/" /> <link rel='shortlink' href='https://pan.pl/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://pan.pl/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fpan.pl%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://pan.pl/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fpan.pl%2F&format=xml" /> <meta name="tec-api-version" content="v1"><meta name="tec-api-origin" content="https://pan.pl"><link rel="alternate" href="https://pan.pl/wp-json/tribe/events/v1/" /><link rel="icon" type="image/x-icon" href="https://pan.pl/app/themes/theforcecode/assets/img/favicon.ico" /><script type="text/javascript"> var globalTranslations = {"areaHaAr":"Powierzchnia (m2\/ha)","areaM2":"Powierzchnia (m2)","areaHa":"Powierzchnia (ha)"} </script> </head> <body class="home page-template-default page page-id-234 tribe-no-js page-template-polska-akademia-nauk header-std background-std footer-std"> <header class="header"> <nav class="navbar navbar-expand-lg navbar-light"> <div class="container"> <div class="navbar-left d-flex align-items-center"> <div class="header-logo logo"> <a href="https://pan.pl" class="logo__url"> <img src="https://pan.pl/app/uploads/2023/07/Combined-Shape.svg" alt="" class="logo__image"> </a> </div> <nav class="header-nav" id="header-nav"> <ul class="nav"> <li class=" nav-item nav-item-type-custom nav-item-object-custom nav-item-13014"> <a class="nav-link" href="https://pan.pl/akademia/">Akademia</a> </li> <li class=" nav-item nav-item-type-custom nav-item-object-custom nav-item-13015"> <a class="nav-link" href="https://pan.pl/aktualnosci/">Aktualności</a> </li> <li class=" nav-item nav-item-type-custom nav-item-object-custom nav-item-13016"> <a class="nav-link" href="https://pan.pl/struktura-2/">Struktura</a> </li> <li class=" nav-item nav-item-type-custom nav-item-object-custom nav-item-13017"> <a class="nav-link" href="https://pan.pl/nauka-i-badania/">Nauka i badania</a> </li> <li class=" nav-item nav-item-type-custom nav-item-object-custom nav-item-13018"> <a class="nav-link" href="https://pan.pl/oferta/">Oferta</a> </li> <li class=" nav-item nav-item-type-post_type nav-item-object-page nav-item-13055"> <a class="nav-link" href="https://pan.pl/wybory-czlonkow-pan/">Wybory członków PAN</a> </li> </ul> <div class="mobile-nav"> <div class="mobile-nav-header"> <div class="mobile-nav-header__row"> <span class="mobile-nav-header__title">Menu</span> <button class="mobile-nav-header__close borderCircleIcon" aria-label="Zamknij menu"> <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" class="iconExit"> <path d="M1.93318 0.273321L5.997 4.3136L9.98068 0.330178C10.4391 -0.0987428 11.1583 -0.0748993 11.5873 0.38348C11.9751 0.79799 11.9977 1.4351 11.6402 1.87604L7.6044 5.9116L11.6402 9.9235C12.0984 10.3525 12.1221 11.0718 11.6931 11.5301C11.676 11.5483 11.6584 11.566 11.6402 11.583C11.4025 11.7897 11.0897 11.8885 10.7763 11.8558C10.4782 11.8546 10.1924 11.7362 9.98068 11.5262L5.9852 7.5308L1.93318 11.583C1.7126 11.7724 1.4279 11.87 1.13754 11.8558C0.843338 11.8729 0.553997 11.7751 0.330534 11.583C-0.110178 11.1397 -0.110178 10.4237 0.330534 9.98036L4.3826 5.9282L0.330496 1.876C-0.0778002 1.39921 -0.0222901 0.681655 0.454505 0.273321C0.880057 -0.0911069 1.50766 -0.0911069 1.93318 0.273321Z" class="iconExit__path" fill="#111111"/> </svg> </button> </div> </div> <ul class="mobile-nav-list"> <li class="mobile-nav-list__item mobile-nav-list__item mobile-nav-list__item-type-custom mobile-nav-list__item-object-custom mobile-nav-list__item-1104 menu-item-has-children"> <button role="button" class="mobile-nav-list__button" aria-label="Akademia"> <span class="mobile-nav-list__button-text">Akademia</span> <svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 320 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/></svg> </button> <div class="mobile-nav-sublist"> <div class="mobile-nav-header"> <div class="mobile-nav-header__row mb-4"> <button class="mobile-nav-header__exit borderCircleIcon" aria-label="Pokaż menu"> <svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 320 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z"/></svg> </button> <button class="mobile-nav-header__close borderCircleIcon" aria-label="Zamknij menu"> <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" class="iconExit"> <path d="M1.93318 0.273321L5.997 4.3136L9.98068 0.330178C10.4391 -0.0987428 11.1583 -0.0748993 11.5873 0.38348C11.9751 0.79799 11.9977 1.4351 11.6402 1.87604L7.6044 5.9116L11.6402 9.9235C12.0984 10.3525 12.1221 11.0718 11.6931 11.5301C11.676 11.5483 11.6584 11.566 11.6402 11.583C11.4025 11.7897 11.0897 11.8885 10.7763 11.8558C10.4782 11.8546 10.1924 11.7362 9.98068 11.5262L5.9852 7.5308L1.93318 11.583C1.7126 11.7724 1.4279 11.87 1.13754 11.8558C0.843338 11.8729 0.553997 11.7751 0.330534 11.583C-0.110178 11.1397 -0.110178 10.4237 0.330534 9.98036L4.3826 5.9282L0.330496 1.876C-0.0778002 1.39921 -0.0222901 0.681655 0.454505 0.273321C0.880057 -0.0911069 1.50766 -0.0911069 1.93318 0.273321Z" class="iconExit__path" fill="#111111"/> </svg> </button> </div> <span class="mobile-nav-header__title">Akademia</span> </div> <ul class="mobile-nav-list"> <li class="mobile-nav-list__item mobile-nav-list__sub mobile-nav-list__sub-type-post_type mobile-nav-list__sub-object-page mobile-nav-list__sub-1887 abc mobile-nav-list__item--"> <a class="mobile-nav-list__link" href="https://pan.pl/o-akademii/"> <span class="mobile-nav-list__link-text">O nas</span> </a> </li> <li class="mobile-nav-list__item mobile-nav-list__sub mobile-nav-list__sub-type-custom mobile-nav-list__sub-object-custom mobile-nav-list__sub-8342 abc mobile-nav-list__item--"> <a class="mobile-nav-list__link" href="https://dev.pan.pl/o-akademii#6548d42a9af3b"> <span class="mobile-nav-list__link-text">Historia</span> </a> </li> <li class="mobile-nav-list__item mobile-nav-list__sub mobile-nav-list__sub-type-post_type_archive mobile-nav-list__sub-object-members mobile-nav-list__sub-8345 abc mobile-nav-list__item--"> <a class="mobile-nav-list__link" href="https://pan.pl/czlonkowie/"> <span class="mobile-nav-list__link-text">Członkowie PAN</span> </a> </li> <li class="mobile-nav-list__separator"></li> <li class="mobile-nav-list__item mobile-nav-list__sub mobile-nav-list__sub-type-post_type mobile-nav-list__sub-object-page mobile-nav-list__sub-8346 abc mobile-nav-list__item--"> <a class="mobile-nav-list__link" href="https://pan.pl/dla-mediow/"> <span class="mobile-nav-list__link-text">Dla mediów</span> </a> </li> <li class="mobile-nav-list__item mobile-nav-list__sub mobile-nav-list__sub-type-post_type mobile-nav-list__sub-object-page mobile-nav-list__sub-8347 abc mobile-nav-list__item--"> <a class="mobile-nav-list__link" href="https://pan.pl/kontakt/"> <span class="mobile-nav-list__link-text">Kontakt</span> </a> </li> </ul> </div> </li> <li class="mobile-nav-list__item mobile-nav-list__item mobile-nav-list__item-type-post_type mobile-nav-list__item-object-page mobile-nav-list__item-8348 abc mobile-nav-list__item--"> <a class="mobile-nav-list__link" href="https://pan.pl/aktualnosci-i-wydarzenia/"> <span class="mobile-nav-list__link-text">Aktualności i wydarzenia</span> </a> </li> <li class="mobile-nav-list__item mobile-nav-list__item mobile-nav-list__item-type-post_type mobile-nav-list__item-object-page mobile-nav-list__item-8349 abc mobile-nav-list__item--"> <a class="mobile-nav-list__link" href="https://pan.pl/struktura/"> <span class="mobile-nav-list__link-text">Struktura</span> </a> </li> <li class="mobile-nav-list__item mobile-nav-list__item mobile-nav-list__item-type-custom mobile-nav-list__item-object-custom mobile-nav-list__item-1107"> <a class="mobile-nav-list__link" href="#"> <span class="mobile-nav-list__link-text">Nauka i badania</span> </a> </li> <li class="mobile-nav-list__item mobile-nav-list__item mobile-nav-list__item-type-custom mobile-nav-list__item-object-custom mobile-nav-list__item-1108"> <a class="mobile-nav-list__link" href="#"> <span class="mobile-nav-list__link-text">Oferta</span> </a> </li> </ul> <ul class="mobile-nav-icons"> <li class="mobile-nav-icons-item mobile-nav-icons-item--increase"> <button class="mobile-nav-icons-item__button" id="wcag-font-increase" type="button" aria-label=""> <svg xmlns="http://www.w3.org/2000/svg" width="64" height="42.135" viewBox="0 0 64 42.135"><g fill="none" fill-rule="evenodd" transform="translate(0 -11)"><rect width="64" height="64"/><path fill="#000" fill-rule="nonzero" d="M19.690136,11 C21.4338096,11 23.0105839,12.0366205 23.7018419,13.6374202 L39.1631095,49.4422763 C39.3060372,49.773265 39.3797667,50.1299865 39.3797667,50.4905164 C39.3797667,51.9508391 38.1959413,53.1346646 36.7356186,53.1346646 C34.303008,53.1346646 32.1119142,51.663663 31.1908591,49.4121631 L29.2663023,44.7076239 L10.1141493,44.7076239 L8.18959248,49.4121631 C7.26853744,51.663663 5.07744357,53.1346646 2.64483305,53.1346646 C2.28430488,53.1346646 1.92758513,53.0609361 1.59659754,52.9180103 C0.255924,52.3390858 -0.361595621,50.7829441 0.217328863,49.4422706 L15.6784397,13.6374243 C16.3696915,12.0366231 17.9464636,11 19.690136,11 Z M51.6983848,18.1820349 C53.5905616,18.1820349 55.1244739,19.7159472 55.1244739,21.608124 L55.1237667,27.0740349 L60.5739109,27.0745639 C62.4660877,27.0745639 64,28.6084762 64,30.500653 C64,32.3928298 62.4660877,33.9267421 60.5739109,33.9267421 L55.1237667,33.9260349 L55.1244739,39.3761791 C55.1244739,41.2683558 53.5905616,42.8022682 51.6983848,42.8022682 C49.8062081,42.8022682 48.2722957,41.2683558 48.2722957,39.3761791 L48.2717667,33.9260349 L42.8058558,33.9267421 C40.9136791,33.9267421 39.3797667,32.3928298 39.3797667,30.500653 C39.3797667,28.6084762 40.9136791,27.0745639 42.8058558,27.0745639 L48.2717667,27.0740349 L48.2722957,21.608124 C48.2722957,19.7159472 49.8062081,18.1820349 51.6983848,18.1820349 Z M19.690136,18.5842289 L12.5271335,37.8128704 L26.852959,37.8128704 L19.690136,18.5842289 Z"/></g></svg> </button> </li> <li class="mobile-nav-icons-item mobile-nav-icons-item--decrease"> <button class="mobile-nav-icons-item__button" id="wcag-font-decrease" type="button" aria-label=""> <svg xmlns="http://www.w3.org/2000/svg" width="64" height="42.135" viewBox="0 0 64 42.135"><g fill="none" fill-rule="evenodd" transform="translate(0 -11)"><rect width="64" height="64"/><path fill="#000" fill-rule="nonzero" d="M10.1141493,44.7076239 L29.2663023,44.7076239 L31.1908591,49.4121631 C32.1119142,51.663663 34.303008,53.1346646 36.7356186,53.1346646 C38.1959413,53.1346646 39.3797667,51.9508391 39.3797667,50.4905164 C39.3797667,50.1299865 39.3060372,49.773265 39.1631095,49.4422763 L23.7018419,13.6374202 C23.0105839,12.0366205 21.4338096,11 19.690136,11 C17.9464636,11 16.3696915,12.0366231 15.6784397,13.6374243 L0.217328863,49.4422706 C-0.361595621,50.7829441 0.255924,52.3390858 1.59659754,52.9180103 C1.92758513,53.0609361 2.28430488,53.1346646 2.64483305,53.1346646 C5.07744357,53.1346646 7.26853744,51.663663 8.18959248,49.4121631 L10.1141493,44.7076239 L10.1141493,44.7076239 Z M19.690136,18.5842289 L26.852959,37.8128704 L12.5271335,37.8128704 L19.690136,18.5842289 Z M39.3797667,30.500653 C39.3797667,28.6084762 40.9136791,27.0745639 42.8058558,27.0745639 L60.5739109,27.0745639 C62.4660877,27.0745639 64,28.6084762 64,30.500653 C64,32.3928298 62.4660877,33.9267421 60.5739109,33.9267421 L42.8058558,33.9267421 C40.9136791,33.9267421 39.3797667,32.3928298 39.3797667,30.500653 Z"/></g></svg> </button> </li> <li class="mobile-nav-icons-item mobile-nav-icons-item--contrast"> <button class="mobile-nav-icons-item__button" id="wcag-contrast-change" type="button" aria-label=""> <svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><g fill="none" fill-rule="evenodd"><rect width="64" height="64"/><path fill="#000" fill-rule="nonzero" d="M32,0 C49.6731245,0 64,14.3268755 64,32 C64,49.6731245 49.6731245,64 32,64 C14.3268755,64 0,49.6731245 0,32 C0,14.3268755 14.3268755,0 32,0 Z M32,6.4 C17.8614845,6.4 6.4,17.8614845 6.4,32 C6.4,46.1385155 17.8614845,57.6 32,57.6 C46.1385155,57.6 57.6,46.1385155 57.6,32 C57.6,17.8614845 46.1385155,6.4 32,6.4 Z M32,10.88 C43.66424,10.88 53.12,20.33576 53.12,32 C53.12,43.66424 43.66424,53.12 32,53.12 C30.93956,53.12 30.08,52.26044 30.08,51.2 L30.08,12.8 C30.08,11.73956 30.93956,10.88 32,10.88 Z"/></g></svg> </button> </li> </ul> </div> </nav> </div> <div class="header-icons"> <div class="header-icons-item header-icons-item--increase"> <button class="header-icons-item__button header-icons-item__button--wcag-font-increase" id="wcag-font-increase" type="button" aria-label=""> <svg xmlns="http://www.w3.org/2000/svg" width="64" height="42.135" viewBox="0 0 64 42.135"><g fill="none" fill-rule="evenodd" transform="translate(0 -11)"><rect width="64" height="64"/><path fill="#000" fill-rule="nonzero" d="M19.690136,11 C21.4338096,11 23.0105839,12.0366205 23.7018419,13.6374202 L39.1631095,49.4422763 C39.3060372,49.773265 39.3797667,50.1299865 39.3797667,50.4905164 C39.3797667,51.9508391 38.1959413,53.1346646 36.7356186,53.1346646 C34.303008,53.1346646 32.1119142,51.663663 31.1908591,49.4121631 L29.2663023,44.7076239 L10.1141493,44.7076239 L8.18959248,49.4121631 C7.26853744,51.663663 5.07744357,53.1346646 2.64483305,53.1346646 C2.28430488,53.1346646 1.92758513,53.0609361 1.59659754,52.9180103 C0.255924,52.3390858 -0.361595621,50.7829441 0.217328863,49.4422706 L15.6784397,13.6374243 C16.3696915,12.0366231 17.9464636,11 19.690136,11 Z M51.6983848,18.1820349 C53.5905616,18.1820349 55.1244739,19.7159472 55.1244739,21.608124 L55.1237667,27.0740349 L60.5739109,27.0745639 C62.4660877,27.0745639 64,28.6084762 64,30.500653 C64,32.3928298 62.4660877,33.9267421 60.5739109,33.9267421 L55.1237667,33.9260349 L55.1244739,39.3761791 C55.1244739,41.2683558 53.5905616,42.8022682 51.6983848,42.8022682 C49.8062081,42.8022682 48.2722957,41.2683558 48.2722957,39.3761791 L48.2717667,33.9260349 L42.8058558,33.9267421 C40.9136791,33.9267421 39.3797667,32.3928298 39.3797667,30.500653 C39.3797667,28.6084762 40.9136791,27.0745639 42.8058558,27.0745639 L48.2717667,27.0740349 L48.2722957,21.608124 C48.2722957,19.7159472 49.8062081,18.1820349 51.6983848,18.1820349 Z M19.690136,18.5842289 L12.5271335,37.8128704 L26.852959,37.8128704 L19.690136,18.5842289 Z"/></g></svg> </button> </div> <div class="header-icons-item header-icons-item--decrease"> <button class="header-icons-item__button header-icons-item__button--wcag-font-decrease" id="wcag-font-decrease" type="button" aria-label=""> <svg xmlns="http://www.w3.org/2000/svg" width="64" height="42.135" viewBox="0 0 64 42.135"><g fill="none" fill-rule="evenodd" transform="translate(0 -11)"><rect width="64" height="64"/><path fill="#000" fill-rule="nonzero" d="M10.1141493,44.7076239 L29.2663023,44.7076239 L31.1908591,49.4121631 C32.1119142,51.663663 34.303008,53.1346646 36.7356186,53.1346646 C38.1959413,53.1346646 39.3797667,51.9508391 39.3797667,50.4905164 C39.3797667,50.1299865 39.3060372,49.773265 39.1631095,49.4422763 L23.7018419,13.6374202 C23.0105839,12.0366205 21.4338096,11 19.690136,11 C17.9464636,11 16.3696915,12.0366231 15.6784397,13.6374243 L0.217328863,49.4422706 C-0.361595621,50.7829441 0.255924,52.3390858 1.59659754,52.9180103 C1.92758513,53.0609361 2.28430488,53.1346646 2.64483305,53.1346646 C5.07744357,53.1346646 7.26853744,51.663663 8.18959248,49.4121631 L10.1141493,44.7076239 L10.1141493,44.7076239 Z M19.690136,18.5842289 L26.852959,37.8128704 L12.5271335,37.8128704 L19.690136,18.5842289 Z M39.3797667,30.500653 C39.3797667,28.6084762 40.9136791,27.0745639 42.8058558,27.0745639 L60.5739109,27.0745639 C62.4660877,27.0745639 64,28.6084762 64,30.500653 C64,32.3928298 62.4660877,33.9267421 60.5739109,33.9267421 L42.8058558,33.9267421 C40.9136791,33.9267421 39.3797667,32.3928298 39.3797667,30.500653 Z"/></g></svg> </button> </div> <div class="header-icons-item header-icons-item--contrast"> <button class="header-icons-item__button header-icons-item__button--wcag-contrast-change" id="wcag-contrast-change" type="button" aria-label=""> <svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><g fill="none" fill-rule="evenodd"><rect width="64" height="64"/><path fill="#000" fill-rule="nonzero" d="M32,0 C49.6731245,0 64,14.3268755 64,32 C64,49.6731245 49.6731245,64 32,64 C14.3268755,64 0,49.6731245 0,32 C0,14.3268755 14.3268755,0 32,0 Z M32,6.4 C17.8614845,6.4 6.4,17.8614845 6.4,32 C6.4,46.1385155 17.8614845,57.6 32,57.6 C46.1385155,57.6 57.6,46.1385155 57.6,32 C57.6,17.8614845 46.1385155,6.4 32,6.4 Z M32,10.88 C43.66424,10.88 53.12,20.33576 53.12,32 C53.12,43.66424 43.66424,53.12 32,53.12 C30.93956,53.12 30.08,52.26044 30.08,51.2 L30.08,12.8 C30.08,11.73956 30.93956,10.88 32,10.88 Z"/></g></svg> </button> </div> <div class="header-icons-item header-icons-item--search"> <button class="header-icons-item__button header-icons-item__button--search-trigger" id="search-trigger" type="button" aria-label=""> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0 8.97379C0 4.02843 4.02843 0 8.97377 0C13.9191 0 17.9495 4.02843 17.9495 8.97379C17.9495 11.0885 17.2083 13.0342 15.9783 14.5719L19.7162 18.3099C20.0917 18.7027 20.0845 19.3237 19.7 19.7077C19.3154 20.0918 18.6944 20.0981 18.302 19.722L14.5641 15.9861C13.0287 17.2151 11.0861 17.9554 8.97377 17.9554C4.02843 17.9554 0 13.9191 0 8.97379ZM15.9529 8.97379C15.9529 5.10642 12.8411 1.99462 8.97377 1.99462C5.10639 1.99462 1.9946 5.10642 1.9946 8.97379C1.9946 12.8412 5.10639 15.9607 8.97377 15.9607C12.8411 15.9607 15.9529 12.8412 15.9529 8.97379Z" fill="#111111"/> </svg> </button> </div> </div> <div class="language-switcher-wrapper footer-bottom-switcher"> <ul class="language-switcher"> <li class="language-switcher__item language-switcher__item--current"> <span class="language-switcher__link"> <span class="language-switcher__link-text"> pl</span> <svg width="7" height="7" viewBox="0 0 7 7" fill="none" xmlns="http://www.w3.org/2000/svg" class="language-switcher__link-arrow"> <path d="M6.83372 1.78642L6.49682 1.4494C6.38007 1.33861 6.24371 1.2832 6.08805 1.2832C5.92919 1.2832 5.79445 1.33861 5.68362 1.4494L3.50002 3.63307L1.31643 1.44946C1.20561 1.33868 1.07084 1.28327 0.91204 1.28327C0.756309 1.28327 0.619982 1.33868 0.503215 1.44946L0.170728 1.78648C0.0568884 1.90024 0 2.03657 0 2.19534C0 2.35706 0.0569514 2.49185 0.170713 2.59966L3.09561 5.52458C3.20349 5.63835 3.33821 5.69529 3.5 5.69529C3.65875 5.69529 3.79506 5.63837 3.90879 5.52458L6.83371 2.59966C6.94454 2.48881 7 2.35404 7 2.19534C7.00002 2.03953 6.94456 1.90328 6.83372 1.78642Z" fill="#111111"/> </svg> </span> <ul class="language-switcher__sub"> <li class="language-switcher__item"> <a href="https://pan.pl/en/" class="language-switcher__link"> <span class="language-switcher__link-text">en</span> </a> </li> </ul> </li> </ul> </div> <div class="header-mobile"> <div class="header-icons header-icons--mobile"> <div class="header-icons-item header-icons-item--search"> <button class="header-icons-item__button header-icons-item__button--search-trigger" id="search-trigger-mobile" type="button" aria-label=""> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0 8.97379C0 4.02843 4.02843 0 8.97377 0C13.9191 0 17.9495 4.02843 17.9495 8.97379C17.9495 11.0885 17.2083 13.0342 15.9783 14.5719L19.7162 18.3099C20.0917 18.7027 20.0845 19.3237 19.7 19.7077C19.3154 20.0918 18.6944 20.0981 18.302 19.722L14.5641 15.9861C13.0287 17.2151 11.0861 17.9554 8.97377 17.9554C4.02843 17.9554 0 13.9191 0 8.97379ZM15.9529 8.97379C15.9529 5.10642 12.8411 1.99462 8.97377 1.99462C5.10639 1.99462 1.9946 5.10642 1.9946 8.97379C1.9946 12.8412 5.10639 15.9607 8.97377 15.9607C12.8411 15.9607 15.9529 12.8412 15.9529 8.97379Z" fill="#111111"/> </svg> </button> </div> </div> <button class="header-hamburger hamburger" type="button" aria-expanded="false" aria-label="Przełącz nawigację"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"> <g fill="none" fill-rule="evenodd"> <path d="M0 0h64v64H0z" /> <path fill="#000" fill-rule="nonzero" d="M60.74 40.107a3.261 3.261 0 0 1 0 6.522H28.86a3.261 3.261 0 0 1 0-6.522h31.88Zm0-22.107a3.261 3.261 0 0 1 0 6.522H3.26a3.261 3.261 0 0 1 0-6.522h57.48Z" /> </g> </svg> </button> </div> </div> </nav> <div class="header-search header-search-wrapper"> <div class="container"> <div class="row"> <div class="col-12"> <form class="search-bar header-search-wrapper" method="get" id="page-search" action="/"> <label class="screen-reader-text" for="s">Wyszukaj informację na bieżącej stronie</label> <div class="search-bar-row"> <div class="search-bar-field"> <span class="search-bar-field__icon"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0 8.97379C0 4.02843 4.02843 0 8.97377 0C13.9191 0 17.9495 4.02843 17.9495 8.97379C17.9495 11.0885 17.2083 13.0342 15.9783 14.5719L19.7162 18.3099C20.0917 18.7027 20.0845 19.3237 19.7 19.7077C19.3154 20.0918 18.6944 20.0981 18.302 19.722L14.5641 15.9861C13.0287 17.2151 11.0861 17.9554 8.97377 17.9554C4.02843 17.9554 0 13.9191 0 8.97379ZM15.9529 8.97379C15.9529 5.10642 12.8411 1.99462 8.97377 1.99462C5.10639 1.99462 1.9946 5.10642 1.9946 8.97379C1.9946 12.8412 5.10639 15.9607 8.97377 15.9607C12.8411 15.9607 15.9529 12.8412 15.9529 8.97379Z" fill="#111111"/> </svg> </span> <input type="text" class="search-bar-field__input" name="s" id="s" placeholder="Czego szukasz" value="" aria-label="Czego szukasz" /> </div> <button type="submit" class="search-bar-button btn btn-outline-primary btn-small btn-icon" aria-label="Pokaż wyniki"> <span class="btn-icon__text">Pokaż wyniki</span> <span class="btn-icon__icon"> <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none"><path fill="#fff" d="M.665 7.724H11.83L9.738 9.816c-.601.6.3 1.502.9.9l3.177-3.18a.636.636 0 0 0 0-.897L10.64 3.46a.636.636 0 0 0-.46-.192c-.56 0-.84.665-.468 1.066l2.123 2.119H.633c-.866.043-.818 1.272-.011 1.273h.043Z"/></svg> </span> </button> </div> </form> </div> </div> <div class="row mt-3 px-3"> <div class="col-12"> <div class="small-information d-flex align-items-center"> <div class="small-information__icon me-2"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"> <g fill="none" fill-rule="evenodd"> <path d="M0 0h64v64H0z"/> <path class="icon" fill="#000" fill-rule="nonzero" d="M32 0C14.355 0 0 14.355 0 32s14.355 32 32 32 32-14.355 32-32S49.645 0 32 0Zm0 5.818c14.437 0 26.182 11.746 26.182 26.182 0 14.437-11.745 26.182-26.182 26.182S5.818 46.437 5.818 32C5.818 17.564 17.563 5.818 32 5.818Zm0 21.334a2.91 2.91 0 0 0-2.91 2.909v17.454a2.91 2.91 0 0 0 5.82 0V30.061A2.91 2.91 0 0 0 32 27.15Zm0-13.576a3.884 3.884 0 0 0-3.878 3.88A3.882 3.882 0 0 0 32 21.333a3.882 3.882 0 0 0 3.878-3.877c0-2.14-1.74-3.88-3.878-3.88Z"/> </g> </svg> </div> <p class="small-information__text mb-0"> Szukaj stronę, artykuł lub wydarzenie po tytule oraz tagach </p> </div> </div> </div> </div> </div> </header> <div class="skip-links"> <a href="#header-nav" role="button" class="cta skip-link">Przejdź do nawigacji</a> <a href="#page-search" role="button" class="cta skip-link">Przejdź do wyszukiwarki</a> <a href="#page-content" role="button" class="cta skip-link">Przejdź do treści</a> </div> <div class="mobile-nav-background"></div> <main class="s-page-content" id="page-content"> <section class="dynamic-hero" style="background-color:;"> <div class="container"> <div class="row dynamic-hero-row"> <div class="col-12 col-lg-6 dynamic-hero-content-column"> <div class="dynamic-hero-content font-lg text-center text-lg-start"> <h1 class="dynamic-hero-content__title homepage h1">Polska Akademia Nauk</h1> <div class="dynamic-hero-content__text"> <p>Polska Akademia Nauk od 1952 roku buduje, kształci i wspiera społeczność uczonych. Dostarcza i promuje wiedzę opartą na faktach. W ten sposób służy społeczeństwu. Instytuty Polskiej Akademii Nauk prowadzą badania o zasięgu międzynarodowym w niemal wszystkich dziedzinach.</p> </div> <div class="dynamic-hero-content__buttons"> <div class="button-wrapper"> <a class="btn btn-outline-primary icon-left" href="https://pan.pl/o-akademii/" > Poznaj nas </a> </div> </div> </div> </div> <div class="col-12 col-lg-6"> <div class="dynamic-hero-graphic"> <div class="dynamic-hero-graphic__wrapper block-full block-half-lg block-mobile-margin"> <div class="dynamic-hero-graphic__image"> <img width="803" height="535" src="https://pan.pl/app/uploads/2024/05/Palac_Staszica_shutterstock_1365304391.jpg" class="img-fluid" alt="" decoding="async" loading="lazy" srcset="https://pan.pl/app/uploads/2024/05/Palac_Staszica_shutterstock_1365304391.jpg 1200w, https://pan.pl/app/uploads/2024/05/Palac_Staszica_shutterstock_1365304391-300x200.jpg 300w, https://pan.pl/app/uploads/2024/05/Palac_Staszica_shutterstock_1365304391-1024x683.jpg 1024w, https://pan.pl/app/uploads/2024/05/Palac_Staszica_shutterstock_1365304391-768x512.jpg 768w" sizes="auto, (max-width: 803px) 100vw, 803px" /> </div> </div> </div> </div> </div> </div> </section> <div class="separator" style="background-color:;" id="653911ed4000e"> <div class="separator__desktop" style="height:80px;"></div> <div class="separator__mobile " style="height:60px;"></div> </div> <section class="counters elements-align-left elements-mobile-align-center" id="counters" style="background-color:;"> <div class="container"> <div class="col-12 d-flex justify-content-center justify-content-lg-start"> </div> <div class="col-12"> <ul class="counters-list"> <li class="counters-list__item"> <div class="counters-list-header"> <span class="counters-list-header__number"> <span class="counters-list-header__number-text">350</span> </span> <span class="counters-list-header__number-seperator">/</span> <span class="counters-list-header__number-total">160</span> </div> <div class="counters-list-description"> <span class="counters-list-description__title">maksymalna liczba członków krajowych/zagranicznych</span> </div> </li> <li class="counters-list__item"> <div class="counters-list-header"> <span class="counters-list-header__number"> <span class="counters-list-header__number-text">68</span> </span> </div> <div class="counters-list-description"> <span class="counters-list-description__title">instytutów naukowych</span> </div> </li> <li class="counters-list__item"> <div class="counters-list-header"> <span class="counters-list-header__number"> <span class="counters-list-header__number-text">4300+</span> </span> </div> <div class="counters-list-description"> <span class="counters-list-description__title">pracowników naukowych w instytutach</span> </div> </li> <li class="counters-list__item"> <div class="counters-list-header"> <span class="counters-list-header__number"> <span class="counters-list-header__number-text">6</span> </span> </div> <div class="counters-list-description"> <span class="counters-list-description__title">stacji zagranicznych</span> </div> </li> <li class="counters-list__item"> <div class="counters-list-header"> <span class="counters-list-header__number"> <span class="counters-list-header__number-text">8</span> </span> </div> <div class="counters-list-description"> <span class="counters-list-description__title">oddziałów regionalnych</span> </div> </li> <li class="counters-list__item"> <div class="counters-list-header"> <span class="counters-list-header__number"> <span class="counters-list-header__number-text">71</span> </span> </div> <div class="counters-list-description"> <span class="counters-list-description__title">komitetów naukowych</span> </div> </li> </ul> </div> </div> </section> <div class="separator" style="background-color:;" id="653911ed4c7fb"> <div class="separator__desktop" style="height:60px;"></div> <div class="separator__mobile line" style="height:30px;"></div> </div> <div class="separator" style="background-color:;" id="66f2ce685fed2"> <div class="separator__desktop" style="height:40px;"></div> <div class="separator__mobile " style="height:20px;"></div> </div> <section class="section-banner" id="67b70b433d631"> <div class="container-fluid-right"> <div class="row"> <div class="section-banner-outer col-12"> <div class="section-banner-inner"> <div class="section-banner-content d-flex flex-column align-items-center align-items-lg-start justify-content-lg-center"> <h2 class="header-decoration underline center text-center d-lg-none"> Nasz głos w debacie publicznej </h2> <h2 class="header-decoration underline left d-none d-lg-block"> Nasz głos w debacie publicznej </h2> <a class="section-banner-button btn btn-outline-primary icon-right" href="https://pan.pl/baza-wiedzy/"> <svg class="external-link" width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M2.66667 0H7.11111C7.64444 0 8 0.355556 8 0.888889V5.33333C8 5.86667 7.64444 6.22222 7.11111 6.22222C6.57778 6.22222 6.22222 5.86667 6.22222 5.33333L6.22213 3.02227L1.51111 7.73333C1.33333 7.91111 1.15556 8 0.888889 8C0.622222 8 0.444444 7.91111 0.266667 7.73333C-0.0888889 7.37778 -0.0888889 6.84444 0.266667 6.48889L4.97773 1.77773L2.66667 1.77778C2.13333 1.77778 1.77778 1.42222 1.77778 0.888889C1.77778 0.355556 2.13333 0 2.66667 0Z" fill="#707080"/> </svg> Więcej informacji </a> </div> <img src="https://pan.pl/app/uploads/2024/09/tlo_ksiazka_kafelki_2-768x1152-c-default.png" class="d-lg-none"> <img src="https://pan.pl/app/uploads/2024/09/tlo_ksiazka_kafelki_2-1770x395-c-center.png" class="d-none d-lg-block"> </div> </div> </div> </div> </section> <div class="separator" style="background-color:;" id="67c55c77a19eb"> <div class="separator__desktop" style="height:40px;"></div> <div class="separator__mobile " style="height:20px;"></div> </div> <section class="section carousel-posttype" id="67b456351d9ab"> <div class="container"> <div class="row mb-2"> <div class="col-12"> <div class="section-header"> <h2 class="section-header__title h2">Aktualności i wydarzenia</h2> </div> </div> </div> <div class="row"> <div class="col-12"> <div class="carousel-posttype__header"> <ul class="nav nav-pills nav-carousel-pills mb-3" id="pills-tab" role="tablist"> <li class="nav-underline-item" role="presentation"> <button class="nav-underline-link active" id="pills-aktualnosci" data-bs-toggle="pill" data-bs-target="#aktualnosci" type="button" role="tab" aria-controls="aktualnosci" aria-selected="true" aria-label="Aktualności"> Aktualności </button> </li> <li class="nav-underline-item" role="presentation"> <button class="nav-underline-link" id="wydarzenia-tab" data-bs-toggle="pill" data-bs-target="#wydarzenia" type="button" role="tab" aria-controls="wydarzenia" aria-selected="false" aria-label="Wydarzenia"> Wydarzenia </button> </li> </ul> <div class="carousel-posttype__arrows arrowsWrapper"> <button class="carousel-posttype__arrow carousel-posttype__arrow--prev arrowPrev" type="button" aria-label="Poprzedni"> <svg width="52" height="53" viewBox="0 0 52 53" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.75" width="51" height="51" rx="25.5" stroke="white" class="circle"/> <rect x="6" y="6.25" width="40" height="40" rx="20" fill="white" class="border"/> <path d="M19.6654 26.974H30.8292L28.7377 29.0655C28.1369 29.6663 29.0381 30.5674 29.6388 29.9666L32.8152 26.7853C33.0616 26.5374 33.0616 26.1371 32.8152 25.8892L29.6388 22.7091C29.518 22.5849 29.3516 22.5153 29.1783 22.5166C28.6192 22.5168 28.3384 23.1822 28.7107 23.5827L30.8341 25.7017H19.6326C18.7669 25.7447 18.8152 26.9736 19.6215 26.9751L19.6654 26.974Z" fill="#707080" class="arrow"/> </svg> </button> <button class="carousel-posttype__arrow carousel-posttype__arrow--next arrowNext" type="button" aria-label="Następny"> <svg width="52" height="53" viewBox="0 0 52 53" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.75" width="51" height="51" rx="25.5" stroke="white" class="circle"/> <rect x="6" y="6.25" width="40" height="40" rx="20" fill="white" class="border"/> <path d="M19.6654 26.974H30.8292L28.7377 29.0655C28.1369 29.6663 29.0381 30.5674 29.6388 29.9666L32.8152 26.7853C33.0616 26.5374 33.0616 26.1371 32.8152 25.8892L29.6388 22.7091C29.518 22.5849 29.3516 22.5153 29.1783 22.5166C28.6192 22.5168 28.3384 23.1822 28.7107 23.5827L30.8341 25.7017H19.6326C18.7669 25.7447 18.8152 26.9736 19.6215 26.9751L19.6654 26.974Z" fill="#707080" class="arrow"/> </svg> </button> </div> </div> <div class="tab-content" id="pills-tabContent"> <div class="tab-pane show active" id="aktualnosci" role="tabpanel" aria-labelledby="pills-aktualnosci" tabindex="0"> <div class="posttype-carousel splide"> <div class="splide__track"> <ul class="splide__list"> <li class="splide__slide"> <a class="post-featured" href="https://pan.pl/nowa-ustawa-o-pan-nadzor-nad-instytutami-kluczowym-punktem-sporu/"> <div class="post-featured-image"> <img src="https://pan.pl/app/uploads/2025/03/young-adult-organizing-documents-scaled-670x670-c-default.jpg" alt="Nowy projekt ustawy o PAN" class="post-featured-image__thumbnail"> </div> <div class="post-featured-content"> <div class="post-featured-meta"> <span class="post-featured-meta__label label">Wyróżnione</span> <time class="post-featured-meta__date" datetime="03/26/2025">26 marca 2025</time> </div> <div class="post-featured-header"> <h2 class="post-featured-header__title">Nowy projekt ustawy o PAN</h2> <span class="post-featured-header__more button-left"> <svg width="52" height="53" viewBox="0 0 52 53" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.75" width="51" height="51" rx="25.5" stroke="white" class="circle"/> <rect x="6" y="6.25" width="40" height="40" rx="20" fill="white" class="border"/> <path d="M19.6654 26.974H30.8292L28.7377 29.0655C28.1369 29.6663 29.0381 30.5674 29.6388 29.9666L32.8152 26.7853C33.0616 26.5374 33.0616 26.1371 32.8152 25.8892L29.6388 22.7091C29.518 22.5849 29.3516 22.5153 29.1783 22.5166C28.6192 22.5168 28.3384 23.1822 28.7107 23.5827L30.8341 25.7017H19.6326C18.7669 25.7447 18.8152 26.9736 19.6215 26.9751L19.6654 26.974Z" fill="#707080" class="arrow"/> </svg> </span> </div> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/uroczyste-otwarcie-i-pietra-akademika-iv-wieku-po-kapitalnym-remoncie/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/04/IMG-20250402-WA0003-670x670-c-default.jpg" alt="Uroczyste otwarcie I piętra Akademika IV Wieku po kapitalnym remoncie" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="04/04/2025">04 kwietnia 2025</time> <h2 class="post-basic-content__title">Uroczyste otwarcie I piętra Akademika IV Wieku po kapitalnym remoncie</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/polscy-naukowcy-odkryli-molekularne-podstawy-nieplodnosci/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/3_Badanie_molekularne_IIMCB.svg" alt="Polscy naukowcy odkryli molekularne podstawy niepłodności" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/31/2025">31 marca 2025</time> <h2 class="post-basic-content__title">Polscy naukowcy odkryli molekularne podstawy niepłodności</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-featured" href="https://pan.pl/nowa-ustawa-o-pan-nadzor-nad-instytutami-kluczowym-punktem-sporu/"> <div class="post-featured-image"> <img src="https://pan.pl/app/uploads/2025/03/young-adult-organizing-documents-scaled-670x670-c-default.jpg" alt="Nowy projekt ustawy o PAN" class="post-featured-image__thumbnail"> </div> <div class="post-featured-content"> <div class="post-featured-meta"> <span class="post-featured-meta__label label">Wyróżnione</span> <time class="post-featured-meta__date" datetime="03/26/2025">26 marca 2025</time> </div> <div class="post-featured-header"> <h2 class="post-featured-header__title">Nowy projekt ustawy o PAN</h2> <span class="post-featured-header__more button-left"> <svg width="52" height="53" viewBox="0 0 52 53" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.75" width="51" height="51" rx="25.5" stroke="white" class="circle"/> <rect x="6" y="6.25" width="40" height="40" rx="20" fill="white" class="border"/> <path d="M19.6654 26.974H30.8292L28.7377 29.0655C28.1369 29.6663 29.0381 30.5674 29.6388 29.9666L32.8152 26.7853C33.0616 26.5374 33.0616 26.1371 32.8152 25.8892L29.6388 22.7091C29.518 22.5849 29.3516 22.5153 29.1783 22.5166C28.6192 22.5168 28.3384 23.1822 28.7107 23.5827L30.8341 25.7017H19.6326C18.7669 25.7447 18.8152 26.9736 19.6215 26.9751L19.6654 26.974Z" fill="#707080" class="arrow"/> </svg> </span> </div> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/smog-i-jego-grozne-konsekwencje/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/Zrzut-ekranu-2025-03-25-100930-670x670-c-default.png" alt="Smog i jego groźne konsekwencje" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/25/2025">25 marca 2025</time> <h2 class="post-basic-content__title">Smog i jego groźne konsekwencje</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wyklad-prof-jaroslawa-reguly-od-endoskopii-diagnostycznej-do-zabiegowej-10-04-2025/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/wyklad_Regula-670x670-c-default.png" alt="Wykład prof. Jarosława Reguły „Od endoskopii diagnostycznej do zabiegowej” (10.04.2025)" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/24/2025">24 marca 2025</time> <h2 class="post-basic-content__title">Wykład prof. Jarosława Reguły „Od endoskopii diagnostycznej do zabiegowej” (10.04.2025)</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/statement-no-3-2025-presidium-of-the-pas-on-the-current-threats-to-science-and-scientific-research/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/DSC01687-scaled-670x670-c-default.jpg" alt="Statement No. 3/2025 Presidium of the PAS on the current threats to science and scientific research" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/18/2025">18 marca 2025</time> <h2 class="post-basic-content__title">Statement No. 3/2025 Presidium of the PAS on the current threats to science and scientific research</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/mab-otwiera-nowe-mozliwosci/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2024/05/MIBMIK_logo-670x670-c-default.jpg" alt="MAB otwiera nowe możliwości" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/17/2025">17 marca 2025</time> <h2 class="post-basic-content__title">MAB otwiera nowe możliwości</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/instytut-nauk-ekonomicznych-pan-z-wyroznieniem-hr-excellence-in-research/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/INE_PAN_logo.svg" alt="Instytut Nauk Ekonomicznych PAN z wyróżnieniem HR Excellence in Research" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/17/2025">17 marca 2025</time> <h2 class="post-basic-content__title">Instytut Nauk Ekonomicznych PAN z wyróżnieniem HR Excellence in Research</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/warsztaty-mentoringowe-erc-dla-przedstawicieli-nauk-humanistycznych-i-spolecznych/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/02/Logo_PAN_PL_RGB_.svg" alt="Warsztaty mentoringowe ERC dla przedstawicieli nauk humanistycznych i społecznych" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/17/2025">17 marca 2025</time> <h2 class="post-basic-content__title">Warsztaty mentoringowe ERC dla przedstawicieli nauk humanistycznych i społecznych</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wizyta-w-polsce-delegacji-mongolskiej-akademii-nauk/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/DSC01553-scaled-670x670-c-default.jpg" alt="Wizyta w Polsce delegacji Mongolskiej Akademii Nauk" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/13/2025">13 marca 2025</time> <h2 class="post-basic-content__title">Wizyta w Polsce delegacji Mongolskiej Akademii Nauk</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/kosmiczny-kameleon-wymyka-sie-klasyfikacji/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/IFJ250312b_fot01s-670x670-c-default.jpg" alt="Kosmiczny kameleon wymyka się klasyfikacji" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/12/2025">12 marca 2025</time> <h2 class="post-basic-content__title">Kosmiczny kameleon wymyka się klasyfikacji</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/debata-ekspertow-na-temat-ewaluacji-dzialalnosci-naukowej/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/Debata.svg" alt="Debata ekspertów na temat ewaluacji działalności naukowej" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/07/2025">07 marca 2025</time> <h2 class="post-basic-content__title">Debata ekspertów na temat ewaluacji działalności naukowej</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wzmozona-aktywnosc-sejsmiczna-na-santorini-czego-mozemy-sie-spodziewac/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/Santorini_YT.svg" alt="Wzmożona aktywność sejsmiczna na Santorini. Czego możemy się spodziewać?" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/06/2025">06 marca 2025</time> <h2 class="post-basic-content__title">Wzmożona aktywność sejsmiczna na Santorini. Czego możemy się spodziewać?</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/marzec-w-brukseli-wydarzenia-organizowane-przez-biuro-polsca-pan/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/Grafika-draft-1-670x670-c-default.png" alt="Marzec w Brukseli – wydarzenia organizowane przez Biuro PolSCA PAN" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/05/2025">05 marca 2025</time> <h2 class="post-basic-content__title">Marzec w Brukseli – wydarzenia organizowane przez Biuro PolSCA PAN</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/inzynier-architekt-przyszlosci/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/dzien_inzyniera_1-scaled-670x670-c-default.jpg" alt="Inżynier – architekt przyszłości?" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="03/04/2025">04 marca 2025</time> <h2 class="post-basic-content__title">Inżynier – architekt przyszłości?</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> </ul> </div> </div> </div> <div class="tab-pane" id="wydarzenia" role="tabpanel" aria-labelledby="wydarzenia-tab" tabindex="0"> <div class="posttype-carousel splide"> <div class="splide__track"> <ul class="splide__list"> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/ogolnopolska-konferencja-naukowa-nowe-techniki-genomowe-w-polsce/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/02/Logo_PAN_PL_RGB_.svg" alt="Ogólnopolska konferencja naukowa „Nowe Techniki Genomowe w Polsce”" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="7 kwietnia o 08:00 - 17:00">7 kwietnia o 08:00 - 17:00</time> <h2 class="post-basic-content__title">Ogólnopolska konferencja naukowa „Nowe Techniki Genomowe w Polsce”</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/ifis-seminarium-fenomenologiczne-pt-czytanie-derridy/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/02/Logo_PAN_PL_RGB_.svg" alt="IFiS PAN: seminarium fenomenologiczne „Czytanie Derridy”" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="7 kwietnia o 18:30 - 20:30">7 kwietnia o 18:30 - 20:30</time> <h2 class="post-basic-content__title">IFiS PAN: seminarium fenomenologiczne „Czytanie Derridy”</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/xxviii-poznanski-festiwal-nauki-i-sztuki/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/PFNiS2025_1190x440_jpg-670x670-c-default.png" alt="XXVIII Poznański Festiwal Nauki i Sztuki" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="9 kwietnia o 09:00 - 15:00">9 kwietnia o 09:00 - 15:00</time> <h2 class="post-basic-content__title">XXVIII Poznański Festiwal Nauki i Sztuki</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/ifis-konferencja-automating-welfare-policy-implications-of-ai-in-the-digital-welfare-states/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/02/Logo_PAN_PL_RGB_.svg" alt="IFiS PAN: konferencja „Automating Welfare Policy Implications of AI in the Digital Welfare States”" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="Wydarzenie całodobowe">Wydarzenie całodobowe</time> <h2 class="post-basic-content__title">IFiS PAN: konferencja „Automating Welfare Policy Implications of AI in the Digital Welfare States”</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/ifis-pan-seminarium-chinskie-bezposrednie-inwestycje-zagraniczne-w-ue-2/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/02/Logo_PAN_PL_RGB_.svg" alt="INE PAN: Seminarium „The Marriage Market, Wage Risk, and Tax Progressivity”" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="10 kwietnia o 11:00 - 13:00">10 kwietnia o 11:00 - 13:00</time> <h2 class="post-basic-content__title">INE PAN: Seminarium „The Marriage Market, Wage Risk, and Tax Progressivity”</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/wyklad-prof-j-reguly-od-endoskopii-diagnostycznej-do-zabiegowej/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/wyklad_Regula-670x670-c-default.png" alt="wykład prof. J. Reguły: Od endoskopii diagnostycznej do zabiegowej" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="10 kwietnia o 17:00 - 19:00">10 kwietnia o 17:00 - 19:00</time> <h2 class="post-basic-content__title">wykład prof. J. Reguły: Od endoskopii diagnostycznej do zabiegowej</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/operas-pl-diamentowa-droga-otwartego-dostepu/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/diamentowa-droga-670x670-c-default.jpg" alt="OPERAS-PL: Diamentowa droga otwartego dostępu" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="11 kwietnia o 10:30 - 14:00">11 kwietnia o 10:30 - 14:00</time> <h2 class="post-basic-content__title">OPERAS-PL: Diamentowa droga otwartego dostępu</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/9861/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2024/06/prezydium_calendar-670x670-c-default.jpg" alt="Prezydium PAN" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="15 kwietnia o 11:00 - 14:00">15 kwietnia o 11:00 - 14:00</time> <h2 class="post-basic-content__title">Prezydium PAN</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/ifis-pan-seminarium-chinskie-bezposrednie-inwestycje-zagraniczne-w-ue/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/02/Logo_PAN_PL_RGB_.svg" alt="IFiS PAN: Seminarium „Chińskie bezpośrednie inwestycje zagraniczne w UE”" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="16 kwietnia o 15:00 - 16:30">16 kwietnia o 15:00 - 16:30</time> <h2 class="post-basic-content__title">IFiS PAN: Seminarium „Chińskie bezpośrednie inwestycje zagraniczne w UE”</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/v4-training-for-research-project-managers-edycja-wiosna-2025/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/01/V4-training-Spring-2025-670x670-c-default.png" alt="V4 Training for Research Project Managers – edycja Wiosna 2025" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="Wydarzenie całodobowe">Wydarzenie całodobowe</time> <h2 class="post-basic-content__title">V4 Training for Research Project Managers – edycja Wiosna 2025</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/ifis-seminarium-filozoficzne-problemy-wiedzy/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/02/Logo_PAN_PL_RGB_.svg" alt="IFiS PAN: seminarium „Dlaczego Wielka Rewolucja Naukowa zdarzyła się akurat w XVII-wiecznej Europie?”" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="28 kwietnia o 11:30 - 13:30">28 kwietnia o 11:30 - 13:30</time> <h2 class="post-basic-content__title">IFiS PAN: seminarium „Dlaczego Wielka Rewolucja Naukowa zdarzyła się akurat w XVII-wiecznej Europie?”</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/prezydium-pan-8/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2024/06/prezydium_calendar-670x670-c-default.jpg" alt="Prezydium PAN" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="20 maja o 11:00 - 14:00">20 maja o 11:00 - 14:00</time> <h2 class="post-basic-content__title">Prezydium PAN</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/prezydium-pan-9/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2024/06/prezydium_calendar-670x670-c-default.jpg" alt="Prezydium PAN" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="10 czerwca o 11:00 - 14:00">10 czerwca o 11:00 - 14:00</time> <h2 class="post-basic-content__title">Prezydium PAN</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/zgromadzenie-ogolne-pan-4/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2024/09/zo_calendar-670x670-c-default.jpg" alt="Zgromadzenie Ogólne PAN" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="Wydarzenie całodobowe">Wydarzenie całodobowe</time> <h2 class="post-basic-content__title">Zgromadzenie Ogólne PAN</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/ii-letnia-szkola-fenomenologii/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/03/fenomenologia-pozioma-Photoroom-1-670x670-c-default.jpg" alt="II Letnia Szkoła Fenomenologii" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="Wydarzenie całodobowe">Wydarzenie całodobowe</time> <h2 class="post-basic-content__title">II Letnia Szkoła Fenomenologii</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> <li class="splide__slide"> <a class="post-basic" href="https://pan.pl/wydarzenie/ogolnopolska-konferencja-naukowa-nowe-techniki-genomowe-w-polsce/"> <div class="post-basic-image"> <img src="https://pan.pl/app/uploads/2025/02/Logo_PAN_PL_RGB_.svg" alt="Ogólnopolska konferencja naukowa „Nowe Techniki Genomowe w Polsce”" class="post-basic-image__thumbnail"> </div> <div class="post-basic-content"> <time class="post-basic-content__date" datetime="7 kwietnia o 08:00 - 17:00">7 kwietnia o 08:00 - 17:00</time> <h2 class="post-basic-content__title">Ogólnopolska konferencja naukowa „Nowe Techniki Genomowe w Polsce”</h2> <span class="post-basic-content__more"> <img class="post-basic-content__more-img" src="https://pan.pl/app/themes/theforcecode/assets/images/btn-arrow-right-blue.svg" alt="Czytaj więcej"> </span> </div> </a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> </section> <div class="separator" style="background-color:;" id="653911ed56ab9"> <div class="separator__desktop" style="height:120px;"></div> <div class="separator__mobile " style="height:60px;"></div> </div> <section class="link-block" id="link-block"> <div class="container background"> <div class="background-color background-color--full background-color--right background-color--gray"></div> <div class="row"> <div class="col-12 col-md-4 col-lg-4 mb-5 mb-lg-0 g-lg-0 first"> <div class="link-block-column"> <h3 class="link-block-column__title">Poznaj Akademię</h3> <ul class="link-block-list"> <li class="link-block-list__item link-block-list__item--featured" data-active="o-nas"> <a href="https://pan.pl/o-akademii/" class="underline-hover link-block-list__link" target=""> O nas </a> </li> <li class="link-block-list__item link-block-list__item--featured" data-active="nasza-historia"> <a href="https://pan.pl/historia/" class="underline-hover link-block-list__link" target=""> Nasza historia </a> </li> <li class="link-block-list__item link-block-list__item--featured" data-active="wydzialy"> <a href="https://pan.pl/wydzialy" class="underline-hover link-block-list__link" target=""> Wydziały </a> </li> <li class="link-block-list__item link-block-list__item--featured" data-active="oddzialy"> <a href="https://pan.pl/oddzialy" class="underline-hover link-block-list__link" target=""> Oddziały </a> </li> <li class="link-block-list__item link-block-list__item--featured" data-active="czlonkowie-pan"> <a href="https://pan.pl/czlonkowie" class="underline-hover link-block-list__link" target=""> Członkowie PAN </a> </li> <li class="link-block-list__item link-block-list__item--featured" data-active="akademia-mlodych-uczonych"> <a href="https://pan.pl/akademia-mlodych-uczonych/" class="underline-hover link-block-list__link" target=""> Akademia Młodych Uczonych </a> </li> <li class="link-block-list__item link-block-list__item--featured" data-active="komitety"> <a href="https://pan.pl/komitety/" class="underline-hover link-block-list__link" target=""> Komitety </a> </li> </ul> </div> </div> <div class="col-12 col-md-3 col-lg-2 mb-5 mb-lg-0"> <div class="link-block-column"> <h3 class="link-block-column__title">Władze</h3> <ul class="link-block-list"> <li class="link-block-list__item" data-active="wladze-akademii"> <a href="https://pan.pl/wladze/wladze-pan/" class="underline-hover link-block-list__link" target=""> Władze Akademii </a> </li> <li class="link-block-list__item" data-active="zgromadzenia-ogolne"> <a href="https://pan.pl/wladze/wladze-pan#654931fe28683" class="underline-hover link-block-list__link" target=""> Zgromadzenia Ogólne </a> </li> <li class="link-block-list__item" data-active="prezydium"> <a href="https://pan.pl/wladze/wladze-pan#654931fe2a02c" class="underline-hover link-block-list__link" target=""> Prezydium </a> </li> </ul> </div> </div> <div class="col-12 col-md-3 col-lg-2 mb-5 mb-lg-0 last"> <div class="link-block-column"> <h3 class="link-block-column__title">Oferta</h3> <ul class="link-block-list"> <li class="link-block-list__item" data-active="oferta-konferencyjna-i-wypoczynkowa"> <a href="https://pan.pl/oferta-konferencyjna-i-wypoczynkowa/" class="underline-hover link-block-list__link" target=""> Oferta konferencyjna i wypoczynkowa </a> </li> <li class="link-block-list__item" data-active="dom-seniora"> <a href="https://pan.pl/obiekt/dom-seniora/" class="underline-hover link-block-list__link" target=""> Dom Seniora </a> </li> </ul> </div> </div> <div class="col-12 offset-lg-1 col-lg-2 link-block-image"> <div class="link-column-images"> <img src="https://pan.pl/app/uploads/2023/12/medal_PAN-_2.jpg" alt="" class="link-column-images__image active" data-active="default"> </div> </div> </div> </div> </section> <div class="separator" style="background-color:;" id="653911ed62702"> <div class="separator__desktop" style="height:70px;"></div> <div class="separator__mobile " style="height:60px;"></div> </div> <section class="upcoming-events"> <div class="container"> <div class="row"> <div class="col-12"> <h2 class="upcoming-events__title">Najbliższe wydarzenia</h2> </div> <div class="col-12"> <a class="link link-underline-base link-underline-base--gray link-underline-base--small link-hover-accent" href="https://pan.pl/wydarzenia/"> Zobacz wszystkie wydarzenia </a> </div> </div> <div class="row mt-4"> <div class="col-12 col-lg-6 col-xl-7"> <a href="https://pan.pl/wydarzenie/ogolnopolska-konferencja-naukowa-nowe-techniki-genomowe-w-polsce/" class="upcoming-events-featured no-image"> <div class="upcoming-events-featured-image"> <div class="image-placeholder"> <svg width="144" height="115" viewBox="0 0 144 115" fill="none" xmlns="http://www.w3.org/2000/svg"> <g filter="url(#filter0_d_0_7251)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9804 20.9565V6.54173C18.9804 3.63426 19.4623 2.54408 22.9575 2.54408C30.4301 2.54408 34.2865 5.93597 34.2865 12.5978C34.2865 19.3816 29.9475 23.1366 21.6317 23.1366C19.5828 23.1366 18.9804 22.6522 18.9804 20.9565ZM5 47H25.9707V45.6678C19.9446 45.5464 18.9804 44.2139 18.9804 37.9151V26.8919C18.9804 25.6807 19.2212 25.5593 20.1855 25.5593H20.9089C26.2115 25.5593 30.671 25.4383 34.5274 23.8634C39.1075 22.0464 42 17.686 42 12.2347C42 4.36105 36.3355 0 25.368 0H5V1.45358C10.7852 1.69625 11.5081 2.90747 11.5081 7.38956V37.9151C11.5081 44.0931 10.6645 45.6678 5 45.6678V47ZM132.459 106.873H135.579V106.745C134.799 106.745 134.669 106.491 134.669 105.855V103.691C134.819 103.691 134.883 103.691 134.934 103.715C134.972 103.733 135.004 103.764 135.059 103.818L135.06 103.818L137.269 105.982C137.319 106.078 137.368 106.156 137.411 106.223L137.411 106.224L137.411 106.224L137.411 106.224C137.48 106.333 137.53 106.412 137.53 106.491C137.53 106.618 137.269 106.745 136.749 106.745V106.873H140V106.745C139.61 106.745 139.22 106.491 138.83 106.109L135.709 103.055L137.659 101.146C138.31 100.509 138.7 100.255 139.35 100.255V100.127H136.619V100.255C137.14 100.255 137.4 100.382 137.4 100.637C137.4 100.722 137.284 100.863 137.091 101.1C136.994 101.217 136.879 101.358 136.749 101.527L134.929 103.182C134.929 103.309 134.799 103.436 134.669 103.436V101.273C134.669 100.509 134.799 100.255 135.709 100.255V100.127H132.459V100.255C133.369 100.255 133.499 100.509 133.499 101.273V105.855C133.499 106.491 133.239 106.745 132.589 106.745H132.459V106.873ZM124.138 100.255C125.047 100.255 125.178 100.637 125.178 101.782V104.327C125.178 105.218 125.438 105.855 125.828 106.364C126.348 106.873 127.128 107 128.168 107C130.118 107 131.029 106.109 131.029 104.2V101.4C131.029 100.637 131.289 100.255 132.069 100.255V100.127H129.599V100.255C130.379 100.255 130.509 100.509 130.509 101.4V104.327C130.509 105.855 129.728 106.618 128.298 106.618C126.998 106.618 126.348 105.855 126.348 104.327V101.4C126.348 100.509 126.478 100.255 127.258 100.255V100.127H124.138V100.255ZM119.067 104.327H121.667L120.367 101.4L119.067 104.327ZM116.726 106.873V106.745C117.247 106.745 117.507 106.491 117.767 105.855L120.627 100H120.887L123.618 105.982C123.748 106.236 123.877 106.491 124.008 106.618C124.268 106.745 124.398 106.745 124.658 106.745V106.873H121.667V106.745C122.317 106.745 122.448 106.618 122.448 106.236V105.982L121.797 104.709H118.807L118.287 105.728C118.287 105.876 118.242 106.025 118.205 106.149L118.205 106.149L118.205 106.149L118.205 106.149L118.205 106.149C118.179 106.236 118.157 106.311 118.157 106.364C118.157 106.618 118.417 106.745 118.937 106.745H119.067V106.873H116.726ZM111.136 105.728V101.4L115.816 106.873H116.077V101.273C116.077 100.509 116.206 100.382 116.987 100.255V100.127H114.516V100.255C115.427 100.382 115.556 100.509 115.556 101.273V104.964L111.396 100.127H109.576V100.255C110.095 100.382 110.356 100.509 110.616 101.018V105.728C110.616 106.491 110.485 106.618 109.576 106.745V106.873H112.176V106.745C111.266 106.618 111.136 106.491 111.136 105.728ZM100.994 104.327L102.294 101.4L103.595 104.327H100.994ZM98.6541 106.873H100.994V106.745H100.864C100.344 106.745 100.084 106.618 100.084 106.364C100.084 106.311 100.106 106.236 100.133 106.149L100.133 106.149L100.133 106.149L100.133 106.149C100.17 106.025 100.214 105.876 100.214 105.728L100.734 104.709H103.725L104.375 105.982V106.236C104.375 106.618 104.244 106.745 103.595 106.745V106.873H106.585V106.745C106.325 106.745 106.195 106.745 105.935 106.618C105.805 106.491 105.675 106.236 105.545 105.982L102.815 100H102.554L99.6939 105.855C99.4342 106.491 99.1741 106.745 98.6541 106.745V106.873ZM95.1431 106.873H98.3937V106.745C97.4837 106.745 97.3539 106.491 97.3539 105.855V101.273C97.3539 100.509 97.4837 100.382 98.3937 100.255V100.127H95.1431V100.255C95.9238 100.255 96.1835 100.509 96.1835 101.273V105.855C96.1835 106.491 96.0536 106.745 95.1431 106.745V106.873ZM85.6517 106.873H87.9921V106.745C87.2123 106.745 87.0824 106.491 87.0824 105.6V101.273L89.6825 106.873H89.9428L92.5433 101.273V105.728C92.5433 106.491 92.4131 106.745 91.5031 106.745V106.873H94.6233V106.745C93.7133 106.618 93.5834 106.491 93.5834 105.728V101.273C93.5834 100.509 93.7133 100.255 94.6233 100.255V100.127H92.5433L90.0724 105.345L87.6022 100.127H85.6517V100.255C86.4321 100.382 86.5623 100.637 86.5623 101.4V105.6C86.5623 106.364 86.302 106.745 85.6517 106.745V106.873ZM78.5007 106.873V106.745C79.2812 106.745 79.411 106.491 79.411 105.855V101.273C79.411 100.509 79.2812 100.382 78.5007 100.255V100.127H84.482V101.655H84.3518C84.0921 100.637 83.8317 100.509 82.7916 100.509H81.1014C80.5811 100.509 80.5811 100.637 80.5811 101.018V102.8C80.5811 103.055 80.5811 103.182 80.9713 103.182H82.2712C83.3116 103.182 83.5717 103.055 83.7019 102.164H83.8317V104.582H83.7019C83.5717 103.691 83.3116 103.564 82.2712 103.564H80.8414C80.7102 103.564 80.6451 103.564 80.6128 103.596C80.5811 103.628 80.5811 103.692 80.5811 103.818V105.855C80.5811 106.364 80.7112 106.491 81.1014 106.491H82.6617C83.9616 106.491 84.482 106.236 84.8719 105.218H85.1319L84.6115 106.873H78.5007ZM73.3002 105.728V101.273C73.3002 100.637 73.3002 100.509 73.9502 100.509C76.1607 100.509 77.3307 101.527 77.3307 103.564C77.3307 105.473 76.1607 106.618 74.0803 106.618C73.3002 106.618 73.3002 106.491 73.3002 105.728ZM71.09 106.873H74.0803C75.3805 106.873 76.2908 106.873 77.071 106.236C78.1108 105.6 78.5007 104.582 78.5007 103.436C78.5007 101.4 77.071 100.127 74.4702 100.127H71.09V100.255C71.8701 100.255 72.1299 100.509 72.1299 101.273V105.855C72.1299 106.491 71.8701 106.745 71.09 106.745V106.873ZM65.3688 104.327L66.6693 101.4L67.9695 104.327H65.3688ZM63.0287 106.873H65.3688V106.745H65.2389C64.7188 106.745 64.4588 106.618 64.4588 106.364C64.4588 106.236 64.589 105.982 64.7188 105.728L65.2389 104.709H68.2296L68.7493 105.982C68.7493 106.109 68.8798 106.236 68.8798 106.236C68.8798 106.618 68.6195 106.745 68.0994 106.745V106.873H70.9598V106.745C70.6998 106.745 70.5696 106.745 70.4398 106.618C70.3096 106.491 70.0498 106.236 69.9197 105.982L67.1891 100H66.929L64.0689 105.855C63.8086 106.491 63.5485 106.745 63.0287 106.745V106.873ZM55.4875 106.873H58.608V106.745C57.6977 106.745 57.5679 106.491 57.5679 105.855V103.691H57.6977C57.7534 103.691 57.7852 103.691 57.8136 103.701C57.8516 103.714 57.8834 103.745 57.9578 103.818L60.168 105.982C60.2177 106.079 60.2673 106.157 60.3097 106.224L60.3097 106.224C60.3786 106.333 60.4283 106.412 60.4283 106.491C60.4283 106.618 60.168 106.745 59.6482 106.745V106.873H62.8986V106.745C62.5086 106.745 62.1187 106.491 61.7288 106.109L58.7382 103.055L60.5585 101.146C61.2084 100.509 61.7288 100.255 62.2486 100.255V100.127H59.5183V100.255C60.0381 100.255 60.2985 100.382 60.2985 100.637C60.2985 100.721 60.183 100.863 59.9908 101.098L59.9906 101.098L59.9896 101.099C59.8933 101.217 59.7779 101.358 59.6482 101.527L57.9578 103.182C57.8279 103.309 57.6977 103.436 57.5679 103.436V101.273C57.5679 100.509 57.6977 100.255 58.608 100.255V100.127H55.4875V100.255C56.2677 100.255 56.3975 100.509 56.3975 101.273V105.855C56.3975 106.491 56.2677 106.745 55.4875 106.745V106.873ZM49.6368 104.327L51.0671 101.4L52.3673 104.327H49.6368ZM47.2964 106.873H49.6368V106.745C49.1164 106.745 48.8563 106.618 48.8563 106.364C48.8563 106.236 48.8563 105.982 48.9868 105.728L49.5069 104.709H52.4969L53.0173 105.982C53.1472 106.109 53.1472 106.236 53.1472 106.236C53.1472 106.618 52.8874 106.745 52.3673 106.745V106.873H55.2275V106.745C54.9675 106.745 54.8376 106.745 54.7071 106.618C54.5775 106.491 54.4474 106.236 54.3172 105.982L51.4571 100H51.197L48.3366 105.855C48.0765 106.491 47.8165 106.745 47.2964 106.745V106.873ZM39.365 104.327L40.7954 101.4L41.9654 104.327H39.365ZM37.0249 106.873H39.365V106.745H39.2351C38.715 106.745 38.5849 106.618 38.5849 106.364C38.5849 106.236 38.5849 105.982 38.715 105.728L39.2351 104.709H42.2257L42.7455 105.982C42.8757 106.109 42.8757 106.236 42.8757 106.236C42.8757 106.618 42.6157 106.745 42.0956 106.745V106.873H44.956V106.745C44.696 106.745 44.5658 106.745 44.4359 106.618C44.3822 106.566 44.3284 106.491 44.2654 106.404C44.1761 106.28 44.0683 106.131 43.9159 105.982L41.1853 100H40.9255L38.0648 105.855C37.8047 106.491 37.5447 106.745 37.0249 106.745V106.873ZM29.2234 106.873H32.3445V106.745C31.5641 106.745 31.4342 106.491 31.4342 105.855V103.691C31.5641 103.691 31.6939 103.691 31.6939 103.818L33.9044 105.982C34.1642 106.236 34.1642 106.364 34.1642 106.491C34.1642 106.618 34.0343 106.745 33.3843 106.745V106.873H36.635V106.745C36.2448 106.745 35.9845 106.491 35.5945 106.109L32.4744 103.055L34.4242 101.146C34.9446 100.509 35.4647 100.255 36.1149 100.255V100.127H33.3843V100.255C33.9044 100.255 34.0343 100.382 34.0343 100.637C34.0343 100.764 33.9044 101.018 33.5142 101.527L31.6939 103.182C31.6443 103.23 31.6136 103.279 31.5874 103.321C31.5451 103.388 31.5144 103.436 31.4342 103.436V101.273C31.4342 100.509 31.5641 100.255 32.3445 100.255V100.127H29.2234V100.255C30.1337 100.255 30.2639 100.509 30.2639 101.273V105.855C30.2639 106.491 30.0038 106.745 29.3539 106.745H29.2234V106.873ZM24.6728 107H24.9329C24.9329 106.873 25.063 106.873 25.1932 106.873C25.2884 106.873 25.4184 106.89 25.5833 106.911C25.8688 106.949 26.2588 107 26.7531 107C28.1835 107 28.964 106.364 28.964 105.218C28.964 104.327 28.5737 103.818 27.6634 103.309L26.4931 102.546C25.8432 102.164 25.4532 101.782 25.4532 101.273C25.4532 100.764 25.9733 100.255 26.6233 100.255C27.4034 100.255 28.0537 100.891 28.5737 102.036H28.7036L28.4436 100H28.3134C28.3134 100.127 28.1835 100.255 28.0537 100.255C27.9529 100.255 27.8132 100.217 27.6419 100.17C27.3711 100.096 27.0216 100 26.6233 100C25.3228 100 24.5429 100.764 24.5429 101.655C24.5429 102.546 24.9329 103.055 25.8432 103.564L26.8833 104.2C27.6634 104.582 27.9235 104.964 27.9235 105.473C27.9235 106.236 27.4034 106.745 26.6233 106.745C25.8432 106.745 25.063 106.109 24.5429 104.837H24.2829L24.6728 107ZM17.392 106.873H23.2427L23.7631 105.091H23.5031C23.1126 106.109 22.4626 106.491 21.4228 106.491H20.2524C19.6022 106.491 19.6022 106.364 19.6022 105.855V101.273C19.6022 100.509 19.8625 100.255 20.5125 100.255H20.6423V100.127H17.392V100.255C18.3023 100.255 18.4321 100.509 18.4321 101.273V105.728C18.4321 106.491 18.3023 106.745 17.5221 106.745H17.392V106.873ZM11.151 103.564C11.151 101.527 12.061 100.255 13.6212 100.255C15.0516 100.255 15.9616 101.527 15.9616 103.564C15.9616 105.473 15.0516 106.745 13.6212 106.745C12.061 106.745 11.151 105.473 11.151 103.564ZM9.98064 103.564C9.98064 105.728 11.411 107 13.6212 107C15.7015 107 17.2618 105.728 17.2618 103.564C17.2618 101.273 15.7015 100 13.6212 100C11.411 100 9.98064 101.273 9.98064 103.564ZM6.08033 103.182V101.018C6.08033 100.637 6.08033 100.509 6.60011 100.509C7.77044 100.509 8.29053 100.891 8.29053 101.91C8.29053 102.927 7.64058 103.436 6.47054 103.436C6.24784 103.436 6.15224 103.436 6.1112 103.389C6.08033 103.354 6.08033 103.291 6.08033 103.182ZM4 106.873H7.12019V106.745C6.2102 106.745 6.08033 106.491 6.08033 105.6V103.946C6.08033 103.882 6.08033 103.85 6.09629 103.834C6.11244 103.818 6.1449 103.818 6.2102 103.818H6.34037C7.12019 103.818 7.77044 103.818 8.4204 103.564C9.07095 103.309 9.46086 102.673 9.46086 101.91C9.46086 100.764 8.68074 100.127 6.99063 100.127H4V100.255C4.78043 100.382 4.90999 100.509 4.90999 101.146V105.6C4.90999 106.491 4.78043 106.745 4 106.745V106.873ZM74.8449 40.5417L70.8981 30.4961L70.4815 29.4141C67.7838 27.8203 65.1695 26.6175 62.6775 25.7851C60.5882 25.0882 58.5832 24.6526 56.6847 24.4665L54.1551 30.4961L50.6871 39.1066C49.9693 40.7814 49.73 41.9772 49.73 42.8141C49.73 44.7276 51.1657 45.6844 54.2749 45.6844H54.6336V47H41.0003C42.0521 49.305 43.5781 51.6896 45.6083 54.1315C51.0285 60.6484 60.0183 67.5446 73.1319 74.4068L73.1355 74.4104C83.178 69.7254 92.2202 65.5211 100.588 62.6868C107.342 60.4007 114.32 59.2857 120.56 59.875C126.246 60.4156 133.483 62.2852 136.85 67.338C137.622 68.4981 138.259 69.6506 138.749 70.7918C139.746 73.108 140.154 75.3904 139.948 77.639C139.615 81.3216 137.666 84.8857 133.921 88.2403C133.872 88.2844 133.871 88.2859 133.824 88.3227C124.862 95.3617 114.395 94.9935 104.001 91.8553C95.2654 89.2163 86.2982 84.2198 77.2746 78.6226C62.9024 84.9329 47.2865 91.3484 37.2181 93.3007C32.5173 94.2129 25.6736 94.2241 19.6919 92.625C11.6686 90.4777 5.62651 86.0893 5.03483 77.4586C4.83252 74.5193 5.51043 71.595 7.09871 68.8057C8.99776 65.4685 11.189 63.3774 13.8485 62.0975C16.4818 60.8325 19.542 60.3855 23.2127 60.3368C28.3819 60.2654 33.8283 61.4142 39.4541 63.3476C45.0504 65.2732 50.8299 67.98 56.6882 71.0318C57.0215 71.2046 57.1528 71.6175 56.9804 71.9515C56.8082 72.2859 56.396 72.417 56.0627 72.2445C50.2568 69.2189 44.5371 66.5385 39.016 64.6388C33.5209 62.7467 28.2247 61.6244 23.2316 61.6959C19.748 61.7446 16.8676 62.1538 14.4365 63.3251C12.0317 64.4812 10.0355 66.3995 8.28238 69.4778C6.82907 72.0267 6.21088 74.6922 6.3946 77.3649C6.90402 84.764 11.4812 88.5141 18.3321 90.5115C19.276 90.7853 20.2086 90.9995 21.1263 91.1607C26.0746 92.0317 30.6743 91.3749 35.525 90.5979C43.1015 89.0356 50.408 85.3752 57.2519 81.9465C59.6349 80.7526 61.9619 79.5868 64.2247 78.5475C66.7379 77.3911 69.1915 76.2499 71.585 75.1312C58.7971 68.3402 49.9646 61.4969 44.5596 55.0023C38.353 47.5396 36.6374 40.5006 38.634 34.4831C39.2369 32.6661 40.0422 31.0482 41.0275 29.6441C43.2486 26.4834 46.3837 24.3887 50.1782 23.4915C51.476 23.1857 52.8513 23.0206 54.2936 23.0018L64.2013 0H65.6361L82.0204 40.4222C82.8574 42.4556 83.6944 43.7709 84.5318 44.6081C85.4886 45.4453 86.4454 45.6844 88 45.6844V47H70.6592V45.6844C73.8881 45.5649 75.2037 44.8475 75.2037 42.5751C75.2037 41.9772 75.0839 41.2598 74.8449 40.5417ZM57.234 23.1573C59.1054 23.3738 61.0674 23.8159 63.101 24.4936C65.2324 25.2036 67.4425 26.1715 69.7091 27.4082L62.8854 9.68709L57.234 23.1573ZM53.6992 24.3818C52.5803 24.4325 51.5084 24.5797 50.4892 24.8204C47.0244 25.6388 44.1699 27.5458 42.1435 30.4288C41.2298 31.7315 40.4843 33.2293 39.9261 34.9072C38.7174 38.551 39.0075 42.6322 41 46.9993V45.6844C43.99 45.5649 45.3053 43.7709 47.0991 39.7048L53.6992 24.3818ZM102.474 39.1263V9.20623L132.249 47H133.602V7.87398C133.602 3.14953 134.217 1.93831 140 1.45358V0H124.128V1.45358C129.788 1.93831 130.403 3.14953 130.403 7.87398V33.433L104.32 0H93V1.45358C95.9531 1.69625 97.7983 3.27056 99.398 6.29906V39.1263C99.398 43.8508 98.6595 45.0623 93 45.5464V47H108.749V45.5464C103.089 45.0623 102.474 43.8508 102.474 39.1263ZM100.76 68.179C106.36 65.7502 113.061 63.2801 119.335 62.4428C125.846 61.5757 132.131 62.6494 135.94 68.4379C137.981 71.5423 138.858 74.5945 138.592 77.5189C138.289 80.8485 136.151 84.8733 133.019 87.2266C124.01 93.9944 114.399 93.5709 104.39 90.5489C96.0594 88.0337 87.463 83.3037 78.7919 77.9582C82.5168 76.3143 86.1418 74.6881 89.546 73.161C93.6827 71.3052 97.4932 69.5958 100.76 68.179Z" fill="#707080"/> </g> <defs> <filter id="filter0_d_0_7251" x="0" y="0" width="144" height="115" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_7251"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_7251" result="shape"/> </filter> </defs> </svg> </div> </div> <div class="upcoming-events-featured__date date-column"> <b>7</b> <p>kwi</p> </div> <div class="upcoming-events-featured__footer"> <p class="upcoming-events-featured__footer-upcoming">7 kwietnia o 08:00 - 17:00</p> <h3 class="upcoming-events-featured__title">Ogólnopolska konferencja naukowa „Nowe Techniki Genomowe w Polsce” </h3> <span class="upcoming-events-featured__more button-left"> <svg width="52" height="53" viewBox="0 0 52 53" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.75" width="51" height="51" rx="25.5" stroke="white" class="circle"/> <rect x="6" y="6.25" width="40" height="40" rx="20" fill="white" class="border"/> <path d="M19.6654 26.974H30.8292L28.7377 29.0655C28.1369 29.6663 29.0381 30.5674 29.6388 29.9666L32.8152 26.7853C33.0616 26.5374 33.0616 26.1371 32.8152 25.8892L29.6388 22.7091C29.518 22.5849 29.3516 22.5153 29.1783 22.5166C28.6192 22.5168 28.3384 23.1822 28.7107 23.5827L30.8341 25.7017H19.6326C18.7669 25.7447 18.8152 26.9736 19.6215 26.9751L19.6654 26.974Z" fill="#707080" class="arrow"/> </svg> </span> </div> </a> </div> <div class="col-12 col-lg-6 col-xl-5"> <ul class="upcoming-events-list"> <li class="upcoming-events-list__item no-image"> <div class="upcoming-events-list__image"> <div class="image-placeholder"> <svg width="144" height="115" viewBox="0 0 144 115" fill="none" xmlns="http://www.w3.org/2000/svg"> <g filter="url(#filter0_d_0_7251)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9804 20.9565V6.54173C18.9804 3.63426 19.4623 2.54408 22.9575 2.54408C30.4301 2.54408 34.2865 5.93597 34.2865 12.5978C34.2865 19.3816 29.9475 23.1366 21.6317 23.1366C19.5828 23.1366 18.9804 22.6522 18.9804 20.9565ZM5 47H25.9707V45.6678C19.9446 45.5464 18.9804 44.2139 18.9804 37.9151V26.8919C18.9804 25.6807 19.2212 25.5593 20.1855 25.5593H20.9089C26.2115 25.5593 30.671 25.4383 34.5274 23.8634C39.1075 22.0464 42 17.686 42 12.2347C42 4.36105 36.3355 0 25.368 0H5V1.45358C10.7852 1.69625 11.5081 2.90747 11.5081 7.38956V37.9151C11.5081 44.0931 10.6645 45.6678 5 45.6678V47ZM132.459 106.873H135.579V106.745C134.799 106.745 134.669 106.491 134.669 105.855V103.691C134.819 103.691 134.883 103.691 134.934 103.715C134.972 103.733 135.004 103.764 135.059 103.818L135.06 103.818L137.269 105.982C137.319 106.078 137.368 106.156 137.411 106.223L137.411 106.224L137.411 106.224L137.411 106.224C137.48 106.333 137.53 106.412 137.53 106.491C137.53 106.618 137.269 106.745 136.749 106.745V106.873H140V106.745C139.61 106.745 139.22 106.491 138.83 106.109L135.709 103.055L137.659 101.146C138.31 100.509 138.7 100.255 139.35 100.255V100.127H136.619V100.255C137.14 100.255 137.4 100.382 137.4 100.637C137.4 100.722 137.284 100.863 137.091 101.1C136.994 101.217 136.879 101.358 136.749 101.527L134.929 103.182C134.929 103.309 134.799 103.436 134.669 103.436V101.273C134.669 100.509 134.799 100.255 135.709 100.255V100.127H132.459V100.255C133.369 100.255 133.499 100.509 133.499 101.273V105.855C133.499 106.491 133.239 106.745 132.589 106.745H132.459V106.873ZM124.138 100.255C125.047 100.255 125.178 100.637 125.178 101.782V104.327C125.178 105.218 125.438 105.855 125.828 106.364C126.348 106.873 127.128 107 128.168 107C130.118 107 131.029 106.109 131.029 104.2V101.4C131.029 100.637 131.289 100.255 132.069 100.255V100.127H129.599V100.255C130.379 100.255 130.509 100.509 130.509 101.4V104.327C130.509 105.855 129.728 106.618 128.298 106.618C126.998 106.618 126.348 105.855 126.348 104.327V101.4C126.348 100.509 126.478 100.255 127.258 100.255V100.127H124.138V100.255ZM119.067 104.327H121.667L120.367 101.4L119.067 104.327ZM116.726 106.873V106.745C117.247 106.745 117.507 106.491 117.767 105.855L120.627 100H120.887L123.618 105.982C123.748 106.236 123.877 106.491 124.008 106.618C124.268 106.745 124.398 106.745 124.658 106.745V106.873H121.667V106.745C122.317 106.745 122.448 106.618 122.448 106.236V105.982L121.797 104.709H118.807L118.287 105.728C118.287 105.876 118.242 106.025 118.205 106.149L118.205 106.149L118.205 106.149L118.205 106.149L118.205 106.149C118.179 106.236 118.157 106.311 118.157 106.364C118.157 106.618 118.417 106.745 118.937 106.745H119.067V106.873H116.726ZM111.136 105.728V101.4L115.816 106.873H116.077V101.273C116.077 100.509 116.206 100.382 116.987 100.255V100.127H114.516V100.255C115.427 100.382 115.556 100.509 115.556 101.273V104.964L111.396 100.127H109.576V100.255C110.095 100.382 110.356 100.509 110.616 101.018V105.728C110.616 106.491 110.485 106.618 109.576 106.745V106.873H112.176V106.745C111.266 106.618 111.136 106.491 111.136 105.728ZM100.994 104.327L102.294 101.4L103.595 104.327H100.994ZM98.6541 106.873H100.994V106.745H100.864C100.344 106.745 100.084 106.618 100.084 106.364C100.084 106.311 100.106 106.236 100.133 106.149L100.133 106.149L100.133 106.149L100.133 106.149C100.17 106.025 100.214 105.876 100.214 105.728L100.734 104.709H103.725L104.375 105.982V106.236C104.375 106.618 104.244 106.745 103.595 106.745V106.873H106.585V106.745C106.325 106.745 106.195 106.745 105.935 106.618C105.805 106.491 105.675 106.236 105.545 105.982L102.815 100H102.554L99.6939 105.855C99.4342 106.491 99.1741 106.745 98.6541 106.745V106.873ZM95.1431 106.873H98.3937V106.745C97.4837 106.745 97.3539 106.491 97.3539 105.855V101.273C97.3539 100.509 97.4837 100.382 98.3937 100.255V100.127H95.1431V100.255C95.9238 100.255 96.1835 100.509 96.1835 101.273V105.855C96.1835 106.491 96.0536 106.745 95.1431 106.745V106.873ZM85.6517 106.873H87.9921V106.745C87.2123 106.745 87.0824 106.491 87.0824 105.6V101.273L89.6825 106.873H89.9428L92.5433 101.273V105.728C92.5433 106.491 92.4131 106.745 91.5031 106.745V106.873H94.6233V106.745C93.7133 106.618 93.5834 106.491 93.5834 105.728V101.273C93.5834 100.509 93.7133 100.255 94.6233 100.255V100.127H92.5433L90.0724 105.345L87.6022 100.127H85.6517V100.255C86.4321 100.382 86.5623 100.637 86.5623 101.4V105.6C86.5623 106.364 86.302 106.745 85.6517 106.745V106.873ZM78.5007 106.873V106.745C79.2812 106.745 79.411 106.491 79.411 105.855V101.273C79.411 100.509 79.2812 100.382 78.5007 100.255V100.127H84.482V101.655H84.3518C84.0921 100.637 83.8317 100.509 82.7916 100.509H81.1014C80.5811 100.509 80.5811 100.637 80.5811 101.018V102.8C80.5811 103.055 80.5811 103.182 80.9713 103.182H82.2712C83.3116 103.182 83.5717 103.055 83.7019 102.164H83.8317V104.582H83.7019C83.5717 103.691 83.3116 103.564 82.2712 103.564H80.8414C80.7102 103.564 80.6451 103.564 80.6128 103.596C80.5811 103.628 80.5811 103.692 80.5811 103.818V105.855C80.5811 106.364 80.7112 106.491 81.1014 106.491H82.6617C83.9616 106.491 84.482 106.236 84.8719 105.218H85.1319L84.6115 106.873H78.5007ZM73.3002 105.728V101.273C73.3002 100.637 73.3002 100.509 73.9502 100.509C76.1607 100.509 77.3307 101.527 77.3307 103.564C77.3307 105.473 76.1607 106.618 74.0803 106.618C73.3002 106.618 73.3002 106.491 73.3002 105.728ZM71.09 106.873H74.0803C75.3805 106.873 76.2908 106.873 77.071 106.236C78.1108 105.6 78.5007 104.582 78.5007 103.436C78.5007 101.4 77.071 100.127 74.4702 100.127H71.09V100.255C71.8701 100.255 72.1299 100.509 72.1299 101.273V105.855C72.1299 106.491 71.8701 106.745 71.09 106.745V106.873ZM65.3688 104.327L66.6693 101.4L67.9695 104.327H65.3688ZM63.0287 106.873H65.3688V106.745H65.2389C64.7188 106.745 64.4588 106.618 64.4588 106.364C64.4588 106.236 64.589 105.982 64.7188 105.728L65.2389 104.709H68.2296L68.7493 105.982C68.7493 106.109 68.8798 106.236 68.8798 106.236C68.8798 106.618 68.6195 106.745 68.0994 106.745V106.873H70.9598V106.745C70.6998 106.745 70.5696 106.745 70.4398 106.618C70.3096 106.491 70.0498 106.236 69.9197 105.982L67.1891 100H66.929L64.0689 105.855C63.8086 106.491 63.5485 106.745 63.0287 106.745V106.873ZM55.4875 106.873H58.608V106.745C57.6977 106.745 57.5679 106.491 57.5679 105.855V103.691H57.6977C57.7534 103.691 57.7852 103.691 57.8136 103.701C57.8516 103.714 57.8834 103.745 57.9578 103.818L60.168 105.982C60.2177 106.079 60.2673 106.157 60.3097 106.224L60.3097 106.224C60.3786 106.333 60.4283 106.412 60.4283 106.491C60.4283 106.618 60.168 106.745 59.6482 106.745V106.873H62.8986V106.745C62.5086 106.745 62.1187 106.491 61.7288 106.109L58.7382 103.055L60.5585 101.146C61.2084 100.509 61.7288 100.255 62.2486 100.255V100.127H59.5183V100.255C60.0381 100.255 60.2985 100.382 60.2985 100.637C60.2985 100.721 60.183 100.863 59.9908 101.098L59.9906 101.098L59.9896 101.099C59.8933 101.217 59.7779 101.358 59.6482 101.527L57.9578 103.182C57.8279 103.309 57.6977 103.436 57.5679 103.436V101.273C57.5679 100.509 57.6977 100.255 58.608 100.255V100.127H55.4875V100.255C56.2677 100.255 56.3975 100.509 56.3975 101.273V105.855C56.3975 106.491 56.2677 106.745 55.4875 106.745V106.873ZM49.6368 104.327L51.0671 101.4L52.3673 104.327H49.6368ZM47.2964 106.873H49.6368V106.745C49.1164 106.745 48.8563 106.618 48.8563 106.364C48.8563 106.236 48.8563 105.982 48.9868 105.728L49.5069 104.709H52.4969L53.0173 105.982C53.1472 106.109 53.1472 106.236 53.1472 106.236C53.1472 106.618 52.8874 106.745 52.3673 106.745V106.873H55.2275V106.745C54.9675 106.745 54.8376 106.745 54.7071 106.618C54.5775 106.491 54.4474 106.236 54.3172 105.982L51.4571 100H51.197L48.3366 105.855C48.0765 106.491 47.8165 106.745 47.2964 106.745V106.873ZM39.365 104.327L40.7954 101.4L41.9654 104.327H39.365ZM37.0249 106.873H39.365V106.745H39.2351C38.715 106.745 38.5849 106.618 38.5849 106.364C38.5849 106.236 38.5849 105.982 38.715 105.728L39.2351 104.709H42.2257L42.7455 105.982C42.8757 106.109 42.8757 106.236 42.8757 106.236C42.8757 106.618 42.6157 106.745 42.0956 106.745V106.873H44.956V106.745C44.696 106.745 44.5658 106.745 44.4359 106.618C44.3822 106.566 44.3284 106.491 44.2654 106.404C44.1761 106.28 44.0683 106.131 43.9159 105.982L41.1853 100H40.9255L38.0648 105.855C37.8047 106.491 37.5447 106.745 37.0249 106.745V106.873ZM29.2234 106.873H32.3445V106.745C31.5641 106.745 31.4342 106.491 31.4342 105.855V103.691C31.5641 103.691 31.6939 103.691 31.6939 103.818L33.9044 105.982C34.1642 106.236 34.1642 106.364 34.1642 106.491C34.1642 106.618 34.0343 106.745 33.3843 106.745V106.873H36.635V106.745C36.2448 106.745 35.9845 106.491 35.5945 106.109L32.4744 103.055L34.4242 101.146C34.9446 100.509 35.4647 100.255 36.1149 100.255V100.127H33.3843V100.255C33.9044 100.255 34.0343 100.382 34.0343 100.637C34.0343 100.764 33.9044 101.018 33.5142 101.527L31.6939 103.182C31.6443 103.23 31.6136 103.279 31.5874 103.321C31.5451 103.388 31.5144 103.436 31.4342 103.436V101.273C31.4342 100.509 31.5641 100.255 32.3445 100.255V100.127H29.2234V100.255C30.1337 100.255 30.2639 100.509 30.2639 101.273V105.855C30.2639 106.491 30.0038 106.745 29.3539 106.745H29.2234V106.873ZM24.6728 107H24.9329C24.9329 106.873 25.063 106.873 25.1932 106.873C25.2884 106.873 25.4184 106.89 25.5833 106.911C25.8688 106.949 26.2588 107 26.7531 107C28.1835 107 28.964 106.364 28.964 105.218C28.964 104.327 28.5737 103.818 27.6634 103.309L26.4931 102.546C25.8432 102.164 25.4532 101.782 25.4532 101.273C25.4532 100.764 25.9733 100.255 26.6233 100.255C27.4034 100.255 28.0537 100.891 28.5737 102.036H28.7036L28.4436 100H28.3134C28.3134 100.127 28.1835 100.255 28.0537 100.255C27.9529 100.255 27.8132 100.217 27.6419 100.17C27.3711 100.096 27.0216 100 26.6233 100C25.3228 100 24.5429 100.764 24.5429 101.655C24.5429 102.546 24.9329 103.055 25.8432 103.564L26.8833 104.2C27.6634 104.582 27.9235 104.964 27.9235 105.473C27.9235 106.236 27.4034 106.745 26.6233 106.745C25.8432 106.745 25.063 106.109 24.5429 104.837H24.2829L24.6728 107ZM17.392 106.873H23.2427L23.7631 105.091H23.5031C23.1126 106.109 22.4626 106.491 21.4228 106.491H20.2524C19.6022 106.491 19.6022 106.364 19.6022 105.855V101.273C19.6022 100.509 19.8625 100.255 20.5125 100.255H20.6423V100.127H17.392V100.255C18.3023 100.255 18.4321 100.509 18.4321 101.273V105.728C18.4321 106.491 18.3023 106.745 17.5221 106.745H17.392V106.873ZM11.151 103.564C11.151 101.527 12.061 100.255 13.6212 100.255C15.0516 100.255 15.9616 101.527 15.9616 103.564C15.9616 105.473 15.0516 106.745 13.6212 106.745C12.061 106.745 11.151 105.473 11.151 103.564ZM9.98064 103.564C9.98064 105.728 11.411 107 13.6212 107C15.7015 107 17.2618 105.728 17.2618 103.564C17.2618 101.273 15.7015 100 13.6212 100C11.411 100 9.98064 101.273 9.98064 103.564ZM6.08033 103.182V101.018C6.08033 100.637 6.08033 100.509 6.60011 100.509C7.77044 100.509 8.29053 100.891 8.29053 101.91C8.29053 102.927 7.64058 103.436 6.47054 103.436C6.24784 103.436 6.15224 103.436 6.1112 103.389C6.08033 103.354 6.08033 103.291 6.08033 103.182ZM4 106.873H7.12019V106.745C6.2102 106.745 6.08033 106.491 6.08033 105.6V103.946C6.08033 103.882 6.08033 103.85 6.09629 103.834C6.11244 103.818 6.1449 103.818 6.2102 103.818H6.34037C7.12019 103.818 7.77044 103.818 8.4204 103.564C9.07095 103.309 9.46086 102.673 9.46086 101.91C9.46086 100.764 8.68074 100.127 6.99063 100.127H4V100.255C4.78043 100.382 4.90999 100.509 4.90999 101.146V105.6C4.90999 106.491 4.78043 106.745 4 106.745V106.873ZM74.8449 40.5417L70.8981 30.4961L70.4815 29.4141C67.7838 27.8203 65.1695 26.6175 62.6775 25.7851C60.5882 25.0882 58.5832 24.6526 56.6847 24.4665L54.1551 30.4961L50.6871 39.1066C49.9693 40.7814 49.73 41.9772 49.73 42.8141C49.73 44.7276 51.1657 45.6844 54.2749 45.6844H54.6336V47H41.0003C42.0521 49.305 43.5781 51.6896 45.6083 54.1315C51.0285 60.6484 60.0183 67.5446 73.1319 74.4068L73.1355 74.4104C83.178 69.7254 92.2202 65.5211 100.588 62.6868C107.342 60.4007 114.32 59.2857 120.56 59.875C126.246 60.4156 133.483 62.2852 136.85 67.338C137.622 68.4981 138.259 69.6506 138.749 70.7918C139.746 73.108 140.154 75.3904 139.948 77.639C139.615 81.3216 137.666 84.8857 133.921 88.2403C133.872 88.2844 133.871 88.2859 133.824 88.3227C124.862 95.3617 114.395 94.9935 104.001 91.8553C95.2654 89.2163 86.2982 84.2198 77.2746 78.6226C62.9024 84.9329 47.2865 91.3484 37.2181 93.3007C32.5173 94.2129 25.6736 94.2241 19.6919 92.625C11.6686 90.4777 5.62651 86.0893 5.03483 77.4586C4.83252 74.5193 5.51043 71.595 7.09871 68.8057C8.99776 65.4685 11.189 63.3774 13.8485 62.0975C16.4818 60.8325 19.542 60.3855 23.2127 60.3368C28.3819 60.2654 33.8283 61.4142 39.4541 63.3476C45.0504 65.2732 50.8299 67.98 56.6882 71.0318C57.0215 71.2046 57.1528 71.6175 56.9804 71.9515C56.8082 72.2859 56.396 72.417 56.0627 72.2445C50.2568 69.2189 44.5371 66.5385 39.016 64.6388C33.5209 62.7467 28.2247 61.6244 23.2316 61.6959C19.748 61.7446 16.8676 62.1538 14.4365 63.3251C12.0317 64.4812 10.0355 66.3995 8.28238 69.4778C6.82907 72.0267 6.21088 74.6922 6.3946 77.3649C6.90402 84.764 11.4812 88.5141 18.3321 90.5115C19.276 90.7853 20.2086 90.9995 21.1263 91.1607C26.0746 92.0317 30.6743 91.3749 35.525 90.5979C43.1015 89.0356 50.408 85.3752 57.2519 81.9465C59.6349 80.7526 61.9619 79.5868 64.2247 78.5475C66.7379 77.3911 69.1915 76.2499 71.585 75.1312C58.7971 68.3402 49.9646 61.4969 44.5596 55.0023C38.353 47.5396 36.6374 40.5006 38.634 34.4831C39.2369 32.6661 40.0422 31.0482 41.0275 29.6441C43.2486 26.4834 46.3837 24.3887 50.1782 23.4915C51.476 23.1857 52.8513 23.0206 54.2936 23.0018L64.2013 0H65.6361L82.0204 40.4222C82.8574 42.4556 83.6944 43.7709 84.5318 44.6081C85.4886 45.4453 86.4454 45.6844 88 45.6844V47H70.6592V45.6844C73.8881 45.5649 75.2037 44.8475 75.2037 42.5751C75.2037 41.9772 75.0839 41.2598 74.8449 40.5417ZM57.234 23.1573C59.1054 23.3738 61.0674 23.8159 63.101 24.4936C65.2324 25.2036 67.4425 26.1715 69.7091 27.4082L62.8854 9.68709L57.234 23.1573ZM53.6992 24.3818C52.5803 24.4325 51.5084 24.5797 50.4892 24.8204C47.0244 25.6388 44.1699 27.5458 42.1435 30.4288C41.2298 31.7315 40.4843 33.2293 39.9261 34.9072C38.7174 38.551 39.0075 42.6322 41 46.9993V45.6844C43.99 45.5649 45.3053 43.7709 47.0991 39.7048L53.6992 24.3818ZM102.474 39.1263V9.20623L132.249 47H133.602V7.87398C133.602 3.14953 134.217 1.93831 140 1.45358V0H124.128V1.45358C129.788 1.93831 130.403 3.14953 130.403 7.87398V33.433L104.32 0H93V1.45358C95.9531 1.69625 97.7983 3.27056 99.398 6.29906V39.1263C99.398 43.8508 98.6595 45.0623 93 45.5464V47H108.749V45.5464C103.089 45.0623 102.474 43.8508 102.474 39.1263ZM100.76 68.179C106.36 65.7502 113.061 63.2801 119.335 62.4428C125.846 61.5757 132.131 62.6494 135.94 68.4379C137.981 71.5423 138.858 74.5945 138.592 77.5189C138.289 80.8485 136.151 84.8733 133.019 87.2266C124.01 93.9944 114.399 93.5709 104.39 90.5489C96.0594 88.0337 87.463 83.3037 78.7919 77.9582C82.5168 76.3143 86.1418 74.6881 89.546 73.161C93.6827 71.3052 97.4932 69.5958 100.76 68.179Z" fill="#707080"/> </g> <defs> <filter id="filter0_d_0_7251" x="0" y="0" width="144" height="115" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_7251"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_7251" result="shape"/> </filter> </defs> </svg> </div> </div> <a class="upcoming-events-list__link" href="https://pan.pl/wydarzenie/ifis-seminarium-fenomenologiczne-pt-czytanie-derridy/"> <div class="upcoming-events-list__box"> <div class="upcoming-events-list__date date-column"> <b>7</b> <p>kwi</p> </div> <div class="upcoming-events-list__content"> <p class="upcoming-events-list__upcoming">7 kwietnia o 18:30 - 20:30</p> <h3 class="upcoming-events-list__title">IFiS PAN: seminarium fenomenologiczne „Czytanie Derridy”</h3> </div> </div> <span class="upcoming-events-list__more button-left"> <svg width="52" height="53" viewBox="0 0 52 53" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.75" width="51" height="51" rx="25.5" stroke="white" class="circle"/> <rect x="6" y="6.25" width="40" height="40" rx="20" fill="white" class="border"/> <path d="M19.6654 26.974H30.8292L28.7377 29.0655C28.1369 29.6663 29.0381 30.5674 29.6388 29.9666L32.8152 26.7853C33.0616 26.5374 33.0616 26.1371 32.8152 25.8892L29.6388 22.7091C29.518 22.5849 29.3516 22.5153 29.1783 22.5166C28.6192 22.5168 28.3384 23.1822 28.7107 23.5827L30.8341 25.7017H19.6326C18.7669 25.7447 18.8152 26.9736 19.6215 26.9751L19.6654 26.974Z" fill="#707080" class="arrow"/> </svg> </span> </a> </li> <li class="upcoming-events-list__item "> <div class="upcoming-events-list__image"> <img src="https://pan.pl/app/uploads/2025/03/PFNiS2025_1190x440_jpg.png" alt="XXVIII Poznański Festiwal Nauki i Sztuki" class="upcoming-events-list__thumbnail"> </div> <a class="upcoming-events-list__link" href="https://pan.pl/wydarzenie/xxviii-poznanski-festiwal-nauki-i-sztuki/"> <div class="upcoming-events-list__box"> <div class="upcoming-events-list__date date-column"> <b>9</b> <p>kwi</p> </div> <div class="upcoming-events-list__content"> <p class="upcoming-events-list__upcoming">9 kwietnia o 09:00 - 15:00</p> <h3 class="upcoming-events-list__title">XXVIII Poznański Festiwal Nauki i Sztuki</h3> </div> </div> <span class="upcoming-events-list__more button-left"> <svg width="52" height="53" viewBox="0 0 52 53" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.75" width="51" height="51" rx="25.5" stroke="white" class="circle"/> <rect x="6" y="6.25" width="40" height="40" rx="20" fill="white" class="border"/> <path d="M19.6654 26.974H30.8292L28.7377 29.0655C28.1369 29.6663 29.0381 30.5674 29.6388 29.9666L32.8152 26.7853C33.0616 26.5374 33.0616 26.1371 32.8152 25.8892L29.6388 22.7091C29.518 22.5849 29.3516 22.5153 29.1783 22.5166C28.6192 22.5168 28.3384 23.1822 28.7107 23.5827L30.8341 25.7017H19.6326C18.7669 25.7447 18.8152 26.9736 19.6215 26.9751L19.6654 26.974Z" fill="#707080" class="arrow"/> </svg> </span> </a> </li> <li class="upcoming-events-list__item no-image"> <div class="upcoming-events-list__image"> <div class="image-placeholder"> <svg width="144" height="115" viewBox="0 0 144 115" fill="none" xmlns="http://www.w3.org/2000/svg"> <g filter="url(#filter0_d_0_7251)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9804 20.9565V6.54173C18.9804 3.63426 19.4623 2.54408 22.9575 2.54408C30.4301 2.54408 34.2865 5.93597 34.2865 12.5978C34.2865 19.3816 29.9475 23.1366 21.6317 23.1366C19.5828 23.1366 18.9804 22.6522 18.9804 20.9565ZM5 47H25.9707V45.6678C19.9446 45.5464 18.9804 44.2139 18.9804 37.9151V26.8919C18.9804 25.6807 19.2212 25.5593 20.1855 25.5593H20.9089C26.2115 25.5593 30.671 25.4383 34.5274 23.8634C39.1075 22.0464 42 17.686 42 12.2347C42 4.36105 36.3355 0 25.368 0H5V1.45358C10.7852 1.69625 11.5081 2.90747 11.5081 7.38956V37.9151C11.5081 44.0931 10.6645 45.6678 5 45.6678V47ZM132.459 106.873H135.579V106.745C134.799 106.745 134.669 106.491 134.669 105.855V103.691C134.819 103.691 134.883 103.691 134.934 103.715C134.972 103.733 135.004 103.764 135.059 103.818L135.06 103.818L137.269 105.982C137.319 106.078 137.368 106.156 137.411 106.223L137.411 106.224L137.411 106.224L137.411 106.224C137.48 106.333 137.53 106.412 137.53 106.491C137.53 106.618 137.269 106.745 136.749 106.745V106.873H140V106.745C139.61 106.745 139.22 106.491 138.83 106.109L135.709 103.055L137.659 101.146C138.31 100.509 138.7 100.255 139.35 100.255V100.127H136.619V100.255C137.14 100.255 137.4 100.382 137.4 100.637C137.4 100.722 137.284 100.863 137.091 101.1C136.994 101.217 136.879 101.358 136.749 101.527L134.929 103.182C134.929 103.309 134.799 103.436 134.669 103.436V101.273C134.669 100.509 134.799 100.255 135.709 100.255V100.127H132.459V100.255C133.369 100.255 133.499 100.509 133.499 101.273V105.855C133.499 106.491 133.239 106.745 132.589 106.745H132.459V106.873ZM124.138 100.255C125.047 100.255 125.178 100.637 125.178 101.782V104.327C125.178 105.218 125.438 105.855 125.828 106.364C126.348 106.873 127.128 107 128.168 107C130.118 107 131.029 106.109 131.029 104.2V101.4C131.029 100.637 131.289 100.255 132.069 100.255V100.127H129.599V100.255C130.379 100.255 130.509 100.509 130.509 101.4V104.327C130.509 105.855 129.728 106.618 128.298 106.618C126.998 106.618 126.348 105.855 126.348 104.327V101.4C126.348 100.509 126.478 100.255 127.258 100.255V100.127H124.138V100.255ZM119.067 104.327H121.667L120.367 101.4L119.067 104.327ZM116.726 106.873V106.745C117.247 106.745 117.507 106.491 117.767 105.855L120.627 100H120.887L123.618 105.982C123.748 106.236 123.877 106.491 124.008 106.618C124.268 106.745 124.398 106.745 124.658 106.745V106.873H121.667V106.745C122.317 106.745 122.448 106.618 122.448 106.236V105.982L121.797 104.709H118.807L118.287 105.728C118.287 105.876 118.242 106.025 118.205 106.149L118.205 106.149L118.205 106.149L118.205 106.149L118.205 106.149C118.179 106.236 118.157 106.311 118.157 106.364C118.157 106.618 118.417 106.745 118.937 106.745H119.067V106.873H116.726ZM111.136 105.728V101.4L115.816 106.873H116.077V101.273C116.077 100.509 116.206 100.382 116.987 100.255V100.127H114.516V100.255C115.427 100.382 115.556 100.509 115.556 101.273V104.964L111.396 100.127H109.576V100.255C110.095 100.382 110.356 100.509 110.616 101.018V105.728C110.616 106.491 110.485 106.618 109.576 106.745V106.873H112.176V106.745C111.266 106.618 111.136 106.491 111.136 105.728ZM100.994 104.327L102.294 101.4L103.595 104.327H100.994ZM98.6541 106.873H100.994V106.745H100.864C100.344 106.745 100.084 106.618 100.084 106.364C100.084 106.311 100.106 106.236 100.133 106.149L100.133 106.149L100.133 106.149L100.133 106.149C100.17 106.025 100.214 105.876 100.214 105.728L100.734 104.709H103.725L104.375 105.982V106.236C104.375 106.618 104.244 106.745 103.595 106.745V106.873H106.585V106.745C106.325 106.745 106.195 106.745 105.935 106.618C105.805 106.491 105.675 106.236 105.545 105.982L102.815 100H102.554L99.6939 105.855C99.4342 106.491 99.1741 106.745 98.6541 106.745V106.873ZM95.1431 106.873H98.3937V106.745C97.4837 106.745 97.3539 106.491 97.3539 105.855V101.273C97.3539 100.509 97.4837 100.382 98.3937 100.255V100.127H95.1431V100.255C95.9238 100.255 96.1835 100.509 96.1835 101.273V105.855C96.1835 106.491 96.0536 106.745 95.1431 106.745V106.873ZM85.6517 106.873H87.9921V106.745C87.2123 106.745 87.0824 106.491 87.0824 105.6V101.273L89.6825 106.873H89.9428L92.5433 101.273V105.728C92.5433 106.491 92.4131 106.745 91.5031 106.745V106.873H94.6233V106.745C93.7133 106.618 93.5834 106.491 93.5834 105.728V101.273C93.5834 100.509 93.7133 100.255 94.6233 100.255V100.127H92.5433L90.0724 105.345L87.6022 100.127H85.6517V100.255C86.4321 100.382 86.5623 100.637 86.5623 101.4V105.6C86.5623 106.364 86.302 106.745 85.6517 106.745V106.873ZM78.5007 106.873V106.745C79.2812 106.745 79.411 106.491 79.411 105.855V101.273C79.411 100.509 79.2812 100.382 78.5007 100.255V100.127H84.482V101.655H84.3518C84.0921 100.637 83.8317 100.509 82.7916 100.509H81.1014C80.5811 100.509 80.5811 100.637 80.5811 101.018V102.8C80.5811 103.055 80.5811 103.182 80.9713 103.182H82.2712C83.3116 103.182 83.5717 103.055 83.7019 102.164H83.8317V104.582H83.7019C83.5717 103.691 83.3116 103.564 82.2712 103.564H80.8414C80.7102 103.564 80.6451 103.564 80.6128 103.596C80.5811 103.628 80.5811 103.692 80.5811 103.818V105.855C80.5811 106.364 80.7112 106.491 81.1014 106.491H82.6617C83.9616 106.491 84.482 106.236 84.8719 105.218H85.1319L84.6115 106.873H78.5007ZM73.3002 105.728V101.273C73.3002 100.637 73.3002 100.509 73.9502 100.509C76.1607 100.509 77.3307 101.527 77.3307 103.564C77.3307 105.473 76.1607 106.618 74.0803 106.618C73.3002 106.618 73.3002 106.491 73.3002 105.728ZM71.09 106.873H74.0803C75.3805 106.873 76.2908 106.873 77.071 106.236C78.1108 105.6 78.5007 104.582 78.5007 103.436C78.5007 101.4 77.071 100.127 74.4702 100.127H71.09V100.255C71.8701 100.255 72.1299 100.509 72.1299 101.273V105.855C72.1299 106.491 71.8701 106.745 71.09 106.745V106.873ZM65.3688 104.327L66.6693 101.4L67.9695 104.327H65.3688ZM63.0287 106.873H65.3688V106.745H65.2389C64.7188 106.745 64.4588 106.618 64.4588 106.364C64.4588 106.236 64.589 105.982 64.7188 105.728L65.2389 104.709H68.2296L68.7493 105.982C68.7493 106.109 68.8798 106.236 68.8798 106.236C68.8798 106.618 68.6195 106.745 68.0994 106.745V106.873H70.9598V106.745C70.6998 106.745 70.5696 106.745 70.4398 106.618C70.3096 106.491 70.0498 106.236 69.9197 105.982L67.1891 100H66.929L64.0689 105.855C63.8086 106.491 63.5485 106.745 63.0287 106.745V106.873ZM55.4875 106.873H58.608V106.745C57.6977 106.745 57.5679 106.491 57.5679 105.855V103.691H57.6977C57.7534 103.691 57.7852 103.691 57.8136 103.701C57.8516 103.714 57.8834 103.745 57.9578 103.818L60.168 105.982C60.2177 106.079 60.2673 106.157 60.3097 106.224L60.3097 106.224C60.3786 106.333 60.4283 106.412 60.4283 106.491C60.4283 106.618 60.168 106.745 59.6482 106.745V106.873H62.8986V106.745C62.5086 106.745 62.1187 106.491 61.7288 106.109L58.7382 103.055L60.5585 101.146C61.2084 100.509 61.7288 100.255 62.2486 100.255V100.127H59.5183V100.255C60.0381 100.255 60.2985 100.382 60.2985 100.637C60.2985 100.721 60.183 100.863 59.9908 101.098L59.9906 101.098L59.9896 101.099C59.8933 101.217 59.7779 101.358 59.6482 101.527L57.9578 103.182C57.8279 103.309 57.6977 103.436 57.5679 103.436V101.273C57.5679 100.509 57.6977 100.255 58.608 100.255V100.127H55.4875V100.255C56.2677 100.255 56.3975 100.509 56.3975 101.273V105.855C56.3975 106.491 56.2677 106.745 55.4875 106.745V106.873ZM49.6368 104.327L51.0671 101.4L52.3673 104.327H49.6368ZM47.2964 106.873H49.6368V106.745C49.1164 106.745 48.8563 106.618 48.8563 106.364C48.8563 106.236 48.8563 105.982 48.9868 105.728L49.5069 104.709H52.4969L53.0173 105.982C53.1472 106.109 53.1472 106.236 53.1472 106.236C53.1472 106.618 52.8874 106.745 52.3673 106.745V106.873H55.2275V106.745C54.9675 106.745 54.8376 106.745 54.7071 106.618C54.5775 106.491 54.4474 106.236 54.3172 105.982L51.4571 100H51.197L48.3366 105.855C48.0765 106.491 47.8165 106.745 47.2964 106.745V106.873ZM39.365 104.327L40.7954 101.4L41.9654 104.327H39.365ZM37.0249 106.873H39.365V106.745H39.2351C38.715 106.745 38.5849 106.618 38.5849 106.364C38.5849 106.236 38.5849 105.982 38.715 105.728L39.2351 104.709H42.2257L42.7455 105.982C42.8757 106.109 42.8757 106.236 42.8757 106.236C42.8757 106.618 42.6157 106.745 42.0956 106.745V106.873H44.956V106.745C44.696 106.745 44.5658 106.745 44.4359 106.618C44.3822 106.566 44.3284 106.491 44.2654 106.404C44.1761 106.28 44.0683 106.131 43.9159 105.982L41.1853 100H40.9255L38.0648 105.855C37.8047 106.491 37.5447 106.745 37.0249 106.745V106.873ZM29.2234 106.873H32.3445V106.745C31.5641 106.745 31.4342 106.491 31.4342 105.855V103.691C31.5641 103.691 31.6939 103.691 31.6939 103.818L33.9044 105.982C34.1642 106.236 34.1642 106.364 34.1642 106.491C34.1642 106.618 34.0343 106.745 33.3843 106.745V106.873H36.635V106.745C36.2448 106.745 35.9845 106.491 35.5945 106.109L32.4744 103.055L34.4242 101.146C34.9446 100.509 35.4647 100.255 36.1149 100.255V100.127H33.3843V100.255C33.9044 100.255 34.0343 100.382 34.0343 100.637C34.0343 100.764 33.9044 101.018 33.5142 101.527L31.6939 103.182C31.6443 103.23 31.6136 103.279 31.5874 103.321C31.5451 103.388 31.5144 103.436 31.4342 103.436V101.273C31.4342 100.509 31.5641 100.255 32.3445 100.255V100.127H29.2234V100.255C30.1337 100.255 30.2639 100.509 30.2639 101.273V105.855C30.2639 106.491 30.0038 106.745 29.3539 106.745H29.2234V106.873ZM24.6728 107H24.9329C24.9329 106.873 25.063 106.873 25.1932 106.873C25.2884 106.873 25.4184 106.89 25.5833 106.911C25.8688 106.949 26.2588 107 26.7531 107C28.1835 107 28.964 106.364 28.964 105.218C28.964 104.327 28.5737 103.818 27.6634 103.309L26.4931 102.546C25.8432 102.164 25.4532 101.782 25.4532 101.273C25.4532 100.764 25.9733 100.255 26.6233 100.255C27.4034 100.255 28.0537 100.891 28.5737 102.036H28.7036L28.4436 100H28.3134C28.3134 100.127 28.1835 100.255 28.0537 100.255C27.9529 100.255 27.8132 100.217 27.6419 100.17C27.3711 100.096 27.0216 100 26.6233 100C25.3228 100 24.5429 100.764 24.5429 101.655C24.5429 102.546 24.9329 103.055 25.8432 103.564L26.8833 104.2C27.6634 104.582 27.9235 104.964 27.9235 105.473C27.9235 106.236 27.4034 106.745 26.6233 106.745C25.8432 106.745 25.063 106.109 24.5429 104.837H24.2829L24.6728 107ZM17.392 106.873H23.2427L23.7631 105.091H23.5031C23.1126 106.109 22.4626 106.491 21.4228 106.491H20.2524C19.6022 106.491 19.6022 106.364 19.6022 105.855V101.273C19.6022 100.509 19.8625 100.255 20.5125 100.255H20.6423V100.127H17.392V100.255C18.3023 100.255 18.4321 100.509 18.4321 101.273V105.728C18.4321 106.491 18.3023 106.745 17.5221 106.745H17.392V106.873ZM11.151 103.564C11.151 101.527 12.061 100.255 13.6212 100.255C15.0516 100.255 15.9616 101.527 15.9616 103.564C15.9616 105.473 15.0516 106.745 13.6212 106.745C12.061 106.745 11.151 105.473 11.151 103.564ZM9.98064 103.564C9.98064 105.728 11.411 107 13.6212 107C15.7015 107 17.2618 105.728 17.2618 103.564C17.2618 101.273 15.7015 100 13.6212 100C11.411 100 9.98064 101.273 9.98064 103.564ZM6.08033 103.182V101.018C6.08033 100.637 6.08033 100.509 6.60011 100.509C7.77044 100.509 8.29053 100.891 8.29053 101.91C8.29053 102.927 7.64058 103.436 6.47054 103.436C6.24784 103.436 6.15224 103.436 6.1112 103.389C6.08033 103.354 6.08033 103.291 6.08033 103.182ZM4 106.873H7.12019V106.745C6.2102 106.745 6.08033 106.491 6.08033 105.6V103.946C6.08033 103.882 6.08033 103.85 6.09629 103.834C6.11244 103.818 6.1449 103.818 6.2102 103.818H6.34037C7.12019 103.818 7.77044 103.818 8.4204 103.564C9.07095 103.309 9.46086 102.673 9.46086 101.91C9.46086 100.764 8.68074 100.127 6.99063 100.127H4V100.255C4.78043 100.382 4.90999 100.509 4.90999 101.146V105.6C4.90999 106.491 4.78043 106.745 4 106.745V106.873ZM74.8449 40.5417L70.8981 30.4961L70.4815 29.4141C67.7838 27.8203 65.1695 26.6175 62.6775 25.7851C60.5882 25.0882 58.5832 24.6526 56.6847 24.4665L54.1551 30.4961L50.6871 39.1066C49.9693 40.7814 49.73 41.9772 49.73 42.8141C49.73 44.7276 51.1657 45.6844 54.2749 45.6844H54.6336V47H41.0003C42.0521 49.305 43.5781 51.6896 45.6083 54.1315C51.0285 60.6484 60.0183 67.5446 73.1319 74.4068L73.1355 74.4104C83.178 69.7254 92.2202 65.5211 100.588 62.6868C107.342 60.4007 114.32 59.2857 120.56 59.875C126.246 60.4156 133.483 62.2852 136.85 67.338C137.622 68.4981 138.259 69.6506 138.749 70.7918C139.746 73.108 140.154 75.3904 139.948 77.639C139.615 81.3216 137.666 84.8857 133.921 88.2403C133.872 88.2844 133.871 88.2859 133.824 88.3227C124.862 95.3617 114.395 94.9935 104.001 91.8553C95.2654 89.2163 86.2982 84.2198 77.2746 78.6226C62.9024 84.9329 47.2865 91.3484 37.2181 93.3007C32.5173 94.2129 25.6736 94.2241 19.6919 92.625C11.6686 90.4777 5.62651 86.0893 5.03483 77.4586C4.83252 74.5193 5.51043 71.595 7.09871 68.8057C8.99776 65.4685 11.189 63.3774 13.8485 62.0975C16.4818 60.8325 19.542 60.3855 23.2127 60.3368C28.3819 60.2654 33.8283 61.4142 39.4541 63.3476C45.0504 65.2732 50.8299 67.98 56.6882 71.0318C57.0215 71.2046 57.1528 71.6175 56.9804 71.9515C56.8082 72.2859 56.396 72.417 56.0627 72.2445C50.2568 69.2189 44.5371 66.5385 39.016 64.6388C33.5209 62.7467 28.2247 61.6244 23.2316 61.6959C19.748 61.7446 16.8676 62.1538 14.4365 63.3251C12.0317 64.4812 10.0355 66.3995 8.28238 69.4778C6.82907 72.0267 6.21088 74.6922 6.3946 77.3649C6.90402 84.764 11.4812 88.5141 18.3321 90.5115C19.276 90.7853 20.2086 90.9995 21.1263 91.1607C26.0746 92.0317 30.6743 91.3749 35.525 90.5979C43.1015 89.0356 50.408 85.3752 57.2519 81.9465C59.6349 80.7526 61.9619 79.5868 64.2247 78.5475C66.7379 77.3911 69.1915 76.2499 71.585 75.1312C58.7971 68.3402 49.9646 61.4969 44.5596 55.0023C38.353 47.5396 36.6374 40.5006 38.634 34.4831C39.2369 32.6661 40.0422 31.0482 41.0275 29.6441C43.2486 26.4834 46.3837 24.3887 50.1782 23.4915C51.476 23.1857 52.8513 23.0206 54.2936 23.0018L64.2013 0H65.6361L82.0204 40.4222C82.8574 42.4556 83.6944 43.7709 84.5318 44.6081C85.4886 45.4453 86.4454 45.6844 88 45.6844V47H70.6592V45.6844C73.8881 45.5649 75.2037 44.8475 75.2037 42.5751C75.2037 41.9772 75.0839 41.2598 74.8449 40.5417ZM57.234 23.1573C59.1054 23.3738 61.0674 23.8159 63.101 24.4936C65.2324 25.2036 67.4425 26.1715 69.7091 27.4082L62.8854 9.68709L57.234 23.1573ZM53.6992 24.3818C52.5803 24.4325 51.5084 24.5797 50.4892 24.8204C47.0244 25.6388 44.1699 27.5458 42.1435 30.4288C41.2298 31.7315 40.4843 33.2293 39.9261 34.9072C38.7174 38.551 39.0075 42.6322 41 46.9993V45.6844C43.99 45.5649 45.3053 43.7709 47.0991 39.7048L53.6992 24.3818ZM102.474 39.1263V9.20623L132.249 47H133.602V7.87398C133.602 3.14953 134.217 1.93831 140 1.45358V0H124.128V1.45358C129.788 1.93831 130.403 3.14953 130.403 7.87398V33.433L104.32 0H93V1.45358C95.9531 1.69625 97.7983 3.27056 99.398 6.29906V39.1263C99.398 43.8508 98.6595 45.0623 93 45.5464V47H108.749V45.5464C103.089 45.0623 102.474 43.8508 102.474 39.1263ZM100.76 68.179C106.36 65.7502 113.061 63.2801 119.335 62.4428C125.846 61.5757 132.131 62.6494 135.94 68.4379C137.981 71.5423 138.858 74.5945 138.592 77.5189C138.289 80.8485 136.151 84.8733 133.019 87.2266C124.01 93.9944 114.399 93.5709 104.39 90.5489C96.0594 88.0337 87.463 83.3037 78.7919 77.9582C82.5168 76.3143 86.1418 74.6881 89.546 73.161C93.6827 71.3052 97.4932 69.5958 100.76 68.179Z" fill="#707080"/> </g> <defs> <filter id="filter0_d_0_7251" x="0" y="0" width="144" height="115" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_7251"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_7251" result="shape"/> </filter> </defs> </svg> </div> </div> <a class="upcoming-events-list__link" href="https://pan.pl/wydarzenie/ifis-konferencja-automating-welfare-policy-implications-of-ai-in-the-digital-welfare-states/"> <div class="upcoming-events-list__box"> <div class="upcoming-events-list__date date-column"> <b>10</b> <p>kwi</p> </div> <div class="upcoming-events-list__content"> <p class="upcoming-events-list__upcoming">Wydarzenie całodobowe</p> <h3 class="upcoming-events-list__title">IFiS PAN: konferencja „Automating Welfare Policy Implications of AI in the Digital Welfare States”</h3> </div> </div> <span class="upcoming-events-list__more button-left"> <svg width="52" height="53" viewBox="0 0 52 53" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.75" width="51" height="51" rx="25.5" stroke="white" class="circle"/> <rect x="6" y="6.25" width="40" height="40" rx="20" fill="white" class="border"/> <path d="M19.6654 26.974H30.8292L28.7377 29.0655C28.1369 29.6663 29.0381 30.5674 29.6388 29.9666L32.8152 26.7853C33.0616 26.5374 33.0616 26.1371 32.8152 25.8892L29.6388 22.7091C29.518 22.5849 29.3516 22.5153 29.1783 22.5166C28.6192 22.5168 28.3384 23.1822 28.7107 23.5827L30.8341 25.7017H19.6326C18.7669 25.7447 18.8152 26.9736 19.6215 26.9751L19.6654 26.974Z" fill="#707080" class="arrow"/> </svg> </span> </a> </li> <li class="upcoming-events-list__item no-image"> <div class="upcoming-events-list__image"> <div class="image-placeholder"> <svg width="144" height="115" viewBox="0 0 144 115" fill="none" xmlns="http://www.w3.org/2000/svg"> <g filter="url(#filter0_d_0_7251)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M18.9804 20.9565V6.54173C18.9804 3.63426 19.4623 2.54408 22.9575 2.54408C30.4301 2.54408 34.2865 5.93597 34.2865 12.5978C34.2865 19.3816 29.9475 23.1366 21.6317 23.1366C19.5828 23.1366 18.9804 22.6522 18.9804 20.9565ZM5 47H25.9707V45.6678C19.9446 45.5464 18.9804 44.2139 18.9804 37.9151V26.8919C18.9804 25.6807 19.2212 25.5593 20.1855 25.5593H20.9089C26.2115 25.5593 30.671 25.4383 34.5274 23.8634C39.1075 22.0464 42 17.686 42 12.2347C42 4.36105 36.3355 0 25.368 0H5V1.45358C10.7852 1.69625 11.5081 2.90747 11.5081 7.38956V37.9151C11.5081 44.0931 10.6645 45.6678 5 45.6678V47ZM132.459 106.873H135.579V106.745C134.799 106.745 134.669 106.491 134.669 105.855V103.691C134.819 103.691 134.883 103.691 134.934 103.715C134.972 103.733 135.004 103.764 135.059 103.818L135.06 103.818L137.269 105.982C137.319 106.078 137.368 106.156 137.411 106.223L137.411 106.224L137.411 106.224L137.411 106.224C137.48 106.333 137.53 106.412 137.53 106.491C137.53 106.618 137.269 106.745 136.749 106.745V106.873H140V106.745C139.61 106.745 139.22 106.491 138.83 106.109L135.709 103.055L137.659 101.146C138.31 100.509 138.7 100.255 139.35 100.255V100.127H136.619V100.255C137.14 100.255 137.4 100.382 137.4 100.637C137.4 100.722 137.284 100.863 137.091 101.1C136.994 101.217 136.879 101.358 136.749 101.527L134.929 103.182C134.929 103.309 134.799 103.436 134.669 103.436V101.273C134.669 100.509 134.799 100.255 135.709 100.255V100.127H132.459V100.255C133.369 100.255 133.499 100.509 133.499 101.273V105.855C133.499 106.491 133.239 106.745 132.589 106.745H132.459V106.873ZM124.138 100.255C125.047 100.255 125.178 100.637 125.178 101.782V104.327C125.178 105.218 125.438 105.855 125.828 106.364C126.348 106.873 127.128 107 128.168 107C130.118 107 131.029 106.109 131.029 104.2V101.4C131.029 100.637 131.289 100.255 132.069 100.255V100.127H129.599V100.255C130.379 100.255 130.509 100.509 130.509 101.4V104.327C130.509 105.855 129.728 106.618 128.298 106.618C126.998 106.618 126.348 105.855 126.348 104.327V101.4C126.348 100.509 126.478 100.255 127.258 100.255V100.127H124.138V100.255ZM119.067 104.327H121.667L120.367 101.4L119.067 104.327ZM116.726 106.873V106.745C117.247 106.745 117.507 106.491 117.767 105.855L120.627 100H120.887L123.618 105.982C123.748 106.236 123.877 106.491 124.008 106.618C124.268 106.745 124.398 106.745 124.658 106.745V106.873H121.667V106.745C122.317 106.745 122.448 106.618 122.448 106.236V105.982L121.797 104.709H118.807L118.287 105.728C118.287 105.876 118.242 106.025 118.205 106.149L118.205 106.149L118.205 106.149L118.205 106.149L118.205 106.149C118.179 106.236 118.157 106.311 118.157 106.364C118.157 106.618 118.417 106.745 118.937 106.745H119.067V106.873H116.726ZM111.136 105.728V101.4L115.816 106.873H116.077V101.273C116.077 100.509 116.206 100.382 116.987 100.255V100.127H114.516V100.255C115.427 100.382 115.556 100.509 115.556 101.273V104.964L111.396 100.127H109.576V100.255C110.095 100.382 110.356 100.509 110.616 101.018V105.728C110.616 106.491 110.485 106.618 109.576 106.745V106.873H112.176V106.745C111.266 106.618 111.136 106.491 111.136 105.728ZM100.994 104.327L102.294 101.4L103.595 104.327H100.994ZM98.6541 106.873H100.994V106.745H100.864C100.344 106.745 100.084 106.618 100.084 106.364C100.084 106.311 100.106 106.236 100.133 106.149L100.133 106.149L100.133 106.149L100.133 106.149C100.17 106.025 100.214 105.876 100.214 105.728L100.734 104.709H103.725L104.375 105.982V106.236C104.375 106.618 104.244 106.745 103.595 106.745V106.873H106.585V106.745C106.325 106.745 106.195 106.745 105.935 106.618C105.805 106.491 105.675 106.236 105.545 105.982L102.815 100H102.554L99.6939 105.855C99.4342 106.491 99.1741 106.745 98.6541 106.745V106.873ZM95.1431 106.873H98.3937V106.745C97.4837 106.745 97.3539 106.491 97.3539 105.855V101.273C97.3539 100.509 97.4837 100.382 98.3937 100.255V100.127H95.1431V100.255C95.9238 100.255 96.1835 100.509 96.1835 101.273V105.855C96.1835 106.491 96.0536 106.745 95.1431 106.745V106.873ZM85.6517 106.873H87.9921V106.745C87.2123 106.745 87.0824 106.491 87.0824 105.6V101.273L89.6825 106.873H89.9428L92.5433 101.273V105.728C92.5433 106.491 92.4131 106.745 91.5031 106.745V106.873H94.6233V106.745C93.7133 106.618 93.5834 106.491 93.5834 105.728V101.273C93.5834 100.509 93.7133 100.255 94.6233 100.255V100.127H92.5433L90.0724 105.345L87.6022 100.127H85.6517V100.255C86.4321 100.382 86.5623 100.637 86.5623 101.4V105.6C86.5623 106.364 86.302 106.745 85.6517 106.745V106.873ZM78.5007 106.873V106.745C79.2812 106.745 79.411 106.491 79.411 105.855V101.273C79.411 100.509 79.2812 100.382 78.5007 100.255V100.127H84.482V101.655H84.3518C84.0921 100.637 83.8317 100.509 82.7916 100.509H81.1014C80.5811 100.509 80.5811 100.637 80.5811 101.018V102.8C80.5811 103.055 80.5811 103.182 80.9713 103.182H82.2712C83.3116 103.182 83.5717 103.055 83.7019 102.164H83.8317V104.582H83.7019C83.5717 103.691 83.3116 103.564 82.2712 103.564H80.8414C80.7102 103.564 80.6451 103.564 80.6128 103.596C80.5811 103.628 80.5811 103.692 80.5811 103.818V105.855C80.5811 106.364 80.7112 106.491 81.1014 106.491H82.6617C83.9616 106.491 84.482 106.236 84.8719 105.218H85.1319L84.6115 106.873H78.5007ZM73.3002 105.728V101.273C73.3002 100.637 73.3002 100.509 73.9502 100.509C76.1607 100.509 77.3307 101.527 77.3307 103.564C77.3307 105.473 76.1607 106.618 74.0803 106.618C73.3002 106.618 73.3002 106.491 73.3002 105.728ZM71.09 106.873H74.0803C75.3805 106.873 76.2908 106.873 77.071 106.236C78.1108 105.6 78.5007 104.582 78.5007 103.436C78.5007 101.4 77.071 100.127 74.4702 100.127H71.09V100.255C71.8701 100.255 72.1299 100.509 72.1299 101.273V105.855C72.1299 106.491 71.8701 106.745 71.09 106.745V106.873ZM65.3688 104.327L66.6693 101.4L67.9695 104.327H65.3688ZM63.0287 106.873H65.3688V106.745H65.2389C64.7188 106.745 64.4588 106.618 64.4588 106.364C64.4588 106.236 64.589 105.982 64.7188 105.728L65.2389 104.709H68.2296L68.7493 105.982C68.7493 106.109 68.8798 106.236 68.8798 106.236C68.8798 106.618 68.6195 106.745 68.0994 106.745V106.873H70.9598V106.745C70.6998 106.745 70.5696 106.745 70.4398 106.618C70.3096 106.491 70.0498 106.236 69.9197 105.982L67.1891 100H66.929L64.0689 105.855C63.8086 106.491 63.5485 106.745 63.0287 106.745V106.873ZM55.4875 106.873H58.608V106.745C57.6977 106.745 57.5679 106.491 57.5679 105.855V103.691H57.6977C57.7534 103.691 57.7852 103.691 57.8136 103.701C57.8516 103.714 57.8834 103.745 57.9578 103.818L60.168 105.982C60.2177 106.079 60.2673 106.157 60.3097 106.224L60.3097 106.224C60.3786 106.333 60.4283 106.412 60.4283 106.491C60.4283 106.618 60.168 106.745 59.6482 106.745V106.873H62.8986V106.745C62.5086 106.745 62.1187 106.491 61.7288 106.109L58.7382 103.055L60.5585 101.146C61.2084 100.509 61.7288 100.255 62.2486 100.255V100.127H59.5183V100.255C60.0381 100.255 60.2985 100.382 60.2985 100.637C60.2985 100.721 60.183 100.863 59.9908 101.098L59.9906 101.098L59.9896 101.099C59.8933 101.217 59.7779 101.358 59.6482 101.527L57.9578 103.182C57.8279 103.309 57.6977 103.436 57.5679 103.436V101.273C57.5679 100.509 57.6977 100.255 58.608 100.255V100.127H55.4875V100.255C56.2677 100.255 56.3975 100.509 56.3975 101.273V105.855C56.3975 106.491 56.2677 106.745 55.4875 106.745V106.873ZM49.6368 104.327L51.0671 101.4L52.3673 104.327H49.6368ZM47.2964 106.873H49.6368V106.745C49.1164 106.745 48.8563 106.618 48.8563 106.364C48.8563 106.236 48.8563 105.982 48.9868 105.728L49.5069 104.709H52.4969L53.0173 105.982C53.1472 106.109 53.1472 106.236 53.1472 106.236C53.1472 106.618 52.8874 106.745 52.3673 106.745V106.873H55.2275V106.745C54.9675 106.745 54.8376 106.745 54.7071 106.618C54.5775 106.491 54.4474 106.236 54.3172 105.982L51.4571 100H51.197L48.3366 105.855C48.0765 106.491 47.8165 106.745 47.2964 106.745V106.873ZM39.365 104.327L40.7954 101.4L41.9654 104.327H39.365ZM37.0249 106.873H39.365V106.745H39.2351C38.715 106.745 38.5849 106.618 38.5849 106.364C38.5849 106.236 38.5849 105.982 38.715 105.728L39.2351 104.709H42.2257L42.7455 105.982C42.8757 106.109 42.8757 106.236 42.8757 106.236C42.8757 106.618 42.6157 106.745 42.0956 106.745V106.873H44.956V106.745C44.696 106.745 44.5658 106.745 44.4359 106.618C44.3822 106.566 44.3284 106.491 44.2654 106.404C44.1761 106.28 44.0683 106.131 43.9159 105.982L41.1853 100H40.9255L38.0648 105.855C37.8047 106.491 37.5447 106.745 37.0249 106.745V106.873ZM29.2234 106.873H32.3445V106.745C31.5641 106.745 31.4342 106.491 31.4342 105.855V103.691C31.5641 103.691 31.6939 103.691 31.6939 103.818L33.9044 105.982C34.1642 106.236 34.1642 106.364 34.1642 106.491C34.1642 106.618 34.0343 106.745 33.3843 106.745V106.873H36.635V106.745C36.2448 106.745 35.9845 106.491 35.5945 106.109L32.4744 103.055L34.4242 101.146C34.9446 100.509 35.4647 100.255 36.1149 100.255V100.127H33.3843V100.255C33.9044 100.255 34.0343 100.382 34.0343 100.637C34.0343 100.764 33.9044 101.018 33.5142 101.527L31.6939 103.182C31.6443 103.23 31.6136 103.279 31.5874 103.321C31.5451 103.388 31.5144 103.436 31.4342 103.436V101.273C31.4342 100.509 31.5641 100.255 32.3445 100.255V100.127H29.2234V100.255C30.1337 100.255 30.2639 100.509 30.2639 101.273V105.855C30.2639 106.491 30.0038 106.745 29.3539 106.745H29.2234V106.873ZM24.6728 107H24.9329C24.9329 106.873 25.063 106.873 25.1932 106.873C25.2884 106.873 25.4184 106.89 25.5833 106.911C25.8688 106.949 26.2588 107 26.7531 107C28.1835 107 28.964 106.364 28.964 105.218C28.964 104.327 28.5737 103.818 27.6634 103.309L26.4931 102.546C25.8432 102.164 25.4532 101.782 25.4532 101.273C25.4532 100.764 25.9733 100.255 26.6233 100.255C27.4034 100.255 28.0537 100.891 28.5737 102.036H28.7036L28.4436 100H28.3134C28.3134 100.127 28.1835 100.255 28.0537 100.255C27.9529 100.255 27.8132 100.217 27.6419 100.17C27.3711 100.096 27.0216 100 26.6233 100C25.3228 100 24.5429 100.764 24.5429 101.655C24.5429 102.546 24.9329 103.055 25.8432 103.564L26.8833 104.2C27.6634 104.582 27.9235 104.964 27.9235 105.473C27.9235 106.236 27.4034 106.745 26.6233 106.745C25.8432 106.745 25.063 106.109 24.5429 104.837H24.2829L24.6728 107ZM17.392 106.873H23.2427L23.7631 105.091H23.5031C23.1126 106.109 22.4626 106.491 21.4228 106.491H20.2524C19.6022 106.491 19.6022 106.364 19.6022 105.855V101.273C19.6022 100.509 19.8625 100.255 20.5125 100.255H20.6423V100.127H17.392V100.255C18.3023 100.255 18.4321 100.509 18.4321 101.273V105.728C18.4321 106.491 18.3023 106.745 17.5221 106.745H17.392V106.873ZM11.151 103.564C11.151 101.527 12.061 100.255 13.6212 100.255C15.0516 100.255 15.9616 101.527 15.9616 103.564C15.9616 105.473 15.0516 106.745 13.6212 106.745C12.061 106.745 11.151 105.473 11.151 103.564ZM9.98064 103.564C9.98064 105.728 11.411 107 13.6212 107C15.7015 107 17.2618 105.728 17.2618 103.564C17.2618 101.273 15.7015 100 13.6212 100C11.411 100 9.98064 101.273 9.98064 103.564ZM6.08033 103.182V101.018C6.08033 100.637 6.08033 100.509 6.60011 100.509C7.77044 100.509 8.29053 100.891 8.29053 101.91C8.29053 102.927 7.64058 103.436 6.47054 103.436C6.24784 103.436 6.15224 103.436 6.1112 103.389C6.08033 103.354 6.08033 103.291 6.08033 103.182ZM4 106.873H7.12019V106.745C6.2102 106.745 6.08033 106.491 6.08033 105.6V103.946C6.08033 103.882 6.08033 103.85 6.09629 103.834C6.11244 103.818 6.1449 103.818 6.2102 103.818H6.34037C7.12019 103.818 7.77044 103.818 8.4204 103.564C9.07095 103.309 9.46086 102.673 9.46086 101.91C9.46086 100.764 8.68074 100.127 6.99063 100.127H4V100.255C4.78043 100.382 4.90999 100.509 4.90999 101.146V105.6C4.90999 106.491 4.78043 106.745 4 106.745V106.873ZM74.8449 40.5417L70.8981 30.4961L70.4815 29.4141C67.7838 27.8203 65.1695 26.6175 62.6775 25.7851C60.5882 25.0882 58.5832 24.6526 56.6847 24.4665L54.1551 30.4961L50.6871 39.1066C49.9693 40.7814 49.73 41.9772 49.73 42.8141C49.73 44.7276 51.1657 45.6844 54.2749 45.6844H54.6336V47H41.0003C42.0521 49.305 43.5781 51.6896 45.6083 54.1315C51.0285 60.6484 60.0183 67.5446 73.1319 74.4068L73.1355 74.4104C83.178 69.7254 92.2202 65.5211 100.588 62.6868C107.342 60.4007 114.32 59.2857 120.56 59.875C126.246 60.4156 133.483 62.2852 136.85 67.338C137.622 68.4981 138.259 69.6506 138.749 70.7918C139.746 73.108 140.154 75.3904 139.948 77.639C139.615 81.3216 137.666 84.8857 133.921 88.2403C133.872 88.2844 133.871 88.2859 133.824 88.3227C124.862 95.3617 114.395 94.9935 104.001 91.8553C95.2654 89.2163 86.2982 84.2198 77.2746 78.6226C62.9024 84.9329 47.2865 91.3484 37.2181 93.3007C32.5173 94.2129 25.6736 94.2241 19.6919 92.625C11.6686 90.4777 5.62651 86.0893 5.03483 77.4586C4.83252 74.5193 5.51043 71.595 7.09871 68.8057C8.99776 65.4685 11.189 63.3774 13.8485 62.0975C16.4818 60.8325 19.542 60.3855 23.2127 60.3368C28.3819 60.2654 33.8283 61.4142 39.4541 63.3476C45.0504 65.2732 50.8299 67.98 56.6882 71.0318C57.0215 71.2046 57.1528 71.6175 56.9804 71.9515C56.8082 72.2859 56.396 72.417 56.0627 72.2445C50.2568 69.2189 44.5371 66.5385 39.016 64.6388C33.5209 62.7467 28.2247 61.6244 23.2316 61.6959C19.748 61.7446 16.8676 62.1538 14.4365 63.3251C12.0317 64.4812 10.0355 66.3995 8.28238 69.4778C6.82907 72.0267 6.21088 74.6922 6.3946 77.3649C6.90402 84.764 11.4812 88.5141 18.3321 90.5115C19.276 90.7853 20.2086 90.9995 21.1263 91.1607C26.0746 92.0317 30.6743 91.3749 35.525 90.5979C43.1015 89.0356 50.408 85.3752 57.2519 81.9465C59.6349 80.7526 61.9619 79.5868 64.2247 78.5475C66.7379 77.3911 69.1915 76.2499 71.585 75.1312C58.7971 68.3402 49.9646 61.4969 44.5596 55.0023C38.353 47.5396 36.6374 40.5006 38.634 34.4831C39.2369 32.6661 40.0422 31.0482 41.0275 29.6441C43.2486 26.4834 46.3837 24.3887 50.1782 23.4915C51.476 23.1857 52.8513 23.0206 54.2936 23.0018L64.2013 0H65.6361L82.0204 40.4222C82.8574 42.4556 83.6944 43.7709 84.5318 44.6081C85.4886 45.4453 86.4454 45.6844 88 45.6844V47H70.6592V45.6844C73.8881 45.5649 75.2037 44.8475 75.2037 42.5751C75.2037 41.9772 75.0839 41.2598 74.8449 40.5417ZM57.234 23.1573C59.1054 23.3738 61.0674 23.8159 63.101 24.4936C65.2324 25.2036 67.4425 26.1715 69.7091 27.4082L62.8854 9.68709L57.234 23.1573ZM53.6992 24.3818C52.5803 24.4325 51.5084 24.5797 50.4892 24.8204C47.0244 25.6388 44.1699 27.5458 42.1435 30.4288C41.2298 31.7315 40.4843 33.2293 39.9261 34.9072C38.7174 38.551 39.0075 42.6322 41 46.9993V45.6844C43.99 45.5649 45.3053 43.7709 47.0991 39.7048L53.6992 24.3818ZM102.474 39.1263V9.20623L132.249 47H133.602V7.87398C133.602 3.14953 134.217 1.93831 140 1.45358V0H124.128V1.45358C129.788 1.93831 130.403 3.14953 130.403 7.87398V33.433L104.32 0H93V1.45358C95.9531 1.69625 97.7983 3.27056 99.398 6.29906V39.1263C99.398 43.8508 98.6595 45.0623 93 45.5464V47H108.749V45.5464C103.089 45.0623 102.474 43.8508 102.474 39.1263ZM100.76 68.179C106.36 65.7502 113.061 63.2801 119.335 62.4428C125.846 61.5757 132.131 62.6494 135.94 68.4379C137.981 71.5423 138.858 74.5945 138.592 77.5189C138.289 80.8485 136.151 84.8733 133.019 87.2266C124.01 93.9944 114.399 93.5709 104.39 90.5489C96.0594 88.0337 87.463 83.3037 78.7919 77.9582C82.5168 76.3143 86.1418 74.6881 89.546 73.161C93.6827 71.3052 97.4932 69.5958 100.76 68.179Z" fill="#707080"/> </g> <defs> <filter id="filter0_d_0_7251" x="0" y="0" width="144" height="115" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_7251"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_7251" result="shape"/> </filter> </defs> </svg> </div> </div> <a class="upcoming-events-list__link" href="https://pan.pl/wydarzenie/ifis-pan-seminarium-chinskie-bezposrednie-inwestycje-zagraniczne-w-ue-2/"> <div class="upcoming-events-list__box"> <div class="upcoming-events-list__date date-column"> <b>10</b> <p>kwi</p> </div> <div class="upcoming-events-list__content"> <p class="upcoming-events-list__upcoming">10 kwietnia o 11:00 - 13:00</p> <h3 class="upcoming-events-list__title">INE PAN: Seminarium „The Marriage Market, Wage Risk, and Tax Progressivity”</h3> </div> </div> <span class="upcoming-events-list__more button-left"> <svg width="52" height="53" viewBox="0 0 52 53" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.75" width="51" height="51" rx="25.5" stroke="white" class="circle"/> <rect x="6" y="6.25" width="40" height="40" rx="20" fill="white" class="border"/> <path d="M19.6654 26.974H30.8292L28.7377 29.0655C28.1369 29.6663 29.0381 30.5674 29.6388 29.9666L32.8152 26.7853C33.0616 26.5374 33.0616 26.1371 32.8152 25.8892L29.6388 22.7091C29.518 22.5849 29.3516 22.5153 29.1783 22.5166C28.6192 22.5168 28.3384 23.1822 28.7107 23.5827L30.8341 25.7017H19.6326C18.7669 25.7447 18.8152 26.9736 19.6215 26.9751L19.6654 26.974Z" fill="#707080" class="arrow"/> </svg> </span> </a> </li> </ul> </div> </div> </div> </section> <div class="separator" style="background-color:;" id="653911ed6a994"> <div class="separator__desktop" style="height:140px;"></div> <div class="separator__mobile " style="height:60px;"></div> </div> </main> <footer class="footer"> <div class="footer-container background container"> <div class="background-color background-color--full background-color--right"></div> <div class="row featured-columns "> <div class="col-12 col-lg-4 mb-5 mb-lg-0"> <ul class="featured-list"> <li class="featured-list__item"> <a href="https://pan.pl/o-akademii/" class="featured-list__link underline-hover"> O nas </a> </li> <li class="featured-list__item"> <a href="https://pan.pl/wydarzenia/" class="featured-list__link underline-hover"> Kalendarz wydarzeń </a> </li> <li class="featured-list__item"> <a href="https://pan.pl/dla-mediow/" class="featured-list__link underline-hover"> Dla mediów </a> </li> <li class="featured-list__item"> <a href="https://pan.pl/kontakt/" class="featured-list__link underline-hover"> Kontakt </a> </li> </ul> </div> <div class="col-12 col-lg-8"> <div class="links-grid"> <div class="links-column"> <ul class="links-column__list"> <li class="links-column__item"> <a href="https://pan.pl/czlonkowie/" class="links-column__link underline-hover font-weight-bold"> Członkowie PAN </a> </li> <li class="links-column__item"> <a href="https://pan.pl/wladze/wladze-pan/" class="links-column__link underline-hover font-weight-bold"> Władze </a> </li> <li class="links-column__item"> <a href="https://pan.pl/wydzialy" class="links-column__link underline-hover font-weight-bold"> Wydziały </a> </li> <li class="links-column__item"> <a href="https://pan.pl/oddzialy" class="links-column__link underline-hover font-weight-bold"> Oddziały </a> </li> <li class="links-column__item"> <a href="https://pan.pl/komitety-pan/" class="links-column__link underline-hover font-weight-bold"> Komitety </a> </li> <li class="links-column__item"> <a href="https://pan.pl/wydawnictwa/" class="links-column__link underline-hover font-weight-bold"> Wydawnictwa </a> </li> </ul> </div> <div class="links-column"> <ul class="links-column__list"> <li class="links-column__item"> <a href="https://pan.pl/kategoria-obiektu/instytuty-naukowe/" class="links-column__link underline-hover font-weight-bold"> Instytuty </a> </li> <li class="links-column__item"> <a href="https://pan.pl/wspolpraca-miedzynarodowa/" class="links-column__link underline-hover font-weight-bold"> Współpraca międzynarodowa </a> </li> <li class="links-column__item"> <a href="https://pan.pl/projekty/ukraina/" class="links-column__link underline-hover font-weight-bold"> Ukraina </a> </li> <li class="links-column__item"> <a href="https://pan.pl/projekty/program-stypendialny-pasific/" class="links-column__link underline-hover font-weight-bold"> PASIFIC </a> </li> <li class="links-column__item"> <a href="https://pan.pl/wsparcie-dla-naukowcow/" class="links-column__link underline-hover font-weight-bold"> Wsparcie naukowców </a> </li> </ul> </div> <div class="links-column"> <ul class="links-column__list"> <li class="links-column__item"> <a href="https://pan.pl/kariera/" class="links-column__link underline-hover font-weight-bold"> Kariera </a> </li> <li class="links-column__item"> <a href="https://pan.pl/identyfikacja-wizualna/" class="links-column__link underline-hover font-weight-bold"> Identyfikacja wizualna </a> </li> <li class="links-column__item"> <a href="https://pan.pl/deklaracja-dostepnosci/" class="links-column__link underline-hover font-weight-bold"> Deklaracja dostępności </a> </li> <li class="links-column__item"> <a href="https://pan.pl/polityka-prywatnosci/" class="links-column__link underline-hover font-weight-bold"> Polityka prywatności </a> </li> </ul> </div> </div> </div> </div> <div class="footer-bottom-mobile"> <div class="footer-bottom-mobile__top"> <div class="footer-bottom-logo logo"> <a href="https://pan.pl" class="logo__url"> <img src="https://pan.pl/app/uploads/2023/07/Combined-Shape.svg" alt="" class="logo__image"> </a> </div> <div class="bip-wrapper"> <a href="https://bip.pan.pl/"> <svg xmlns="http://www.w3.org/2000/svg" width="50" height="24"><path style="fill:#c00418" d="M10.58 4.07H0l10.58 10.74z" transform="translate(2 2)"/><path class="cls-1" d="M39.57 4.07a5.81 5.81 0 0 0-5.81 5.81V18a1.42 1.42 0 0 0 2.84 0v-3.15a5.69 5.69 0 0 0 3 .85 5.82 5.82 0 1 0 0-11.63m0 8.78a3 3 0 1 1 3-3 3 3 0 0 1-3 3m-19-8.78a5.75 5.75 0 0 0-3 .85v-3.5a1.42 1.42 0 1 0-2.84 0v8.47a5.81 5.81 0 1 0 5.81-5.83m0 8.79a3 3 0 1 1 3-3 3 3 0 0 1-3 3m10.9.15c-.2-.1-.78-.39-.78-2.65V5.5a1.42 1.42 0 1 0-2.83 0v4.86c0 1.72.24 4.13 2.33 5.19a1.43 1.43 0 0 0 1.91-.64 1.41 1.41 0 0 0-.63-1.9m-2.19-9.88a1.57 1.57 0 1 0-1.57-1.56 1.56 1.56 0 0 0 1.57 1.56" style="fill:#c00418" transform="translate(2 2)"/></svg> </a> </div> </div> <div class="footer-bottom-mobile__social"> <ul class="social-list"> <li class="social-list__item"> <a href="https://www.facebook.com/PolskaAkademiaNauk/" class="social-list__link"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.175 3.32083H15.0008V0.140833C14.6858 0.0975 13.6025 0 12.3408 0C9.70833 0 7.905 1.65583 7.905 4.69917V7.5H5V11.055H7.905V20H11.4667V11.0558H14.2542L14.6967 7.50083H11.4658V5.05167C11.4667 4.02417 11.7433 3.32083 13.175 3.32083Z" fill="#4267B2"/> </svg> </a> </li> <li class="social-list__item"> <a href="https://twitter.com/PAN_akademia" class="social-list__link"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M20 3.92375C19.2563 4.25 18.4638 4.46625 17.6375 4.57125C18.4875 4.06375 19.1362 3.26625 19.4412 2.305C18.6488 2.7775 17.7738 3.11125 16.8413 3.2975C16.0888 2.49625 15.0163 2 13.8463 2C11.5763 2 9.74875 3.8425 9.74875 6.10125C9.74875 6.42625 9.77625 6.73875 9.84375 7.03625C6.435 6.87 3.41875 5.23625 1.3925 2.7475C1.03875 3.36125 0.83125 4.06375 0.83125 4.82C0.83125 6.24 1.5625 7.49875 2.6525 8.2275C1.99375 8.215 1.3475 8.02375 0.8 7.7225C0.8 7.735 0.8 7.75125 0.8 7.7675C0.8 9.76 2.22125 11.415 4.085 11.7963C3.75125 11.8875 3.3875 11.9313 3.01 11.9313C2.7475 11.9313 2.4825 11.9163 2.23375 11.8612C2.765 13.485 4.2725 14.6788 6.065 14.7175C4.67 15.8088 2.89875 16.4663 0.98125 16.4663C0.645 16.4663 0.3225 16.4513 0 16.41C1.81625 17.5813 3.96875 18.25 6.29 18.25C13.835 18.25 17.96 12 17.96 6.5825C17.96 6.40125 17.9538 6.22625 17.945 6.0525C18.7588 5.475 19.4425 4.75375 20 3.92375Z" fill="#1DA1F2"/> </svg> </a> </li> <li class="social-list__item"> <a href="https://www.youtube.com/@PAN-PolskaAkademiaNauk" class="social-list__link"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M17.8252 3.42822C18.6818 3.65893 19.3574 4.33435 19.5878 5.19116C20.0163 6.75609 19.9998 10.0181 19.9998 10.0181C19.9998 10.0181 19.9998 13.2634 19.5881 14.8285C19.3574 15.6852 18.682 16.3606 17.8252 16.5912C16.2601 17.0031 9.99998 17.0031 9.99998 17.0031C9.99998 17.0031 3.7561 17.0031 2.17468 16.5748C1.31787 16.3441 0.642577 15.6687 0.411864 14.812C0 13.2634 0 10.0016 0 10.0016C0 10.0016 0 6.75609 0.411864 5.19116C0.642333 4.33447 1.33435 3.64245 2.17456 3.41199C3.73962 3 9.99973 3 9.99973 3C9.99973 3 16.2601 3 17.8252 3.42822ZM13.2124 10.0016L8.00657 7.00329V12.9999L13.2124 10.0016Z" fill="#FF0000"/> </svg> </a> </li> <li class="social-list__item"> <a href="https://www.linkedin.com/company/polskaakademianauk" class="social-list__link"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0 1.92C0 0.86 0.86 0 1.92 0C2.98 0 3.84 0.86 3.84 1.92C3.84 2.98 2.98 3.86 1.92 3.86C0.86 3.86 0 2.98 0 1.92ZM16 15.98V10.14C16 7.26 15.38 5.06 12.02 5.06C10.4 5.06 9.32 5.94 8.88 6.78H8.84V5.32H5.66V16H8.98V10.7C8.98 9.3 9.24 7.96 10.96 7.96C12.66 7.96 12.68 9.54 12.68 10.78V15.98H16ZM0.26 5.32H3.58V16H0.26V5.32Z" fill="#0E76A8"/> </svg> </a> </li> </ul> </div> <div class="footer-bottom-mobile__info"> <div class="footer-bottom-mobile__text"> <p class="footer-bottom-text"> <span class="footer-bottom-text__copyright"> 2025 © Copyright by Polska Akademia Nauk. </span> <span class="footer-bottom-text__created"> Projekt i wdrożenie: <a href="https://theforcecode.com/pl/" class="link-underline">The Force Code</a> </span> </p> </div> <div class="language-switcher-wrapper footer-bottom-switcher"> <ul class="language-switcher"> <li class="language-switcher__item language-switcher__item--current"> <span class="language-switcher__link"> <span class="language-switcher__link-text"> pl</span> <svg width="7" height="7" viewBox="0 0 7 7" fill="none" xmlns="http://www.w3.org/2000/svg" class="language-switcher__link-arrow"> <path d="M6.83372 1.78642L6.49682 1.4494C6.38007 1.33861 6.24371 1.2832 6.08805 1.2832C5.92919 1.2832 5.79445 1.33861 5.68362 1.4494L3.50002 3.63307L1.31643 1.44946C1.20561 1.33868 1.07084 1.28327 0.91204 1.28327C0.756309 1.28327 0.619982 1.33868 0.503215 1.44946L0.170728 1.78648C0.0568884 1.90024 0 2.03657 0 2.19534C0 2.35706 0.0569514 2.49185 0.170713 2.59966L3.09561 5.52458C3.20349 5.63835 3.33821 5.69529 3.5 5.69529C3.65875 5.69529 3.79506 5.63837 3.90879 5.52458L6.83371 2.59966C6.94454 2.48881 7 2.35404 7 2.19534C7.00002 2.03953 6.94456 1.90328 6.83372 1.78642Z" fill="#111111"/> </svg> </span> <ul class="language-switcher__sub"> <li class="language-switcher__item"> <a href="https://pan.pl/en/" class="language-switcher__link"> <span class="language-switcher__link-text">en</span> </a> </li> </ul> </li> </ul> </div> </div> </div> <div class="footer-bottom row"> <div class="col-12 col-md-6 col-lg-5 col-xl-7"> <div class="footer-bottom-content"> <div class="footer-bottom-logo logo"> <a href="https://pan.pl" class="logo__url"> <img src="https://pan.pl/app/uploads/2023/07/Combined-Shape.svg" alt="" class="logo__image"> </a> </div> <div class="language-switcher-wrapper footer-bottom-switcher"> <ul class="language-switcher"> <li class="language-switcher__item language-switcher__item--current"> <span class="language-switcher__link"> <span class="language-switcher__link-text"> pl</span> <svg width="7" height="7" viewBox="0 0 7 7" fill="none" xmlns="http://www.w3.org/2000/svg" class="language-switcher__link-arrow"> <path d="M6.83372 1.78642L6.49682 1.4494C6.38007 1.33861 6.24371 1.2832 6.08805 1.2832C5.92919 1.2832 5.79445 1.33861 5.68362 1.4494L3.50002 3.63307L1.31643 1.44946C1.20561 1.33868 1.07084 1.28327 0.91204 1.28327C0.756309 1.28327 0.619982 1.33868 0.503215 1.44946L0.170728 1.78648C0.0568884 1.90024 0 2.03657 0 2.19534C0 2.35706 0.0569514 2.49185 0.170713 2.59966L3.09561 5.52458C3.20349 5.63835 3.33821 5.69529 3.5 5.69529C3.65875 5.69529 3.79506 5.63837 3.90879 5.52458L6.83371 2.59966C6.94454 2.48881 7 2.35404 7 2.19534C7.00002 2.03953 6.94456 1.90328 6.83372 1.78642Z" fill="#111111"/> </svg> </span> <ul class="language-switcher__sub"> <li class="language-switcher__item"> <a href="https://pan.pl/en/" class="language-switcher__link"> <span class="language-switcher__link-text">en</span> </a> </li> </ul> </li> </ul> </div> <p class="footer-bottom-text"> <span class="footer-bottom-text__copyright"> 2025 © Copyright by Polska Akademia Nauk. </span> <span class="footer-bottom-text__created"> Projekt i wdrożenie: <a href="https://theforcecode.com/pl/" class="link-underline">The Force Code</a> </span> </p> </div> </div> <div class="col-12 col-md-6 col-lg-4 col-xl-4 footer-bottom-social"> <div class="footer-social"> <div class="bip-wrapper"> <a href="https://bip.pan.pl/"> <svg xmlns="http://www.w3.org/2000/svg" width="50" height="24"><path style="fill:#c00418" d="M10.58 4.07H0l10.58 10.74z" transform="translate(2 2)"/><path class="cls-1" d="M39.57 4.07a5.81 5.81 0 0 0-5.81 5.81V18a1.42 1.42 0 0 0 2.84 0v-3.15a5.69 5.69 0 0 0 3 .85 5.82 5.82 0 1 0 0-11.63m0 8.78a3 3 0 1 1 3-3 3 3 0 0 1-3 3m-19-8.78a5.75 5.75 0 0 0-3 .85v-3.5a1.42 1.42 0 1 0-2.84 0v8.47a5.81 5.81 0 1 0 5.81-5.83m0 8.79a3 3 0 1 1 3-3 3 3 0 0 1-3 3m10.9.15c-.2-.1-.78-.39-.78-2.65V5.5a1.42 1.42 0 1 0-2.83 0v4.86c0 1.72.24 4.13 2.33 5.19a1.43 1.43 0 0 0 1.91-.64 1.41 1.41 0 0 0-.63-1.9m-2.19-9.88a1.57 1.57 0 1 0-1.57-1.56 1.56 1.56 0 0 0 1.57 1.56" style="fill:#c00418" transform="translate(2 2)"/></svg> </a> </div> <div class="footer-social__separator"></div> <ul class="social-list"> <li class="social-list__item"> <a href="https://www.facebook.com/PolskaAkademiaNauk/" class="social-list__link"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.175 3.32083H15.0008V0.140833C14.6858 0.0975 13.6025 0 12.3408 0C9.70833 0 7.905 1.65583 7.905 4.69917V7.5H5V11.055H7.905V20H11.4667V11.0558H14.2542L14.6967 7.50083H11.4658V5.05167C11.4667 4.02417 11.7433 3.32083 13.175 3.32083Z" fill="#4267B2"/> </svg> </a> </li> <li class="social-list__item"> <a href="https://twitter.com/PAN_akademia" class="social-list__link"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M20 3.92375C19.2563 4.25 18.4638 4.46625 17.6375 4.57125C18.4875 4.06375 19.1362 3.26625 19.4412 2.305C18.6488 2.7775 17.7738 3.11125 16.8413 3.2975C16.0888 2.49625 15.0163 2 13.8463 2C11.5763 2 9.74875 3.8425 9.74875 6.10125C9.74875 6.42625 9.77625 6.73875 9.84375 7.03625C6.435 6.87 3.41875 5.23625 1.3925 2.7475C1.03875 3.36125 0.83125 4.06375 0.83125 4.82C0.83125 6.24 1.5625 7.49875 2.6525 8.2275C1.99375 8.215 1.3475 8.02375 0.8 7.7225C0.8 7.735 0.8 7.75125 0.8 7.7675C0.8 9.76 2.22125 11.415 4.085 11.7963C3.75125 11.8875 3.3875 11.9313 3.01 11.9313C2.7475 11.9313 2.4825 11.9163 2.23375 11.8612C2.765 13.485 4.2725 14.6788 6.065 14.7175C4.67 15.8088 2.89875 16.4663 0.98125 16.4663C0.645 16.4663 0.3225 16.4513 0 16.41C1.81625 17.5813 3.96875 18.25 6.29 18.25C13.835 18.25 17.96 12 17.96 6.5825C17.96 6.40125 17.9538 6.22625 17.945 6.0525C18.7588 5.475 19.4425 4.75375 20 3.92375Z" fill="#1DA1F2"/> </svg> </a> </li> <li class="social-list__item"> <a href="https://www.youtube.com/@PAN-PolskaAkademiaNauk" class="social-list__link"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M17.8252 3.42822C18.6818 3.65893 19.3574 4.33435 19.5878 5.19116C20.0163 6.75609 19.9998 10.0181 19.9998 10.0181C19.9998 10.0181 19.9998 13.2634 19.5881 14.8285C19.3574 15.6852 18.682 16.3606 17.8252 16.5912C16.2601 17.0031 9.99998 17.0031 9.99998 17.0031C9.99998 17.0031 3.7561 17.0031 2.17468 16.5748C1.31787 16.3441 0.642577 15.6687 0.411864 14.812C0 13.2634 0 10.0016 0 10.0016C0 10.0016 0 6.75609 0.411864 5.19116C0.642333 4.33447 1.33435 3.64245 2.17456 3.41199C3.73962 3 9.99973 3 9.99973 3C9.99973 3 16.2601 3 17.8252 3.42822ZM13.2124 10.0016L8.00657 7.00329V12.9999L13.2124 10.0016Z" fill="#FF0000"/> </svg> </a> </li> <li class="social-list__item"> <a href="https://www.linkedin.com/company/polskaakademianauk" class="social-list__link"> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0 1.92C0 0.86 0.86 0 1.92 0C2.98 0 3.84 0.86 3.84 1.92C3.84 2.98 2.98 3.86 1.92 3.86C0.86 3.86 0 2.98 0 1.92ZM16 15.98V10.14C16 7.26 15.38 5.06 12.02 5.06C10.4 5.06 9.32 5.94 8.88 6.78H8.84V5.32H5.66V16H8.98V10.7C8.98 9.3 9.24 7.96 10.96 7.96C12.66 7.96 12.68 9.54 12.68 10.78V15.98H16ZM0.26 5.32H3.58V16H0.26V5.32Z" fill="#0E76A8"/> </svg> </a> </li> </ul> </div> </div> </div> </div> </footer> <div class="modal fade d-none" id="homepage-video" tabindex="-1" aria-hidden="false" > <div class="modal-dialog"> <div class="modal-content"> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Zamknij"></button> <div class="modal-body"> <div class="video-wrapper modal-video"> <video class="video-wrapper__video" muted disablepictureinpicture> <source src="https://pan.pl/app/uploads/2023/12/razem-1.mp4" type="video/mp4"> </video> <div class="video-controllers"> <button role="button" class="video-controllers__toggle" aria-label="Wstrzymaj"> <span class="video-controllers__toggle-pause"> <span class="cirlce-icon"> <span class="cirlce-icon__content"> <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="pause"> <path id="Shape" fill-rule="evenodd" clip-rule="evenodd" d="M15.2273 63.9946C20.0053 63.8297 23.8286 59.9039 23.8286 55.0857V8.91432C23.8286 3.99135 19.8373 0 14.9143 0L14.6014 0.0053911C9.82331 0.170266 6 4.09609 6 8.91432V55.0857C6 60.0087 9.99135 64 14.9143 64L15.2273 63.9946ZM48.6825 63.9946C53.4606 63.8297 57.2839 59.9039 57.2839 55.0857V8.91432C57.2839 3.99135 53.2925 0 48.3696 0L48.0567 0.0053911C43.2799 0.170266 39.4566 4.09609 39.4552 8.91432V55.0857C39.4552 60.0087 43.4466 64 48.3696 64L48.6825 63.9946Z" /> </g> </svg> </span> </span> </span> <span class="video-controllers__toggle-play" aria-label="Odtwórz"> <span class="cirlce-icon"> <span class="cirlce-icon__content"> <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"> <g id="play"> <path id="Path" d="M14.6695 0.896252L55.6957 27.2703C57.3023 28.3049 58.277 30.0888 58.277 32.0008C58.277 33.913 57.3022 35.6973 55.6939 36.7325L14.6787 63.0995C13.7659 63.6915 12.7026 64 11.6263 64C10.6899 64 9.7595 63.7646 8.93336 63.3132C7.12332 62.3261 6 60.434 6 58.3737V5.62792C6 3.70493 6.97854 1.92857 8.58064 0.897675L8.92616 0.69234C10.7286 -0.297817 12.9557 -0.222471 14.6695 0.896252Z" /> </g> </svg> </span> </span> </span> </button> </div> </div> </div> </div> </div> </div> <div class="toast-container position-fixed bottom-0 end-0 p-3"> <div id="copyToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true"> <div class="toast-header"> Zawartość została skopiowana do schowka <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Zamknij"></button> </div> </div> </div> <script> ( function ( body ) { 'use strict'; body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' ); } )( document.body ); </script> <script> /* <![CDATA[ */var tribe_l10n_datatables = {"aria":{"sort_ascending":": activate to sort column ascending","sort_descending":": activate to sort column descending"},"length_menu":"Show _MENU_ entries","empty_table":"No data available in table","info":"Showing _START_ to _END_ of _TOTAL_ entries","info_empty":"Showing 0 to 0 of 0 entries","info_filtered":"(filtered from _MAX_ total entries)","zero_records":"No matching records found","search":"Search:","all_selected_text":"All items on this page were selected. ","select_all_link":"Select all pages","clear_selection":"Clear Selection.","pagination":{"all":"All","next":"Next","previous":"Previous"},"select":{"rows":{"0":"","_":": Selected %d rows","1":": Selected 1 row"}},"datepicker":{"dayNames":["niedziela","poniedzia\u0142ek","wtorek","\u015broda","czwartek","pi\u0105tek","sobota"],"dayNamesShort":["niedz.","pon.","wt.","\u015br.","czw.","pt.","sob."],"dayNamesMin":["N","P","W","\u015a","C","P","S"],"monthNames":["stycze\u0144","luty","marzec","kwiecie\u0144","maj","czerwiec","lipiec","sierpie\u0144","wrzesie\u0144","pa\u017adziernik","listopad","grudzie\u0144"],"monthNamesShort":["stycze\u0144","luty","marzec","kwiecie\u0144","maj","czerwiec","lipiec","sierpie\u0144","wrzesie\u0144","pa\u017adziernik","listopad","grudzie\u0144"],"monthNamesMin":["sty","lut","mar","kwi","maj","cze","lip","sie","wrz","pa\u017a","lis","gru"],"nextText":"Next","prevText":"Prev","currentText":"Today","closeText":"Done","today":"Today","clear":"Clear"}};/* ]]> */ </script><style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script type="text/javascript" src="https://pan.pl/wp/wp-includes/js/dist/hooks.js?ver=5b4ec27a7b82f601224a" id="wp-hooks-js"></script> <script type="text/javascript" src="https://pan.pl/wp/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://pan.pl/app/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.3" id="swv-js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/pan.pl\/wp-json\/", "namespace": "contact-form-7\/v1" } }; /* ]]> */ </script> <script type="text/javascript" src="https://pan.pl/app/plugins/contact-form-7/includes/js/index.js?ver=6.0.3" id="contact-form-7-js"></script> <script type="text/javascript" src="https://pan.pl/app/themes/theforcecode/dist/frontend/runtime-7c1767a6.js?ver=1.0.0" id="wpackio_theforcecodefrontend_frontend_runtime_7c1767a6_js_script-js"></script> <script type="text/javascript" src="https://pan.pl/app/themes/theforcecode/dist/frontend/vendors~main-bd2c4323.js?ver=1.0.0" id="wpackio_theforcecodefrontend_frontend_vendors_main_bd2c4323_js_script-js"></script> <script type="text/javascript" src="https://pan.pl/app/themes/theforcecode/dist/frontend/main-ed8f37d3.js?ver=1.0.0" id="wpackio_theforcecodefrontend_frontend_main_ed8f37d3_js_script-js"></script> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC3K9g1b3MMzUhTWoaqdwWaCDV6uXhH7gs&callback=initMap&ver=6.7.1" id="google-map-javascript-api-js" async="async" data-wp-strategy="async"></script> </body> </html>