diff --git a/404.html b/404.html index bea845c4..4a85e12f 100644 --- a/404.html +++ b/404.html @@ -25,7 +25,7 @@ - + @@ -70,7 +70,7 @@

- - + + diff --git a/assistant.css b/assistant.css index dd604b7e..c7481b18 100644 --- a/assistant.css +++ b/assistant.css @@ -113,7 +113,7 @@ .msa-form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #eceff0; background: #fff; } .msa-input { flex: 1; border: 1px solid #d6dcde; border-radius: 10px; - padding: 10px 12px; font-size: 14.5px; font-family: inherit; color: var(--msa-text); + padding: 10px 12px; font-size: 16px; font-family: inherit; color: var(--msa-text); /* 16px avoids iOS Safari focus-zoom */ } .msa-input:focus { outline: 2px solid var(--msa-accent); outline-offset: -1px; border-color: var(--msa-accent); } .msa-send { @@ -121,7 +121,7 @@ width: 44px; cursor: pointer; font-size: 16px; } .msa-send:hover { background: var(--msa-accent-dark); } -.msa-foot { margin: 0; padding: 8px 12px; font-size: 11.5px; color: #8a979d; background: #fff; text-align: center; } +.msa-foot { margin: 0; padding: 8px 12px; font-size: 11.5px; color: #5a6b72; background: #fff; text-align: center; } /* was #8a979d (3.0:1) — darkened for WCAG AA */ @media (max-width: 480px) { .msa-root { right: 12px; bottom: 12px; } diff --git a/css/base/_typography.css b/css/base/_typography.css index e69de29b..abc45dc1 100644 --- a/css/base/_typography.css +++ b/css/base/_typography.css @@ -0,0 +1,50 @@ +/* ========================================================================== + Design tokens + -------------------------------------------------------------------------- + Single source of truth for values previously hard-coded as literals across + the stylesheets (e.g. #2D738C ~98×, #101828 ~103×). New/refactored rules + should reference these instead of raw hex. Values match the existing + dominant usages, so introducing this file is visually neutral — migrating + older literals to var() can happen incrementally. + ========================================================================== */ +:root { + /* Brand — teal */ + --teal: #2D738C; + --teal-600: #255E73; /* button hover */ + --teal-800: #153C4E; /* deep accents */ + + /* Brand — orange. NOTE: the site currently ships two primary oranges: + --orange (event pages / logo family) and --orange-cta (homepage buttons). + They read as slightly different brands side by side; unify on one once the + canonical value is confirmed. */ + --orange: #F2762E; + --orange-600: #E85D2A; + --orange-cta: #FA7850; + --orange-text: #B4531A; /* AA-safe orange for text on white */ + + /* Ink / text */ + --ink: #101828; + --text: #344054; + --muted: #475467; + --muted-2: #667085; /* smallest muted text that still meets AA on white */ + + /* Surfaces / lines */ + --bg: #F9FAFB; + --line: #EAECF0; + --line-2: #E4E7EC; + + /* Radius scale */ + --r-sm: 8px; + --r-md: 12px; + --r-lg: 16px; + --r-pill: 999px; + + /* Type scale (available for future heading normalisation) */ + --fs-h1: 60px; + --fs-h2: 36px; + --fs-h3: 22px; + --fs-body: 16px; + + /* Section vertical rhythm */ + --space-section: 112px; +} diff --git a/css/components/_buttons.css b/css/components/_buttons.css index b677e0b0..9a11c370 100644 --- a/css/components/_buttons.css +++ b/css/components/_buttons.css @@ -59,7 +59,7 @@ color: #344054; border: 1px solid #D0D5DD; } -.btn-secondary:hover { background-color: #F9FAFB; border-color: #98A2B3; color: #101828; } +.btn-secondary:hover { background-color: #F9FAFB; border-color: #667085; color: #101828; } /* 3. Gumbi z ikonami */ @@ -72,7 +72,7 @@ border: 1px solid #D0D5DD; border-radius: 8px; box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); - color: #98A2B3; + color: #667085; font-size: 18px; text-decoration: none; } diff --git a/css/components/_cards.css b/css/components/_cards.css index 29d09d25..b7c0f0c0 100644 --- a/css/components/_cards.css +++ b/css/components/_cards.css @@ -14,7 +14,7 @@ /* 1. Kartice z novicami (.news-card) */ .news-card { - width: 405.33px; + width: 100%; /* was fixed 405.33px — now fills its grid cell */ background: transparent; text-align: left; } @@ -30,6 +30,10 @@ .news-card .card-content { color: #FFFFFF; } +/* Match the hover lift used by news-hub / blog cards for a consistent + "this is clickable" cue. */ +.news-card-media { transition: transform 0.18s ease, box-shadow 0.18s ease; } +.news-card:hover .news-card-media { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(9, 18, 26, 0.34); } .news-card .author { font-size: 14px; diff --git a/css/components/_lang-banner.css b/css/components/_lang-banner.css index e3c5c7fc..d983aa89 100644 --- a/css/components/_lang-banner.css +++ b/css/components/_lang-banner.css @@ -46,7 +46,7 @@ border: none; font-size: 22px; line-height: 1; - color: #98A2B3; + color: #667085; cursor: pointer; padding: 0 4px; } diff --git a/css/components/_lightbox.css b/css/components/_lightbox.css index 7d529e7c..c9d99d85 100644 --- a/css/components/_lightbox.css +++ b/css/components/_lightbox.css @@ -40,7 +40,7 @@ .lightbox.is-open { display: flex; } .lightbox-img { max-width: 92vw; max-height: 82vh; object-fit: contain; - border-radius: 6px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); + border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); user-select: none; -webkit-user-drag: none; } .lightbox-close, .lightbox-prev, .lightbox-next { diff --git a/css/layout/_footer.css b/css/layout/_footer.css index 3647a8a3..f5037a0e 100644 --- a/css/layout/_footer.css +++ b/css/layout/_footer.css @@ -21,8 +21,10 @@ footer { } .footer-container { - width: 1280px; + width: 100%; + max-width: 1280px; margin: 0 auto; + padding: 0 24px; } .footer-main { diff --git a/css/layout/_header.css b/css/layout/_header.css index 82043e6f..e9a95f65 100644 --- a/css/layout/_header.css +++ b/css/layout/_header.css @@ -95,6 +95,12 @@ .navigation > .menu-item > a:hover { color: #101828; } +.navigation > .menu-item > a:focus-visible { + outline: 2px solid var(--teal); + outline-offset: 3px; + border-radius: 4px; + color: #101828; +} /* Poudarjanje aktivne strani na namizju */ .navigation .menu-item.active-page > a { @@ -237,9 +243,11 @@ white-space: nowrap; } -.dropdown-menu a:hover { +.dropdown-menu a:hover, +.dropdown-menu a:focus-visible { background-color: #F9FAFB; color: #2D738C; + outline: none; } .mobile-menu-icon, .mobile-nav-panel { diff --git a/css/main.css b/css/main.css index 26788182..0b3f9a17 100644 --- a/css/main.css +++ b/css/main.css @@ -15,36 +15,36 @@ */ /* 1. Base Styles */ -@import 'base/_base.css?v=64a53dd6'; -@import 'base/_typography.css?v=64a53dd6'; +@import 'base/_base.css?v=1f64b22f'; +@import 'base/_typography.css?v=1f64b22f'; /* 2. Layout Components */ -@import 'layout/_header.css?v=64a53dd6'; -@import 'layout/_footer.css?v=64a53dd6'; +@import 'layout/_header.css?v=1f64b22f'; +@import 'layout/_footer.css?v=1f64b22f'; /* 3. Reusable Components */ -@import 'components/_buttons.css?v=64a53dd6'; -@import 'components/_cards.css?v=64a53dd6'; -@import 'components/_lang-banner.css?v=64a53dd6'; -@import 'components/_lightbox.css?v=64a53dd6'; +@import 'components/_buttons.css?v=1f64b22f'; +@import 'components/_cards.css?v=1f64b22f'; +@import 'components/_lang-banner.css?v=1f64b22f'; +@import 'components/_lightbox.css?v=1f64b22f'; /* 4. Page-specific Styles */ -@import 'pages/_home.css?v=64a53dd6'; -@import 'pages/_projects.css?v=64a53dd6'; -@import 'pages/_article.css?v=64a53dd6'; -@import 'pages/_about.css?v=64a53dd6'; -@import 'pages/_timeline.css?v=64a53dd6'; -@import 'pages/_guide.css?v=64a53dd6'; -@import 'pages/_faq.css?v=64a53dd6'; -@import 'pages/_blog.css?v=64a53dd6'; -@import 'pages/_news.css?v=64a53dd6'; -@import 'pages/_member.css?v=64a53dd6'; -@import 'pages/_support.css?v=64a53dd6'; -@import 'pages/_hub.css?v=64a53dd6'; -@import 'pages/_legal.css?v=64a53dd6'; -@import 'pages/_gallery.css?v=64a53dd6'; -@import 'pages/_press.css?v=64a53dd6'; -@import 'pages/_event.css?v=64a53dd6'; +@import 'pages/_home.css?v=1f64b22f'; +@import 'pages/_projects.css?v=1f64b22f'; +@import 'pages/_article.css?v=1f64b22f'; +@import 'pages/_about.css?v=1f64b22f'; +@import 'pages/_timeline.css?v=1f64b22f'; +@import 'pages/_guide.css?v=1f64b22f'; +@import 'pages/_faq.css?v=1f64b22f'; +@import 'pages/_blog.css?v=1f64b22f'; +@import 'pages/_news.css?v=1f64b22f'; +@import 'pages/_member.css?v=1f64b22f'; +@import 'pages/_support.css?v=1f64b22f'; +@import 'pages/_hub.css?v=1f64b22f'; +@import 'pages/_legal.css?v=1f64b22f'; +@import 'pages/_gallery.css?v=1f64b22f'; +@import 'pages/_press.css?v=1f64b22f'; +@import 'pages/_event.css?v=1f64b22f'; /* Loaded last so the shared filter bar wins over per-page chip styles. */ -@import 'pages/_filterbar.css?v=64a53dd6'; \ No newline at end of file +@import 'pages/_filterbar.css?v=1f64b22f'; \ No newline at end of file diff --git a/css/pages/_about.css b/css/pages/_about.css index ba74ce79..49990895 100644 --- a/css/pages/_about.css +++ b/css/pages/_about.css @@ -571,4 +571,4 @@ font-size: 17px; line-height: 29px; color: #475467; } .appr-thanks strong { display: block; margin-top: 10px; color: #101828; font-weight: 600; } -.appreciation-note { font-size: 13px; color: #98A2B3; margin: 26px auto 0; font-style: italic; } +.appreciation-note { font-size: 13px; color: #667085; margin: 26px auto 0; font-style: italic; } diff --git a/css/pages/_article.css b/css/pages/_article.css index 84380c01..cb05d56a 100644 --- a/css/pages/_article.css +++ b/css/pages/_article.css @@ -228,7 +228,7 @@ .article-publish-date { font-size: 16px; font-weight: 600; - color: #FA7850; + color: #B4531A; /* was #FA7850 (2.7:1) — darkened for WCAG AA on white */ margin-bottom: 12px; } @@ -662,7 +662,7 @@ .image-placeholder .image-placeholder-box .ph-icon { font-size: 32px; - color: #98A2B3; + color: #667085; } .image-placeholder .ph-label { @@ -709,7 +709,7 @@ align-items: center; justify-content: center; gap: 8px; - color: #98A2B3; + color: #667085; box-sizing: border-box; padding: 16px; text-align: center; @@ -739,7 +739,7 @@ /* Small "illustrative image" tag prepended to symbolic blog/news photo captions */ .fig-illustrative { font-weight: 600; color: #667085; } -.fig-illustrative i { font-size: 11px; color: #98A2B3; margin-right: 3px; } +.fig-illustrative i { font-size: 11px; color: #667085; margin-right: 3px; } /* Prose posts (personal stories) — no scrollspy sidebar, single centred column */ .article-page--prose .article-sidebar { display: none; } diff --git a/css/pages/_blog.css b/css/pages/_blog.css index bfe60c59..8cdf5b07 100644 --- a/css/pages/_blog.css +++ b/css/pages/_blog.css @@ -55,7 +55,7 @@ display: inline-block; font-size: 12px; font-weight: 600; - color: #98A2B3; + color: #667085; border: 1px dashed #D0D5DD; border-radius: 999px; padding: 3px 10px; @@ -77,7 +77,7 @@ font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; - color: #98A2B3; + color: #667085; margin: 0 0 16px; } diff --git a/css/pages/_event.css b/css/pages/_event.css index d5571f7d..dbf11104 100644 --- a/css/pages/_event.css +++ b/css/pages/_event.css @@ -52,7 +52,7 @@ background: #FFF1E8; color: #F2762E; font-size: 18px; } .event-key-text { display: flex; flex-direction: column; gap: 1px; } -.event-key-k { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #98A2B3; } +.event-key-k { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #667085; } .event-key-v { font-size: 17px; line-height: 24px; color: #101828; } .event-key-stream { font-size: 15px; color: #667085; margin: 4px 0 22px; } .event-key-stream i { color: #2D738C; margin-right: 6px; } @@ -67,7 +67,7 @@ gap: 20px 48px; max-width: 640px; margin: 26px auto 0; padding-top: 26px; border-top: 1px solid #EAECF0; } .event-partner { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; } -.event-partner-role { order: -1; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #98A2B3; } +.event-partner-role { order: -1; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #667085; } .event-partner img { display: block; height: 30px; width: auto; object-fit: contain; } .event-partner--lead img { height: 34px; } .event-partner-name { font-size: 15px; font-weight: 700; color: #344054; } @@ -83,7 +83,7 @@ /* ---- inline photos between paragraphs (breaks up the text) ---- */ .news-article-body .event-inline { margin: 30px 0; } .news-article-body .event-inline img { width: 100%; height: auto; border-radius: 14px; display: block; } -.news-article-body .event-inline figcaption { margin-top: 8px; font-size: 13px; color: #98A2B3; text-align: center; } +.news-article-body .event-inline figcaption { margin-top: 8px; font-size: 13px; color: #667085; text-align: center; } @media (max-width: 560px) { .event-key-grid { grid-template-columns: 1fr; max-width: 340px; } @@ -139,7 +139,7 @@ .msreg .ms-label { display: block; font-size: 14px; font-weight: 700; color: #344054; margin: 22px 0 8px; } .msreg .ms-label:first-child { margin-top: 0; } .msreg .ms-req { color: #F2762E; } -.msreg .ms-note { font-size: 13px; color: #98A2B3; margin: 6px 0 0; } +.msreg .ms-note { font-size: 13px; color: #667085; margin: 6px 0 0; } .msreg .ms-form textarea { margin-top: 0; } .msreg .er-consents { margin-top: 26px; } .msreg .ms-nav { justify-content: flex-end; } @@ -155,8 +155,8 @@ .msreg .ev-plans { margin-top: 24px; border: 1px solid #EAECF0; border-radius: 12px; background: #FBFCFD; padding: 4px 18px 20px; } .msreg .ev-plans[hidden] { display: none; } .msreg .ev-plans-title { font-size: 16px; font-weight: 700; color: #101828; margin: 16px 0 2px; } -.msreg .ev-plans-lead { font-size: 13px; color: #98A2B3; margin: 0 0 6px; } -.msreg .ev-subhead { font-size: 13px; font-weight: 700; color: #98A2B3; text-transform: uppercase; letter-spacing: 0.05em; margin: 20px 0 10px; } +.msreg .ev-plans-lead { font-size: 13px; color: #667085; margin: 0 0 6px; } +.msreg .ev-subhead { font-size: 13px; font-weight: 700; color: #667085; text-transform: uppercase; letter-spacing: 0.05em; margin: 20px 0 10px; } /* ---- print / PDF export (clean, faithful colours) ---- */ @media print { diff --git a/css/pages/_filterbar.css b/css/pages/_filterbar.css index 81e20105..1537aae5 100644 --- a/css/pages/_filterbar.css +++ b/css/pages/_filterbar.css @@ -137,10 +137,10 @@ outline: 0; background: transparent; font-family: inherit; - font-size: 15px; + font-size: 16px; /* 16px avoids iOS Safari focus-zoom */ color: #101828; } -.filterbar-search-field input::placeholder { color: #98A2B3; } +.filterbar-search-field input::placeholder { color: #667085; } .filterbar-search-close { flex: 0 0 auto; diff --git a/css/pages/_gallery.css b/css/pages/_gallery.css index 9e8a5caf..ecc57fe5 100644 --- a/css/pages/_gallery.css +++ b/css/pages/_gallery.css @@ -121,7 +121,7 @@ .album-info { padding: 14px 16px 16px; } .album-info h3 { font-size: 17px; line-height: 1.3; margin: 0 0 3px; font-weight: 700; color: #101828; transition: color 0.2s ease; } .album-card:hover .album-info h3 { color: #2D738C; } -.album-date { font-size: 12.5px; color: #98A2B3; margin: 0 0 7px; display: flex; align-items: center; gap: 6px; } +.album-date { font-size: 12.5px; color: #667085; margin: 0 0 7px; display: flex; align-items: center; gap: 6px; } .album-date i { font-size: 12px; color: #2D738C; } .album-meta { font-size: 13px; color: #667085; margin: 0; diff --git a/css/pages/_guide.css b/css/pages/_guide.css index b2c1906d..161f5cd4 100644 --- a/css/pages/_guide.css +++ b/css/pages/_guide.css @@ -524,7 +524,7 @@ } .guide-feedback-btn i { font-size: 13px; - color: #98A2B3; + color: #667085; } .guide-feedback-btn[data-vote="yes"]:hover { border-color: #12B76A; @@ -692,7 +692,7 @@ border-radius: 10px; background: #FFFFFF; } -.guide-field input[type="text"]::placeholder { color: #98A2B3; } +.guide-field input[type="text"]::placeholder { color: #667085; } .guide-field input[type="text"]:focus { outline: none; border-color: #2D738C; box-shadow: 0 0 0 3px rgba(45,115,140,0.12); } .guide-route-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; } @@ -787,7 +787,7 @@ font-weight: 700; letter-spacing: .04em; text-transform: uppercase; - color: #98A2B3; + color: #667085; } /* Stage accordion (six journey stages) */ @@ -853,7 +853,7 @@ } .guide-cat-caret { flex-shrink: 0; - color: #98A2B3; + color: #667085; font-size: 14px; transition: transform .2s ease; } @@ -937,8 +937,8 @@ border-bottom: 2px solid #F2F4F7; } .route-report-logo { height: 46px; width: auto; } -.route-report h1 { font-size: 27px; font-weight: 800; letter-spacing: -.02em; margin: 0; color: #101828; } -.route-report-date { margin: 6px 0 0; font-size: 13px; color: #98A2B3; } +.route-report h1 { font-size: 27px; font-weight: 700; letter-spacing: -.02em; margin: 0; color: #101828; } /* 700: Inter loads 400-700; 800 was synthesized */ +.route-report-date { margin: 6px 0 0; font-size: 13px; color: #667085; } .route-report-intro { color: #475467; line-height: 25px; margin: 0 0 8px; } .route-report h2 { font-size: 17px; color: #101828; margin: 24px 0 10px; } .route-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 6px; } @@ -952,7 +952,7 @@ border-radius: 10px; background: #FCFCFD; } -.route-chip span { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: #98A2B3; } +.route-chip span { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: #667085; } .route-chip strong { font-size: 14px; font-weight: 600; color: #101828; } .route-steps { list-style: none; counter-reset: rstep; padding: 0; margin: 0; } .route-steps li { diff --git a/css/pages/_home.css b/css/pages/_home.css index 2d683985..b6ed7ff0 100644 --- a/css/pages/_home.css +++ b/css/pages/_home.css @@ -390,10 +390,16 @@ } .news-articles { - display: flex; + display: grid; + grid-template-columns: repeat(3, 1fr); justify-content: center; gap: 32px; - margin-bottom: 64px; + max-width: 1264px; + margin: 0 auto 64px; +} +/* Tablet/small-laptop: 2-up instead of three cramped cards */ +@media (max-width: 1024px) { + .news-articles { grid-template-columns: repeat(2, 1fr); max-width: 840px; } } /* 6. Testimonials Section */ @@ -431,7 +437,7 @@ gap: 24px; width: 846px; height: 800px; - overflow-y: scroll; + overflow-y: auto; /* was scroll — no permanent scrollbar gutter when content fits */ padding-right: 15px; } .testimonials-columns::-webkit-scrollbar { @@ -578,6 +584,10 @@ margin: 0 auto 64px; text-align: left; } +/* Tablet/small-laptop: 2 columns before collapsing to 1 on phones */ +@media (max-width: 1024px) { + .faq-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; } +} .faq-item { display: flex; @@ -814,8 +824,8 @@ line-height: 24px; } .news-articles { - flex-direction: column; - align-items: center; + grid-template-columns: 1fr; + justify-items: center; gap: 48px; } diff --git a/css/pages/_member.css b/css/pages/_member.css index ce92075f..d4db9f4e 100644 --- a/css/pages/_member.css +++ b/css/pages/_member.css @@ -5,7 +5,7 @@ .mm-h2 { font-size: 32px; line-height: 1.15; text-align: center; margin: 0 0 12px; color: #101828; } .mm-h2--light { color: #FFFFFF; } .mm-lead { text-align: center; max-width: 640px; margin: 0 auto 36px; font-size: 18px; line-height: 28px; color: #475467; } -.mm-note { font-size: 12px; color: #98A2B3; } +.mm-note { font-size: 12px; color: #667085; } .mm-note--center { text-align: center; margin-top: 20px; } .mm-center { text-align: center; margin-top: 32px; } .mm-section { max-width: 1120px; margin: 0 auto; padding: 72px 24px; } @@ -110,7 +110,7 @@ .mm-real-body { padding: 18px; } .mm-real-body h3 { font-size: 17px; margin: 0 0 6px; } .mm-real-body p { font-size: 14px; line-height: 21px; color: #667085; margin: 0 0 10px; } -.mm-real-link { font-size: 14px; font-weight: 600; color: var(--mm-orange); display: inline-flex; align-items: center; gap: 6px; } +.mm-real-link { font-size: 14px; font-weight: 600; color: #B4531A; display: inline-flex; align-items: center; gap: 6px; } /* was --mm-orange (2.8:1) — darkened for WCAG AA */ /* ---- testimonials ---- */ .mm-tests { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; } @@ -118,7 +118,7 @@ .mm-test blockquote { margin: 0 0 18px; font-size: 17px; line-height: 27px; color: #101828; } .mm-test blockquote::before { content: '\201C'; color: var(--mm-orange); font-size: 40px; line-height: 0; vertical-align: -18px; margin-right: 4px; } .mm-test figcaption strong { display: block; font-size: 15px; } -.mm-test figcaption span { font-size: 13px; color: #98A2B3; } +.mm-test figcaption span { font-size: 13px; color: #667085; } /* ---- projects showcase ---- */ .mm-shows { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; } @@ -155,14 +155,14 @@ .ms-progress[hidden] { display: none; } .ms-progress-track { height: 6px; background: #F2F4F7; border-radius: 999px; overflow: hidden; } .ms-progress-bar { height: 100%; width: 0; background: var(--mm-orange); border-radius: 999px; transition: width 0.3s ease; } -.ms-progress-text { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; color: #98A2B3; } +.ms-progress-text { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; color: #667085; } .ms-alert { background: #FEF3F2; color: #B42318; border: 1px solid #FECDCA; border-radius: 10px; padding: 10px 14px; font-size: 14px; margin-bottom: 16px; } .ms-alert[hidden] { display: none; } /* honeypot: off-screen, hidden from users and assistive tech, visible to naive bots */ .ms-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; } .ms-step[hidden] { display: none; } .ms-step h3 { font-size: 20px; margin: 0 0 6px; } -.ms-hint { font-size: 14px; color: #98A2B3; margin: 0 0 16px; } +.ms-hint { font-size: 14px; color: #667085; margin: 0 0 16px; } /* path choice: two rich, colour-accented cards (student = orange, supporter = teal) */ .ms-step--path { text-align: center; } @@ -189,7 +189,7 @@ .ms-field { display: flex; flex-direction: column; gap: 6px; } .ms-field span { font-size: 13px; font-weight: 600; color: #344054; } .ms-field input, .ms-field select, .ms-form textarea { - font-family: inherit; font-size: 15px; color: #101828; + font-family: inherit; font-size: 16px; color: #101828; /* 16px avoids iOS Safari focus-zoom */ padding: 11px 14px; border: 1px solid #D0D5DD; border-radius: 10px; background: #FFFFFF; width: 100%; } .ms-field input:focus, .ms-field select:focus, .ms-form textarea:focus { outline: none; border-color: var(--mm-orange); box-shadow: 0 0 0 3px rgba(242,118,46,0.12); } @@ -223,7 +223,7 @@ .ms-success-icon { font-size: 48px; color: #2E9E6B; margin-bottom: 14px; } .ms-success-title { font-size: 26px; margin: 0 0 10px; } .ms-success-text { color: #667085; font-size: 16px; line-height: 25px; max-width: 520px; margin: 0 auto 24px; } -.ms-success-next { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #98A2B3; margin: 0 0 14px; } +.ms-success-next { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #667085; margin: 0 0 14px; } .ms-success-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; } /* allow long labels (e.g. MK "Прочитајте го Водичот за добредојде") to wrap inside the button instead of overflowing the box (base .btn is nowrap) */ diff --git a/css/pages/_news.css b/css/pages/_news.css index f5d0a68a..ed3f5b80 100644 --- a/css/pages/_news.css +++ b/css/pages/_news.css @@ -88,7 +88,7 @@ } .newshub-media .news-badge i { font-size: 11px; } .newshub-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; } -.newshub-date { font-size: 13px; font-weight: 600; color: #98A2B3; margin: 0; } +.newshub-date { font-size: 13px; font-weight: 600; color: #667085; margin: 0; } .newshub-card h3 { margin: 0; font-size: 19px; line-height: 1.3; } .newshub-card h3 a { color: #101828; text-decoration: none; } .newshub-card h3 a:hover { color: #2D738C; } @@ -123,7 +123,7 @@ .news-article-date { color: #667085; font-size: 15px; margin: 0 0 24px; } .news-article-hero { margin: 0 0 28px; } .news-article-hero img { width: 100%; height: auto; border-radius: 14px; display: block; } -.news-article-hero figcaption { margin-top: 8px; font-size: 13px; color: #98A2B3; } +.news-article-hero figcaption { margin-top: 8px; font-size: 13px; color: #667085; } .news-article-hero figcaption a { color: #667085; text-decoration: underline; } .news-article-body p { font-size: 18px; line-height: 30px; color: #344054; margin: 0 0 18px; } .news-source { diff --git a/css/pages/_press.css b/css/pages/_press.css index e53cabc0..dbbc97a3 100644 --- a/css/pages/_press.css +++ b/css/pages/_press.css @@ -122,7 +122,7 @@ border-radius: 999px; padding: 4px 10px; } -.press-list .host { color: #98A2B3; font-size: 13px; } +.press-list .host { color: #667085; font-size: 13px; } .press-list .desc { flex-basis: 100%; margin: 6px 0 0; color: #475467; font-size: 14px; line-height: 22px; } /* Closing note, matched to .faq-contact panel */ diff --git a/en/about-us/index.html b/en/about-us/index.html index eb21d561..34bb96b4 100644 --- a/en/about-us/index.html +++ b/en/about-us/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -572,8 +572,8 @@ - - - + + + diff --git a/en/become-a-member/index.html b/en/become-a-member/index.html index f441c2f1..b7505d1e 100644 --- a/en/become-a-member/index.html +++ b/en/become-a-member/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -624,10 +624,10 @@ - - + + - - + + diff --git a/en/blog/ad-futura-scholarship-slovenia-2026/index.html b/en/blog/ad-futura-scholarship-slovenia-2026/index.html index a3556ffb..3dfa0612 100644 --- a/en/blog/ad-futura-scholarship-slovenia-2026/index.html +++ b/en/blog/ad-futura-scholarship-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -444,9 +444,9 @@ - + - - + + diff --git a/en/blog/how-i-coped-with-leaving-home/index.html b/en/blog/how-i-coped-with-leaving-home/index.html index 65d7c9e8..4d34bc49 100644 --- a/en/blog/how-i-coped-with-leaving-home/index.html +++ b/en/blog/how-i-coped-with-leaving-home/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -348,9 +348,9 @@ - + - - + + diff --git a/en/blog/how-to-open-slovenian-bank-account/index.html b/en/blog/how-to-open-slovenian-bank-account/index.html index b9af3c2c..2e418654 100644 --- a/en/blog/how-to-open-slovenian-bank-account/index.html +++ b/en/blog/how-to-open-slovenian-bank-account/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -422,9 +422,9 @@ - + - - + + diff --git a/en/blog/index.html b/en/blog/index.html index 3a1f6b78..4c203b86 100644 --- a/en/blog/index.html +++ b/en/blog/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -434,11 +434,11 @@ - + - - - - + + + + diff --git a/en/blog/learning-slovene-where-to-start/index.html b/en/blog/learning-slovene-where-to-start/index.html index 4fa6c160..ec7410fb 100644 --- a/en/blog/learning-slovene-where-to-start/index.html +++ b/en/blog/learning-slovene-where-to-start/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -381,9 +381,9 @@ - + - - + + diff --git a/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html b/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html index b6634c2a..559b2ef0 100644 --- a/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html +++ b/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -393,9 +393,9 @@ - + - - + + diff --git a/en/blog/welcome-days-slovenian-universities-2026-2027/index.html b/en/blog/welcome-days-slovenian-universities-2026-2027/index.html index a3a67f95..5bcdbcde 100644 --- a/en/blog/welcome-days-slovenian-universities-2026-2027/index.html +++ b/en/blog/welcome-days-slovenian-universities-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,9 +384,9 @@ - + - - + + diff --git a/en/blog/where-to-search-for-accommodation-in-slovenia/index.html b/en/blog/where-to-search-for-accommodation-in-slovenia/index.html index ee0ecfda..2999095b 100644 --- a/en/blog/where-to-search-for-accommodation-in-slovenia/index.html +++ b/en/blog/where-to-search-for-accommodation-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -437,9 +437,9 @@ - + - - + + diff --git a/en/cookie-policy/index.html b/en/cookie-policy/index.html index b4acdf9c..8f88c479 100644 --- a/en/cookie-policy/index.html +++ b/en/cookie-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -322,8 +322,8 @@ - - - + + + diff --git a/en/faq/index.html b/en/faq/index.html index 6ecf87c9..71951929 100644 --- a/en/faq/index.html +++ b/en/faq/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -58,7 +58,7 @@ - + @@ -539,7 +539,7 @@ - - + + diff --git a/en/gallery/index.html b/en/gallery/index.html index 1bfce38d..cba4a2f4 100644 --- a/en/gallery/index.html +++ b/en/gallery/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -648,8 +648,8 @@ - - - + + + diff --git a/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html b/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html index 465d90c6..b81661f4 100644 --- a/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html +++ b/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + diff --git a/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html b/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html index 9c3f4829..2be35714 100644 --- a/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html +++ b/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/en/get-to-know-macedonia/index.html b/en/get-to-know-macedonia/index.html index 8b927d06..90434a3d 100644 --- a/en/get-to-know-macedonia/index.html +++ b/en/get-to-know-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -372,8 +372,8 @@ - - - + + + diff --git a/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html b/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html index d817bbd3..a7668364 100644 --- a/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html +++ b/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html b/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html index 20ca9ac6..7d3a770a 100644 --- a/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html +++ b/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -397,8 +397,8 @@ - - - + + + diff --git a/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html b/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html index dc1bc8b8..a2f2a84d 100644 --- a/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html +++ b/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -387,8 +387,8 @@ - - - + + + diff --git a/en/get-to-know-macedonia/welcome-to-macedonia/index.html b/en/get-to-know-macedonia/welcome-to-macedonia/index.html index 75c686dc..6b63170f 100644 --- a/en/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/en/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,8 +384,8 @@ - - - + + + diff --git a/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html b/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html index a41ae6ce..bc018c49 100644 --- a/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html +++ b/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -389,8 +389,8 @@ - - - + + + diff --git a/en/get-to-know-slovenia/index.html b/en/get-to-know-slovenia/index.html index bdb4c568..09c0e615 100644 --- a/en/get-to-know-slovenia/index.html +++ b/en/get-to-know-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -372,8 +372,8 @@ - - - + + + diff --git a/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html b/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html index e3f7dbef..ebfc635f 100644 --- a/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html +++ b/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,8 +385,8 @@ - - - + + + diff --git a/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html b/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html index 26622ea6..4028e804 100644 --- a/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html +++ b/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html b/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html index a1532eea..adbf534a 100644 --- a/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html +++ b/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,8 +406,8 @@ - - - + + + diff --git a/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html b/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html index 7845889d..417919ac 100644 --- a/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html +++ b/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,8 +391,8 @@ - - - + + + diff --git a/en/get-to-know-slovenia/welcome-to-slovenia/index.html b/en/get-to-know-slovenia/welcome-to-slovenia/index.html index 9e67a1c3..96d0a22d 100644 --- a/en/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/en/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -362,8 +362,8 @@ - - - + + + diff --git a/en/index.html b/en/index.html index 032f643b..48f21694 100644 --- a/en/index.html +++ b/en/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -552,8 +552,8 @@ - - - + + + \ No newline at end of file diff --git a/en/legal/index.html b/en/legal/index.html index 0139a8d6..8cb84bb5 100644 --- a/en/legal/index.html +++ b/en/legal/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -317,8 +317,8 @@ - - - + + + diff --git a/en/msos-hub/index.html b/en/msos-hub/index.html index 605e68c2..d5d2e209 100644 --- a/en/msos-hub/index.html +++ b/en/msos-hub/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/en/news/index.html b/en/news/index.html index 31cca38b..ff40facc 100644 --- a/en/news/index.html +++ b/en/news/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -576,11 +576,11 @@ - - - + + + - - + + diff --git a/en/news/meet-student-slovenia-2026/index.html b/en/news/meet-student-slovenia-2026/index.html index 8323abfd..37ae5987 100644 --- a/en/news/meet-student-slovenia-2026/index.html +++ b/en/news/meet-student-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -429,10 +429,10 @@ - - + + - - + + diff --git a/en/news/proof-of-means-updated-2026/index.html b/en/news/proof-of-means-updated-2026/index.html index 96208fa4..38d8cb5a 100644 --- a/en/news/proof-of-means-updated-2026/index.html +++ b/en/news/proof-of-means-updated-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -302,9 +302,9 @@ - + - - + + diff --git a/en/press/index.html b/en/press/index.html index 24dd0ead..b37d43bd 100644 --- a/en/press/index.html +++ b/en/press/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -54,7 +54,7 @@ - + @@ -459,7 +459,7 @@ - - + + diff --git a/en/privacy-policy/index.html b/en/privacy-policy/index.html index cd272161..814abccb 100644 --- a/en/privacy-policy/index.html +++ b/en/privacy-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -368,8 +368,8 @@ - - - + + + diff --git a/en/projects/humanitarian-tournament-in-maribor/index.html b/en/projects/humanitarian-tournament-in-maribor/index.html index 93540b2d..d2c0b33a 100644 --- a/en/projects/humanitarian-tournament-in-maribor/index.html +++ b/en/projects/humanitarian-tournament-in-maribor/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -403,8 +403,8 @@ - - - + + + diff --git a/en/projects/in-memory-of-frosina-kulakova/index.html b/en/projects/in-memory-of-frosina-kulakova/index.html index e48d90cc..1fcc270e 100644 --- a/en/projects/in-memory-of-frosina-kulakova/index.html +++ b/en/projects/in-memory-of-frosina-kulakova/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -341,8 +341,8 @@ - - - + + + diff --git a/en/projects/in-memory-of-the-kochani-victims/index.html b/en/projects/in-memory-of-the-kochani-victims/index.html index b07a4f7b..e053794a 100644 --- a/en/projects/in-memory-of-the-kochani-victims/index.html +++ b/en/projects/in-memory-of-the-kochani-victims/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -349,8 +349,8 @@ - - - + + + diff --git a/en/projects/index.html b/en/projects/index.html index 885c0577..2a72cc4c 100644 --- a/en/projects/index.html +++ b/en/projects/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -511,9 +511,9 @@ - - - - + + + + \ No newline at end of file diff --git a/en/projects/joint-walk-path-around-the-wire/index.html b/en/projects/joint-walk-path-around-the-wire/index.html index c2adf4fe..64d85199 100644 --- a/en/projects/joint-walk-path-around-the-wire/index.html +++ b/en/projects/joint-walk-path-around-the-wire/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/en/projects/kafanska-vecher-2025/index.html b/en/projects/kafanska-vecher-2025/index.html index 685b963e..f2ee67a5 100644 --- a/en/projects/kafanska-vecher-2025/index.html +++ b/en/projects/kafanska-vecher-2025/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/en/projects/macedonian-student-night-in-ljubljana/index.html b/en/projects/macedonian-student-night-in-ljubljana/index.html index cf645c19..8ac0bc4c 100644 --- a/en/projects/macedonian-student-night-in-ljubljana/index.html +++ b/en/projects/macedonian-student-night-in-ljubljana/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -419,8 +419,8 @@ - - - + + + \ No newline at end of file diff --git a/en/projects/meet-student-slovenia-2023/index.html b/en/projects/meet-student-slovenia-2023/index.html index e515ee9a..0f45df11 100644 --- a/en/projects/meet-student-slovenia-2023/index.html +++ b/en/projects/meet-student-slovenia-2023/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -444,8 +444,8 @@ - - - + + + \ No newline at end of file diff --git a/en/projects/meet-student-slovenia-2024/index.html b/en/projects/meet-student-slovenia-2024/index.html index 6936c9f7..f39baa7d 100644 --- a/en/projects/meet-student-slovenia-2024/index.html +++ b/en/projects/meet-student-slovenia-2024/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -443,8 +443,8 @@ - - - + + + \ No newline at end of file diff --git a/en/projects/morning-coffee-in-front-of-ctk-2026/index.html b/en/projects/morning-coffee-in-front-of-ctk-2026/index.html index 2fda2d20..dd1d8e87 100644 --- a/en/projects/morning-coffee-in-front-of-ctk-2026/index.html +++ b/en/projects/morning-coffee-in-front-of-ctk-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + diff --git a/en/projects/morning-coffee-in-front-of-ctk/index.html b/en/projects/morning-coffee-in-front-of-ctk/index.html index d5cfbfb4..6fd0bea1 100644 --- a/en/projects/morning-coffee-in-front-of-ctk/index.html +++ b/en/projects/morning-coffee-in-front-of-ctk/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -408,8 +408,8 @@ - - - + + + \ No newline at end of file diff --git a/en/projects/paint-and-wine-at-sunset/index.html b/en/projects/paint-and-wine-at-sunset/index.html index a9c65bb7..36c97182 100644 --- a/en/projects/paint-and-wine-at-sunset/index.html +++ b/en/projects/paint-and-wine-at-sunset/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/en/projects/president-siljanovska-davkova-lecture-2026/index.html b/en/projects/president-siljanovska-davkova-lecture-2026/index.html index 055fefda..90af17a0 100644 --- a/en/projects/president-siljanovska-davkova-lecture-2026/index.html +++ b/en/projects/president-siljanovska-davkova-lecture-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -402,8 +402,8 @@ - - - + + + diff --git a/en/projects/sepa-webinar-2026/index.html b/en/projects/sepa-webinar-2026/index.html index 27113839..30400cc1 100644 --- a/en/projects/sepa-webinar-2026/index.html +++ b/en/projects/sepa-webinar-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -375,8 +375,8 @@ - - - + + + diff --git a/en/projects/teambuilding-hub-opening-2026/index.html b/en/projects/teambuilding-hub-opening-2026/index.html index 1eef3b1c..4e2f8679 100644 --- a/en/projects/teambuilding-hub-opening-2026/index.html +++ b/en/projects/teambuilding-hub-opening-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/en/projects/watching-handball-together-in-slovenia/index.html b/en/projects/watching-handball-together-in-slovenia/index.html index edc16eb9..c3432682 100644 --- a/en/projects/watching-handball-together-in-slovenia/index.html +++ b/en/projects/watching-handball-together-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/en/projects/watching-macedonia-wales-football-match/index.html b/en/projects/watching-macedonia-wales-football-match/index.html index 9939e9bd..01eccbbe 100644 --- a/en/projects/watching-macedonia-wales-football-match/index.html +++ b/en/projects/watching-macedonia-wales-football-match/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/en/student-welcome-guide/academic-life/index.html b/en/student-welcome-guide/academic-life/index.html index 6d528008..b030cf4b 100644 --- a/en/student-welcome-guide/academic-life/index.html +++ b/en/student-welcome-guide/academic-life/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/administrative-basics/index.html b/en/student-welcome-guide/administrative-basics/index.html index c0776c2e..9631493f 100644 --- a/en/student-welcome-guide/administrative-basics/index.html +++ b/en/student-welcome-guide/administrative-basics/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -354,9 +354,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/admission-and-enrolment/index.html b/en/student-welcome-guide/admission-and-enrolment/index.html index 824cba84..68470441 100644 --- a/en/student-welcome-guide/admission-and-enrolment/index.html +++ b/en/student-welcome-guide/admission-and-enrolment/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/application-deadlines/index.html b/en/student-welcome-guide/application-deadlines/index.html index bae0a3f7..84ddd812 100644 --- a/en/student-welcome-guide/application-deadlines/index.html +++ b/en/student-welcome-guide/application-deadlines/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -361,9 +361,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/arrival-checklist/index.html b/en/student-welcome-guide/arrival-checklist/index.html index a6cd1c0b..1dd33f77 100644 --- a/en/student-welcome-guide/arrival-checklist/index.html +++ b/en/student-welcome-guide/arrival-checklist/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,9 +379,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/bachelor-application/index.html b/en/student-welcome-guide/bachelor-application/index.html index 6d6d9c90..bf81d6da 100644 --- a/en/student-welcome-guide/bachelor-application/index.html +++ b/en/student-welcome-guide/bachelor-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,9 +391,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/choose-a-programme/index.html b/en/student-welcome-guide/choose-a-programme/index.html index 80425f17..a38c0c95 100644 --- a/en/student-welcome-guide/choose-a-programme/index.html +++ b/en/student-welcome-guide/choose-a-programme/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -382,9 +382,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/complete-student-journey/index.html b/en/student-welcome-guide/complete-student-journey/index.html index 42532dec..df5915c6 100644 --- a/en/student-welcome-guide/complete-student-journey/index.html +++ b/en/student-welcome-guide/complete-student-journey/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/document-preparation/index.html b/en/student-welcome-guide/document-preparation/index.html index a187d452..0df42227 100644 --- a/en/student-welcome-guide/document-preparation/index.html +++ b/en/student-welcome-guide/document-preparation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -356,9 +356,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/evs-application-guide/index.html b/en/student-welcome-guide/evs-application-guide/index.html index 75b0bdf7..a86af4c4 100644 --- a/en/student-welcome-guide/evs-application-guide/index.html +++ b/en/student-welcome-guide/evs-application-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -374,9 +374,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/healthcare-in-slovenia/index.html b/en/student-welcome-guide/healthcare-in-slovenia/index.html index 17a86adc..bc9ff978 100644 --- a/en/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/en/student-welcome-guide/healthcare-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -417,9 +417,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/index.html b/en/student-welcome-guide/index.html index c3927af3..658fdbbc 100644 --- a/en/student-welcome-guide/index.html +++ b/en/student-welcome-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -525,10 +525,10 @@ - - - - - + + + + + diff --git a/en/student-welcome-guide/master-application/index.html b/en/student-welcome-guide/master-application/index.html index d02339d5..ab117c6d 100644 --- a/en/student-welcome-guide/master-application/index.html +++ b/en/student-welcome-guide/master-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -368,9 +368,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/means-accommodation-address/index.html b/en/student-welcome-guide/means-accommodation-address/index.html index af9532fe..bed6935f 100644 --- a/en/student-welcome-guide/means-accommodation-address/index.html +++ b/en/student-welcome-guide/means-accommodation-address/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -440,9 +440,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/my-route/index.html b/en/student-welcome-guide/my-route/index.html index 511697d6..c958476e 100644 --- a/en/student-welcome-guide/my-route/index.html +++ b/en/student-welcome-guide/my-route/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - +

Your personal study route

@@ -268,9 +268,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/official-sources-and-checklists/index.html b/en/student-welcome-guide/official-sources-and-checklists/index.html index 23b41548..192c8933 100644 --- a/en/student-welcome-guide/official-sources-and-checklists/index.html +++ b/en/student-welcome-guide/official-sources-and-checklists/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/prepare-to-move/index.html b/en/student-welcome-guide/prepare-to-move/index.html index 41f51976..bf0ec9a3 100644 --- a/en/student-welcome-guide/prepare-to-move/index.html +++ b/en/student-welcome-guide/prepare-to-move/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -412,9 +412,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/recognition-of-education/index.html b/en/student-welcome-guide/recognition-of-education/index.html index a1ae78da..06b695c2 100644 --- a/en/student-welcome-guide/recognition-of-education/index.html +++ b/en/student-welcome-guide/recognition-of-education/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -357,9 +357,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/renew-change-graduate/index.html b/en/student-welcome-guide/renew-change-graduate/index.html index 4e47c519..b03c81f2 100644 --- a/en/student-welcome-guide/renew-change-graduate/index.html +++ b/en/student-welcome-guide/renew-change-graduate/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/rm-si-3-health-insurance/index.html b/en/student-welcome-guide/rm-si-3-health-insurance/index.html index a449fd62..2e681936 100644 --- a/en/student-welcome-guide/rm-si-3-health-insurance/index.html +++ b/en/student-welcome-guide/rm-si-3-health-insurance/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,9 +406,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-accommodation/index.html b/en/student-welcome-guide/student-accommodation/index.html index 58ea1103..a93510bb 100644 --- a/en/student-welcome-guide/student-accommodation/index.html +++ b/en/student-welcome-guide/student-accommodation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-budget/index.html b/en/student-welcome-guide/student-budget/index.html index 65741ab6..104731ea 100644 --- a/en/student-welcome-guide/student-budget/index.html +++ b/en/student-welcome-guide/student-budget/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -376,9 +376,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-meals/index.html b/en/student-welcome-guide/student-meals/index.html index 3d95c50d..8633846b 100644 --- a/en/student-welcome-guide/student-meals/index.html +++ b/en/student-welcome-guide/student-meals/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html index 6c1721f6..ed17931a 100644 --- a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -401,9 +401,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-residence-permit/index.html b/en/student-welcome-guide/student-residence-permit/index.html index e7c1513c..852abded 100644 --- a/en/student-welcome-guide/student-residence-permit/index.html +++ b/en/student-welcome-guide/student-residence-permit/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -418,9 +418,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-transport/index.html b/en/student-welcome-guide/student-transport/index.html index f38a685b..588a9699 100644 --- a/en/student-welcome-guide/student-transport/index.html +++ b/en/student-welcome-guide/student-transport/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/student-work/index.html b/en/student-welcome-guide/student-work/index.html index 5ad2aebe..25545ba8 100644 --- a/en/student-welcome-guide/student-work/index.html +++ b/en/student-welcome-guide/student-work/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -359,9 +359,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/study-cities/index.html b/en/student-welcome-guide/study-cities/index.html index c57dbde3..ea0d23a5 100644 --- a/en/student-welcome-guide/study-cities/index.html +++ b/en/student-welcome-guide/study-cities/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -419,9 +419,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/tuition-and-scholarships/index.html b/en/student-welcome-guide/tuition-and-scholarships/index.html index ce383f4c..3f5a0f59 100644 --- a/en/student-welcome-guide/tuition-and-scholarships/index.html +++ b/en/student-welcome-guide/tuition-and-scholarships/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -363,9 +363,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/visa-and-residence-explained/index.html b/en/student-welcome-guide/visa-and-residence-explained/index.html index 5db3c324..1a4ce7d5 100644 --- a/en/student-welcome-guide/visa-and-residence-explained/index.html +++ b/en/student-welcome-guide/visa-and-residence-explained/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -390,9 +390,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/wellbeing-and-community/index.html b/en/student-welcome-guide/wellbeing-and-community/index.html index 10208f9b..55d28e9a 100644 --- a/en/student-welcome-guide/wellbeing-and-community/index.html +++ b/en/student-welcome-guide/wellbeing-and-community/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -355,9 +355,9 @@ - - - - + + + + diff --git a/en/student-welcome-guide/where-to-apply-for-residence/index.html b/en/student-welcome-guide/where-to-apply-for-residence/index.html index 9e1b3e1e..4b7e9955 100644 --- a/en/student-welcome-guide/where-to-apply-for-residence/index.html +++ b/en/student-welcome-guide/where-to-apply-for-residence/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -425,9 +425,9 @@ - - - - + + + + diff --git a/en/support/index.html b/en/support/index.html index 5b997cf2..ba4eb9f5 100644 --- a/en/support/index.html +++ b/en/support/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -596,9 +596,9 @@ - - - - + + + + diff --git a/en/timeline-and-milestones/index.html b/en/timeline-and-milestones/index.html index 27fae8fa..f8039570 100644 --- a/en/timeline-and-milestones/index.html +++ b/en/timeline-and-milestones/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -511,8 +511,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/about-us/index.html b/mk/about-us/index.html index 03a9cc48..6fea660a 100644 --- a/mk/about-us/index.html +++ b/mk/about-us/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -572,8 +572,8 @@ - - - + + + diff --git a/mk/become-a-member/index.html b/mk/become-a-member/index.html index bb2538cf..fd1438a1 100644 --- a/mk/become-a-member/index.html +++ b/mk/become-a-member/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -624,10 +624,10 @@ - - + + - - + + diff --git a/mk/blog/ad-futura-scholarship-slovenia-2026/index.html b/mk/blog/ad-futura-scholarship-slovenia-2026/index.html index cce153b5..e724c73a 100644 --- a/mk/blog/ad-futura-scholarship-slovenia-2026/index.html +++ b/mk/blog/ad-futura-scholarship-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -444,9 +444,9 @@ - + - - + + diff --git a/mk/blog/how-i-coped-with-leaving-home/index.html b/mk/blog/how-i-coped-with-leaving-home/index.html index 2550bb5b..4150113f 100644 --- a/mk/blog/how-i-coped-with-leaving-home/index.html +++ b/mk/blog/how-i-coped-with-leaving-home/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -348,9 +348,9 @@ - + - - + + diff --git a/mk/blog/how-to-open-slovenian-bank-account/index.html b/mk/blog/how-to-open-slovenian-bank-account/index.html index 0b6ca678..f4c58604 100644 --- a/mk/blog/how-to-open-slovenian-bank-account/index.html +++ b/mk/blog/how-to-open-slovenian-bank-account/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -422,9 +422,9 @@ - + - - + + diff --git a/mk/blog/index.html b/mk/blog/index.html index 80253a47..c4850019 100644 --- a/mk/blog/index.html +++ b/mk/blog/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -434,11 +434,11 @@ - + - - - - + + + + diff --git a/mk/blog/learning-slovene-where-to-start/index.html b/mk/blog/learning-slovene-where-to-start/index.html index 2396d369..de713c11 100644 --- a/mk/blog/learning-slovene-where-to-start/index.html +++ b/mk/blog/learning-slovene-where-to-start/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -381,9 +381,9 @@ - + - - + + diff --git a/mk/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html b/mk/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html index 39a13d2b..554b2b12 100644 --- a/mk/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html +++ b/mk/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -393,9 +393,9 @@ - + - - + + diff --git a/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html b/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html index 3e776220..3f83a13a 100644 --- a/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html +++ b/mk/blog/welcome-days-slovenian-universities-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,9 +384,9 @@ - + - - + + diff --git a/mk/blog/where-to-search-for-accommodation-in-slovenia/index.html b/mk/blog/where-to-search-for-accommodation-in-slovenia/index.html index bee906a1..a69b07a1 100644 --- a/mk/blog/where-to-search-for-accommodation-in-slovenia/index.html +++ b/mk/blog/where-to-search-for-accommodation-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -431,9 +431,9 @@ - + - - + + diff --git a/mk/cookie-policy/index.html b/mk/cookie-policy/index.html index d710ec06..1e3569bf 100644 --- a/mk/cookie-policy/index.html +++ b/mk/cookie-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -322,8 +322,8 @@ - - - + + + diff --git a/mk/faq/index.html b/mk/faq/index.html index 9786691c..a94ca60f 100644 --- a/mk/faq/index.html +++ b/mk/faq/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -58,7 +58,7 @@ - + @@ -539,7 +539,7 @@ - - + + diff --git a/mk/gallery/index.html b/mk/gallery/index.html index a4705812..5214da06 100644 --- a/mk/gallery/index.html +++ b/mk/gallery/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -648,8 +648,8 @@ - - - + + + diff --git a/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html b/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html index 9bd2ca6b..fd976dc1 100644 --- a/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html +++ b/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + diff --git a/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html b/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html index 464c2d82..6db866dd 100644 --- a/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html +++ b/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/mk/get-to-know-macedonia/index.html b/mk/get-to-know-macedonia/index.html index 0a63f137..ca3bc2c9 100644 --- a/mk/get-to-know-macedonia/index.html +++ b/mk/get-to-know-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -372,8 +372,8 @@ - - - + + + diff --git a/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html b/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html index 9d3eafde..643b085b 100644 --- a/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html +++ b/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html b/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html index 2caf793f..c23221fe 100644 --- a/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html +++ b/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -397,8 +397,8 @@ - - - + + + diff --git a/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html b/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html index c314e5b7..60042de9 100644 --- a/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html +++ b/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -387,8 +387,8 @@ - - - + + + diff --git a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html index abb85462..3693a149 100644 --- a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,8 +384,8 @@ - - - + + + diff --git a/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html b/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html index e04e48b4..7a3abad1 100644 --- a/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html +++ b/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -389,8 +389,8 @@ - - - + + + diff --git a/mk/get-to-know-slovenia/index.html b/mk/get-to-know-slovenia/index.html index a89dbddf..900faf9c 100644 --- a/mk/get-to-know-slovenia/index.html +++ b/mk/get-to-know-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -371,8 +371,8 @@ - - - + + + diff --git a/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html b/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html index 8ecc6387..4f4d15e5 100644 --- a/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html +++ b/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,8 +385,8 @@ - - - + + + diff --git a/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html b/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html index 63c0570c..8d7613b0 100644 --- a/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html +++ b/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -375,8 +375,8 @@ - - - + + + diff --git a/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html b/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html index 4104b61e..eddb6ee1 100644 --- a/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html +++ b/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,8 +406,8 @@ - - - + + + diff --git a/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html b/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html index 88b439ca..f0259161 100644 --- a/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html +++ b/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,8 +391,8 @@ - - - + + + diff --git a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html index e4c4ee9f..4d9054fa 100644 --- a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -362,8 +362,8 @@ - - - + + + diff --git a/mk/index.html b/mk/index.html index a3e1072f..3bf349d0 100644 --- a/mk/index.html +++ b/mk/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -555,8 +555,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/legal/index.html b/mk/legal/index.html index 86e32547..b0d8b072 100644 --- a/mk/legal/index.html +++ b/mk/legal/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -317,8 +317,8 @@ - - - + + + diff --git a/mk/msos-hub/index.html b/mk/msos-hub/index.html index 3d151341..6f3dea7d 100644 --- a/mk/msos-hub/index.html +++ b/mk/msos-hub/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/mk/news/index.html b/mk/news/index.html index c88e13f8..a786f2c3 100644 --- a/mk/news/index.html +++ b/mk/news/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -576,11 +576,11 @@ - - - + + + - - + + diff --git a/mk/news/meet-student-slovenia-2026/index.html b/mk/news/meet-student-slovenia-2026/index.html index 4cc13249..5ba74b09 100644 --- a/mk/news/meet-student-slovenia-2026/index.html +++ b/mk/news/meet-student-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -431,10 +431,10 @@ - - + + - - + + diff --git a/mk/news/proof-of-means-updated-2026/index.html b/mk/news/proof-of-means-updated-2026/index.html index 4c867dfb..6d9163e5 100644 --- a/mk/news/proof-of-means-updated-2026/index.html +++ b/mk/news/proof-of-means-updated-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -302,9 +302,9 @@ - + - - + + diff --git a/mk/press/index.html b/mk/press/index.html index 3017eac1..b158cb08 100644 --- a/mk/press/index.html +++ b/mk/press/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -54,7 +54,7 @@ - + @@ -459,7 +459,7 @@ - - + + diff --git a/mk/privacy-policy/index.html b/mk/privacy-policy/index.html index 563e744c..0dfd54f9 100644 --- a/mk/privacy-policy/index.html +++ b/mk/privacy-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -368,8 +368,8 @@ - - - + + + diff --git a/mk/projects/humanitarian-tournament-in-maribor/index.html b/mk/projects/humanitarian-tournament-in-maribor/index.html index 7a8ebdb7..eab30e4d 100644 --- a/mk/projects/humanitarian-tournament-in-maribor/index.html +++ b/mk/projects/humanitarian-tournament-in-maribor/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -403,8 +403,8 @@ - - - + + + diff --git a/mk/projects/in-memory-of-frosina-kulakova/index.html b/mk/projects/in-memory-of-frosina-kulakova/index.html index f2bed7bd..8ea20c8f 100644 --- a/mk/projects/in-memory-of-frosina-kulakova/index.html +++ b/mk/projects/in-memory-of-frosina-kulakova/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -341,8 +341,8 @@ - - - + + + diff --git a/mk/projects/in-memory-of-the-kochani-victims/index.html b/mk/projects/in-memory-of-the-kochani-victims/index.html index baaf967f..95e64515 100644 --- a/mk/projects/in-memory-of-the-kochani-victims/index.html +++ b/mk/projects/in-memory-of-the-kochani-victims/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -349,8 +349,8 @@ - - - + + + diff --git a/mk/projects/index.html b/mk/projects/index.html index d2473bac..d666ec39 100644 --- a/mk/projects/index.html +++ b/mk/projects/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -513,9 +513,9 @@ - - - - + + + + \ No newline at end of file diff --git a/mk/projects/joint-walk-path-around-the-wire/index.html b/mk/projects/joint-walk-path-around-the-wire/index.html index 7cba85a3..b7be6e78 100644 --- a/mk/projects/joint-walk-path-around-the-wire/index.html +++ b/mk/projects/joint-walk-path-around-the-wire/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/mk/projects/kafanska-vecher-2025/index.html b/mk/projects/kafanska-vecher-2025/index.html index ade8ef3e..9c133216 100644 --- a/mk/projects/kafanska-vecher-2025/index.html +++ b/mk/projects/kafanska-vecher-2025/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/mk/projects/macedonian-student-night-in-ljubljana/index.html b/mk/projects/macedonian-student-night-in-ljubljana/index.html index e0c92961..86a9d481 100644 --- a/mk/projects/macedonian-student-night-in-ljubljana/index.html +++ b/mk/projects/macedonian-student-night-in-ljubljana/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -414,8 +414,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/projects/meet-student-slovenia-2023/index.html b/mk/projects/meet-student-slovenia-2023/index.html index d3a1fcb0..3b3eb4f5 100644 --- a/mk/projects/meet-student-slovenia-2023/index.html +++ b/mk/projects/meet-student-slovenia-2023/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -439,8 +439,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/projects/meet-student-slovenia-2024/index.html b/mk/projects/meet-student-slovenia-2024/index.html index d714b1c6..37e3e629 100644 --- a/mk/projects/meet-student-slovenia-2024/index.html +++ b/mk/projects/meet-student-slovenia-2024/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -438,8 +438,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/projects/morning-coffee-in-front-of-ctk-2026/index.html b/mk/projects/morning-coffee-in-front-of-ctk-2026/index.html index c337f7a1..3688af67 100644 --- a/mk/projects/morning-coffee-in-front-of-ctk-2026/index.html +++ b/mk/projects/morning-coffee-in-front-of-ctk-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + diff --git a/mk/projects/morning-coffee-in-front-of-ctk/index.html b/mk/projects/morning-coffee-in-front-of-ctk/index.html index 140b8317..44de0d94 100644 --- a/mk/projects/morning-coffee-in-front-of-ctk/index.html +++ b/mk/projects/morning-coffee-in-front-of-ctk/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -401,8 +401,8 @@ - - - + + + \ No newline at end of file diff --git a/mk/projects/paint-and-wine-at-sunset/index.html b/mk/projects/paint-and-wine-at-sunset/index.html index 6346bc06..1a8d9eb7 100644 --- a/mk/projects/paint-and-wine-at-sunset/index.html +++ b/mk/projects/paint-and-wine-at-sunset/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/mk/projects/president-siljanovska-davkova-lecture-2026/index.html b/mk/projects/president-siljanovska-davkova-lecture-2026/index.html index 646679e7..dab32d15 100644 --- a/mk/projects/president-siljanovska-davkova-lecture-2026/index.html +++ b/mk/projects/president-siljanovska-davkova-lecture-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -402,8 +402,8 @@ - - - + + + diff --git a/mk/projects/sepa-webinar-2026/index.html b/mk/projects/sepa-webinar-2026/index.html index e2f6cacd..f57af058 100644 --- a/mk/projects/sepa-webinar-2026/index.html +++ b/mk/projects/sepa-webinar-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -375,8 +375,8 @@ - - - + + + diff --git a/mk/projects/teambuilding-hub-opening-2026/index.html b/mk/projects/teambuilding-hub-opening-2026/index.html index 53961662..c5293210 100644 --- a/mk/projects/teambuilding-hub-opening-2026/index.html +++ b/mk/projects/teambuilding-hub-opening-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/mk/projects/watching-handball-together-in-slovenia/index.html b/mk/projects/watching-handball-together-in-slovenia/index.html index 95fe3ce4..9aeac579 100644 --- a/mk/projects/watching-handball-together-in-slovenia/index.html +++ b/mk/projects/watching-handball-together-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/mk/projects/watching-macedonia-wales-football-match/index.html b/mk/projects/watching-macedonia-wales-football-match/index.html index 8028a453..6d298523 100644 --- a/mk/projects/watching-macedonia-wales-football-match/index.html +++ b/mk/projects/watching-macedonia-wales-football-match/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/mk/student-welcome-guide/academic-life/index.html b/mk/student-welcome-guide/academic-life/index.html index 62a9c344..4c59212f 100644 --- a/mk/student-welcome-guide/academic-life/index.html +++ b/mk/student-welcome-guide/academic-life/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/administrative-basics/index.html b/mk/student-welcome-guide/administrative-basics/index.html index ff9abf6b..70fe8c31 100644 --- a/mk/student-welcome-guide/administrative-basics/index.html +++ b/mk/student-welcome-guide/administrative-basics/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -354,9 +354,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/admission-and-enrolment/index.html b/mk/student-welcome-guide/admission-and-enrolment/index.html index a0412c71..fefbc911 100644 --- a/mk/student-welcome-guide/admission-and-enrolment/index.html +++ b/mk/student-welcome-guide/admission-and-enrolment/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/application-deadlines/index.html b/mk/student-welcome-guide/application-deadlines/index.html index 9b3edeb4..530f7376 100644 --- a/mk/student-welcome-guide/application-deadlines/index.html +++ b/mk/student-welcome-guide/application-deadlines/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -361,9 +361,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/arrival-checklist/index.html b/mk/student-welcome-guide/arrival-checklist/index.html index 1cff27c7..d0f29e0c 100644 --- a/mk/student-welcome-guide/arrival-checklist/index.html +++ b/mk/student-welcome-guide/arrival-checklist/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,9 +379,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/bachelor-application/index.html b/mk/student-welcome-guide/bachelor-application/index.html index a1194b25..e5c725e7 100644 --- a/mk/student-welcome-guide/bachelor-application/index.html +++ b/mk/student-welcome-guide/bachelor-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,9 +391,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/choose-a-programme/index.html b/mk/student-welcome-guide/choose-a-programme/index.html index 1e640a06..0c83ce59 100644 --- a/mk/student-welcome-guide/choose-a-programme/index.html +++ b/mk/student-welcome-guide/choose-a-programme/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -382,9 +382,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/complete-student-journey/index.html b/mk/student-welcome-guide/complete-student-journey/index.html index 022d51b1..53a2d899 100644 --- a/mk/student-welcome-guide/complete-student-journey/index.html +++ b/mk/student-welcome-guide/complete-student-journey/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/document-preparation/index.html b/mk/student-welcome-guide/document-preparation/index.html index 62188374..55c94aff 100644 --- a/mk/student-welcome-guide/document-preparation/index.html +++ b/mk/student-welcome-guide/document-preparation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -356,9 +356,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/evs-application-guide/index.html b/mk/student-welcome-guide/evs-application-guide/index.html index 2bda7ad9..c1848574 100644 --- a/mk/student-welcome-guide/evs-application-guide/index.html +++ b/mk/student-welcome-guide/evs-application-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -374,9 +374,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/healthcare-in-slovenia/index.html b/mk/student-welcome-guide/healthcare-in-slovenia/index.html index eee7e3b6..d625ed23 100644 --- a/mk/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/mk/student-welcome-guide/healthcare-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -417,9 +417,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/index.html b/mk/student-welcome-guide/index.html index b3e8195f..384a968a 100644 --- a/mk/student-welcome-guide/index.html +++ b/mk/student-welcome-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -525,10 +525,10 @@ - - - - - + + + + + diff --git a/mk/student-welcome-guide/master-application/index.html b/mk/student-welcome-guide/master-application/index.html index 7057fbba..49f62df6 100644 --- a/mk/student-welcome-guide/master-application/index.html +++ b/mk/student-welcome-guide/master-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -368,9 +368,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/means-accommodation-address/index.html b/mk/student-welcome-guide/means-accommodation-address/index.html index 21354c2b..33e12951 100644 --- a/mk/student-welcome-guide/means-accommodation-address/index.html +++ b/mk/student-welcome-guide/means-accommodation-address/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -440,9 +440,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/my-route/index.html b/mk/student-welcome-guide/my-route/index.html index d2a2d9c6..d3f76c24 100644 --- a/mk/student-welcome-guide/my-route/index.html +++ b/mk/student-welcome-guide/my-route/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - +

Вашиот личен студиски пат

@@ -268,9 +268,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/official-sources-and-checklists/index.html b/mk/student-welcome-guide/official-sources-and-checklists/index.html index da969271..e54599fa 100644 --- a/mk/student-welcome-guide/official-sources-and-checklists/index.html +++ b/mk/student-welcome-guide/official-sources-and-checklists/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/prepare-to-move/index.html b/mk/student-welcome-guide/prepare-to-move/index.html index 44a800f0..ba9b7005 100644 --- a/mk/student-welcome-guide/prepare-to-move/index.html +++ b/mk/student-welcome-guide/prepare-to-move/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -412,9 +412,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/recognition-of-education/index.html b/mk/student-welcome-guide/recognition-of-education/index.html index 4253b808..5179478d 100644 --- a/mk/student-welcome-guide/recognition-of-education/index.html +++ b/mk/student-welcome-guide/recognition-of-education/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -357,9 +357,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/renew-change-graduate/index.html b/mk/student-welcome-guide/renew-change-graduate/index.html index 1462820e..0cc8e1f6 100644 --- a/mk/student-welcome-guide/renew-change-graduate/index.html +++ b/mk/student-welcome-guide/renew-change-graduate/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/rm-si-3-health-insurance/index.html b/mk/student-welcome-guide/rm-si-3-health-insurance/index.html index ff5ca4c9..97510e83 100644 --- a/mk/student-welcome-guide/rm-si-3-health-insurance/index.html +++ b/mk/student-welcome-guide/rm-si-3-health-insurance/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,9 +406,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-accommodation/index.html b/mk/student-welcome-guide/student-accommodation/index.html index c91e21e8..a7ee543b 100644 --- a/mk/student-welcome-guide/student-accommodation/index.html +++ b/mk/student-welcome-guide/student-accommodation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-budget/index.html b/mk/student-welcome-guide/student-budget/index.html index 7900c567..ebcb87b9 100644 --- a/mk/student-welcome-guide/student-budget/index.html +++ b/mk/student-welcome-guide/student-budget/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -376,9 +376,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-meals/index.html b/mk/student-welcome-guide/student-meals/index.html index 5b66cacf..cc7d5ce6 100644 --- a/mk/student-welcome-guide/student-meals/index.html +++ b/mk/student-welcome-guide/student-meals/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html index 0c943a5e..2252b894 100644 --- a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -401,9 +401,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-residence-permit/index.html b/mk/student-welcome-guide/student-residence-permit/index.html index f12e23a5..06cde041 100644 --- a/mk/student-welcome-guide/student-residence-permit/index.html +++ b/mk/student-welcome-guide/student-residence-permit/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -418,9 +418,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-transport/index.html b/mk/student-welcome-guide/student-transport/index.html index 138a990b..4ac3fc48 100644 --- a/mk/student-welcome-guide/student-transport/index.html +++ b/mk/student-welcome-guide/student-transport/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/student-work/index.html b/mk/student-welcome-guide/student-work/index.html index 00263f4d..3aa5d851 100644 --- a/mk/student-welcome-guide/student-work/index.html +++ b/mk/student-welcome-guide/student-work/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -359,9 +359,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/study-cities/index.html b/mk/student-welcome-guide/study-cities/index.html index 841e6a0e..549b325e 100644 --- a/mk/student-welcome-guide/study-cities/index.html +++ b/mk/student-welcome-guide/study-cities/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -419,9 +419,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/tuition-and-scholarships/index.html b/mk/student-welcome-guide/tuition-and-scholarships/index.html index 48af0008..17f4316f 100644 --- a/mk/student-welcome-guide/tuition-and-scholarships/index.html +++ b/mk/student-welcome-guide/tuition-and-scholarships/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -363,9 +363,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/visa-and-residence-explained/index.html b/mk/student-welcome-guide/visa-and-residence-explained/index.html index c0977080..9510ea21 100644 --- a/mk/student-welcome-guide/visa-and-residence-explained/index.html +++ b/mk/student-welcome-guide/visa-and-residence-explained/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -390,9 +390,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/wellbeing-and-community/index.html b/mk/student-welcome-guide/wellbeing-and-community/index.html index 941236b4..e81332c0 100644 --- a/mk/student-welcome-guide/wellbeing-and-community/index.html +++ b/mk/student-welcome-guide/wellbeing-and-community/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -355,9 +355,9 @@ - - - - + + + + diff --git a/mk/student-welcome-guide/where-to-apply-for-residence/index.html b/mk/student-welcome-guide/where-to-apply-for-residence/index.html index 69dac629..0d3c5548 100644 --- a/mk/student-welcome-guide/where-to-apply-for-residence/index.html +++ b/mk/student-welcome-guide/where-to-apply-for-residence/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -425,9 +425,9 @@ - - - - + + + + diff --git a/mk/support/index.html b/mk/support/index.html index 0f8badf8..e01a0b45 100644 --- a/mk/support/index.html +++ b/mk/support/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -594,9 +594,9 @@ - - - - + + + + diff --git a/mk/timeline-and-milestones/index.html b/mk/timeline-and-milestones/index.html index 65128172..c2f3c89c 100644 --- a/mk/timeline-and-milestones/index.html +++ b/mk/timeline-and-milestones/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -511,8 +511,8 @@ - - - + + + \ No newline at end of file diff --git a/si/about-us/index.html b/si/about-us/index.html index 7afb0f57..4073a0f1 100644 --- a/si/about-us/index.html +++ b/si/about-us/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -572,8 +572,8 @@ - - - + + + diff --git a/si/become-a-member/index.html b/si/become-a-member/index.html index 45e416bb..cb583596 100644 --- a/si/become-a-member/index.html +++ b/si/become-a-member/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -624,10 +624,10 @@ - - + + - - + + diff --git a/si/blog/ad-futura-scholarship-slovenia-2026/index.html b/si/blog/ad-futura-scholarship-slovenia-2026/index.html index 1b8ab01d..73e470d6 100644 --- a/si/blog/ad-futura-scholarship-slovenia-2026/index.html +++ b/si/blog/ad-futura-scholarship-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -444,9 +444,9 @@ - + - - + + diff --git a/si/blog/how-i-coped-with-leaving-home/index.html b/si/blog/how-i-coped-with-leaving-home/index.html index da334ba2..3d81e6e3 100644 --- a/si/blog/how-i-coped-with-leaving-home/index.html +++ b/si/blog/how-i-coped-with-leaving-home/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -348,9 +348,9 @@ - + - - + + diff --git a/si/blog/how-to-open-slovenian-bank-account/index.html b/si/blog/how-to-open-slovenian-bank-account/index.html index 310300ef..3e26e0cc 100644 --- a/si/blog/how-to-open-slovenian-bank-account/index.html +++ b/si/blog/how-to-open-slovenian-bank-account/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -422,9 +422,9 @@ - + - - + + diff --git a/si/blog/index.html b/si/blog/index.html index 786cddc1..5beeb4ec 100644 --- a/si/blog/index.html +++ b/si/blog/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -434,11 +434,11 @@ - + - - - - + + + + diff --git a/si/blog/learning-slovene-where-to-start/index.html b/si/blog/learning-slovene-where-to-start/index.html index 3bd1fbbd..ec9b6901 100644 --- a/si/blog/learning-slovene-where-to-start/index.html +++ b/si/blog/learning-slovene-where-to-start/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -381,9 +381,9 @@ - + - - + + diff --git a/si/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html b/si/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html index ed5eff55..3f44fd01 100644 --- a/si/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html +++ b/si/blog/study-in-north-macedonia-government-scholarship-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -393,9 +393,9 @@ - + - - + + diff --git a/si/blog/welcome-days-slovenian-universities-2026-2027/index.html b/si/blog/welcome-days-slovenian-universities-2026-2027/index.html index 85b88c37..dc7d91b1 100644 --- a/si/blog/welcome-days-slovenian-universities-2026-2027/index.html +++ b/si/blog/welcome-days-slovenian-universities-2026-2027/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,9 +384,9 @@ - + - - + + diff --git a/si/blog/where-to-search-for-accommodation-in-slovenia/index.html b/si/blog/where-to-search-for-accommodation-in-slovenia/index.html index 2981b255..2b18edad 100644 --- a/si/blog/where-to-search-for-accommodation-in-slovenia/index.html +++ b/si/blog/where-to-search-for-accommodation-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -431,9 +431,9 @@ - + - - + + diff --git a/si/cookie-policy/index.html b/si/cookie-policy/index.html index 5ec5fd69..fb72b812 100644 --- a/si/cookie-policy/index.html +++ b/si/cookie-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -322,8 +322,8 @@ - - - + + + diff --git a/si/faq/index.html b/si/faq/index.html index aed026a3..705620e6 100644 --- a/si/faq/index.html +++ b/si/faq/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -58,7 +58,7 @@ - + @@ -539,7 +539,7 @@ - - + + diff --git a/si/gallery/index.html b/si/gallery/index.html index 3481a9f6..c51fa44d 100644 --- a/si/gallery/index.html +++ b/si/gallery/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -648,8 +648,8 @@ - - - + + + diff --git a/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html b/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html index ea487fb4..db5a2793 100644 --- a/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html +++ b/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + diff --git a/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html b/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html index 7d6ff35e..be05ccea 100644 --- a/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html +++ b/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/si/get-to-know-macedonia/index.html b/si/get-to-know-macedonia/index.html index 3ed37375..d0383d57 100644 --- a/si/get-to-know-macedonia/index.html +++ b/si/get-to-know-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -372,8 +372,8 @@ - - - + + + diff --git a/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html b/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html index 258457e4..66c4d8d2 100644 --- a/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html +++ b/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html b/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html index a14f3d75..4a22b5ea 100644 --- a/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html +++ b/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -397,8 +397,8 @@ - - - + + + diff --git a/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html b/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html index 9e8486d9..4f9563b6 100644 --- a/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html +++ b/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -387,8 +387,8 @@ - - - + + + diff --git a/si/get-to-know-macedonia/welcome-to-macedonia/index.html b/si/get-to-know-macedonia/welcome-to-macedonia/index.html index de0b6474..0ead83fb 100644 --- a/si/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/si/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -384,8 +384,8 @@ - - - + + + diff --git a/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html b/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html index e28abe0b..74d88ad6 100644 --- a/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html +++ b/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -389,8 +389,8 @@ - - - + + + diff --git a/si/get-to-know-slovenia/index.html b/si/get-to-know-slovenia/index.html index 6e9f4988..1e9fe84e 100644 --- a/si/get-to-know-slovenia/index.html +++ b/si/get-to-know-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -371,8 +371,8 @@ - - - + + + diff --git a/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html b/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html index 4d31c736..400e6fdc 100644 --- a/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html +++ b/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,8 +385,8 @@ - - - + + + diff --git a/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html b/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html index 9c222cca..9ce1f767 100644 --- a/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html +++ b/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html b/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html index 47a4a36d..29ec7071 100644 --- a/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html +++ b/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,8 +406,8 @@ - - - + + + diff --git a/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html b/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html index 157a636c..4a12ac71 100644 --- a/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html +++ b/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,8 +391,8 @@ - - - + + + diff --git a/si/get-to-know-slovenia/welcome-to-slovenia/index.html b/si/get-to-know-slovenia/welcome-to-slovenia/index.html index d4abf34c..2858a0bc 100644 --- a/si/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/si/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -362,8 +362,8 @@ - - - + + + diff --git a/si/index.html b/si/index.html index 3e9a5e77..0a7b4804 100644 --- a/si/index.html +++ b/si/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -202,11 +202,11 @@
- Prva uradna MSOS + Prva uradna Makedonska študentska organizacija v Sloveniji

Opolnomočimo mlade z veščinami za spreminjanje sveta

-

Ne glede na to, ali imate ekipo 2 ali 200 ljudi, naši skupni timski nabiralniki ohranjajo vse na isti strani in v koraku z dogajanjem.

+

Bodi del naše razburljive poti. Pridruži se naši študentski organizaciji še danes!

Postani član @@ -555,8 +555,8 @@ - - - + + + \ No newline at end of file diff --git a/si/legal/index.html b/si/legal/index.html index ee9a2ef2..bb34b4db 100644 --- a/si/legal/index.html +++ b/si/legal/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -317,8 +317,8 @@ - - - + + + diff --git a/si/msos-hub/index.html b/si/msos-hub/index.html index 897dc5a7..a24a3330 100644 --- a/si/msos-hub/index.html +++ b/si/msos-hub/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/si/news/index.html b/si/news/index.html index b434d47c..eada0d87 100644 --- a/si/news/index.html +++ b/si/news/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -576,11 +576,11 @@ - - - + + + - - + + diff --git a/si/news/meet-student-slovenia-2026/index.html b/si/news/meet-student-slovenia-2026/index.html index 9c83b838..000493e1 100644 --- a/si/news/meet-student-slovenia-2026/index.html +++ b/si/news/meet-student-slovenia-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -431,10 +431,10 @@ - - + + - - + + diff --git a/si/news/proof-of-means-updated-2026/index.html b/si/news/proof-of-means-updated-2026/index.html index 7a565214..e204e913 100644 --- a/si/news/proof-of-means-updated-2026/index.html +++ b/si/news/proof-of-means-updated-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -302,9 +302,9 @@ - + - - + + diff --git a/si/press/index.html b/si/press/index.html index 9776329b..c93aad3d 100644 --- a/si/press/index.html +++ b/si/press/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -54,7 +54,7 @@ - + @@ -459,7 +459,7 @@ - - + + diff --git a/si/privacy-policy/index.html b/si/privacy-policy/index.html index 914306a1..34a63159 100644 --- a/si/privacy-policy/index.html +++ b/si/privacy-policy/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -368,8 +368,8 @@ - - - + + + diff --git a/si/projects/humanitarian-tournament-in-maribor/index.html b/si/projects/humanitarian-tournament-in-maribor/index.html index 29394867..669c33ad 100644 --- a/si/projects/humanitarian-tournament-in-maribor/index.html +++ b/si/projects/humanitarian-tournament-in-maribor/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -403,8 +403,8 @@ - - - + + + diff --git a/si/projects/in-memory-of-frosina-kulakova/index.html b/si/projects/in-memory-of-frosina-kulakova/index.html index 9dd4ac86..692df093 100644 --- a/si/projects/in-memory-of-frosina-kulakova/index.html +++ b/si/projects/in-memory-of-frosina-kulakova/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -341,8 +341,8 @@ - - - + + + diff --git a/si/projects/in-memory-of-the-kochani-victims/index.html b/si/projects/in-memory-of-the-kochani-victims/index.html index ea7ecdc9..789d44d3 100644 --- a/si/projects/in-memory-of-the-kochani-victims/index.html +++ b/si/projects/in-memory-of-the-kochani-victims/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -349,8 +349,8 @@ - - - + + + diff --git a/si/projects/index.html b/si/projects/index.html index f3c7e05c..effe1ae2 100644 --- a/si/projects/index.html +++ b/si/projects/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -513,9 +513,9 @@ - - - - + + + + \ No newline at end of file diff --git a/si/projects/joint-walk-path-around-the-wire/index.html b/si/projects/joint-walk-path-around-the-wire/index.html index f4e528f5..e6bf0802 100644 --- a/si/projects/joint-walk-path-around-the-wire/index.html +++ b/si/projects/joint-walk-path-around-the-wire/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/si/projects/kafanska-vecher-2025/index.html b/si/projects/kafanska-vecher-2025/index.html index 61787e2e..67690d6c 100644 --- a/si/projects/kafanska-vecher-2025/index.html +++ b/si/projects/kafanska-vecher-2025/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -405,8 +405,8 @@ - - - + + + diff --git a/si/projects/macedonian-student-night-in-ljubljana/index.html b/si/projects/macedonian-student-night-in-ljubljana/index.html index 31361db3..048a8d9c 100644 --- a/si/projects/macedonian-student-night-in-ljubljana/index.html +++ b/si/projects/macedonian-student-night-in-ljubljana/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -394,8 +394,8 @@ - - - + + + \ No newline at end of file diff --git a/si/projects/meet-student-slovenia-2023/index.html b/si/projects/meet-student-slovenia-2023/index.html index 5f0b8376..56ba6fd9 100644 --- a/si/projects/meet-student-slovenia-2023/index.html +++ b/si/projects/meet-student-slovenia-2023/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -439,8 +439,8 @@ - - - + + + \ No newline at end of file diff --git a/si/projects/meet-student-slovenia-2024/index.html b/si/projects/meet-student-slovenia-2024/index.html index 72e4287a..3fcadfd6 100644 --- a/si/projects/meet-student-slovenia-2024/index.html +++ b/si/projects/meet-student-slovenia-2024/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -418,8 +418,8 @@ - - - + + + \ No newline at end of file diff --git a/si/projects/morning-coffee-in-front-of-ctk-2026/index.html b/si/projects/morning-coffee-in-front-of-ctk-2026/index.html index 621bc8eb..a7405d59 100644 --- a/si/projects/morning-coffee-in-front-of-ctk-2026/index.html +++ b/si/projects/morning-coffee-in-front-of-ctk-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -399,8 +399,8 @@ - - - + + + diff --git a/si/projects/morning-coffee-in-front-of-ctk/index.html b/si/projects/morning-coffee-in-front-of-ctk/index.html index d274f5fd..0bc1d311 100644 --- a/si/projects/morning-coffee-in-front-of-ctk/index.html +++ b/si/projects/morning-coffee-in-front-of-ctk/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -383,8 +383,8 @@ - - - + + + \ No newline at end of file diff --git a/si/projects/paint-and-wine-at-sunset/index.html b/si/projects/paint-and-wine-at-sunset/index.html index 4dd60fb7..08233f1a 100644 --- a/si/projects/paint-and-wine-at-sunset/index.html +++ b/si/projects/paint-and-wine-at-sunset/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/si/projects/president-siljanovska-davkova-lecture-2026/index.html b/si/projects/president-siljanovska-davkova-lecture-2026/index.html index 55fe30bc..4d811520 100644 --- a/si/projects/president-siljanovska-davkova-lecture-2026/index.html +++ b/si/projects/president-siljanovska-davkova-lecture-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -402,8 +402,8 @@ - - - + + + diff --git a/si/projects/sepa-webinar-2026/index.html b/si/projects/sepa-webinar-2026/index.html index f1253e27..ec97fb1e 100644 --- a/si/projects/sepa-webinar-2026/index.html +++ b/si/projects/sepa-webinar-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -375,8 +375,8 @@ - - - + + + diff --git a/si/projects/teambuilding-hub-opening-2026/index.html b/si/projects/teambuilding-hub-opening-2026/index.html index b5117675..addb2d73 100644 --- a/si/projects/teambuilding-hub-opening-2026/index.html +++ b/si/projects/teambuilding-hub-opening-2026/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -412,8 +412,8 @@ - - - + + + diff --git a/si/projects/watching-handball-together-in-slovenia/index.html b/si/projects/watching-handball-together-in-slovenia/index.html index 1e2ba3a3..403a65d0 100644 --- a/si/projects/watching-handball-together-in-slovenia/index.html +++ b/si/projects/watching-handball-together-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -379,8 +379,8 @@ - - - + + + diff --git a/si/projects/watching-macedonia-wales-football-match/index.html b/si/projects/watching-macedonia-wales-football-match/index.html index 3073a5d3..95863438 100644 --- a/si/projects/watching-macedonia-wales-football-match/index.html +++ b/si/projects/watching-macedonia-wales-football-match/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -60,7 +60,7 @@ - + @@ -388,8 +388,8 @@ - - - + + + diff --git a/si/student-welcome-guide/academic-life/index.html b/si/student-welcome-guide/academic-life/index.html index a4d1bb86..ed6d8d6e 100644 --- a/si/student-welcome-guide/academic-life/index.html +++ b/si/student-welcome-guide/academic-life/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/administrative-basics/index.html b/si/student-welcome-guide/administrative-basics/index.html index 5322842b..3ac49369 100644 --- a/si/student-welcome-guide/administrative-basics/index.html +++ b/si/student-welcome-guide/administrative-basics/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -354,9 +354,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/admission-and-enrolment/index.html b/si/student-welcome-guide/admission-and-enrolment/index.html index b1a1d78a..d3467919 100644 --- a/si/student-welcome-guide/admission-and-enrolment/index.html +++ b/si/student-welcome-guide/admission-and-enrolment/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/application-deadlines/index.html b/si/student-welcome-guide/application-deadlines/index.html index 0a330db6..b447ce5e 100644 --- a/si/student-welcome-guide/application-deadlines/index.html +++ b/si/student-welcome-guide/application-deadlines/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -361,9 +361,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/arrival-checklist/index.html b/si/student-welcome-guide/arrival-checklist/index.html index dae2f11a..fa0a7633 100644 --- a/si/student-welcome-guide/arrival-checklist/index.html +++ b/si/student-welcome-guide/arrival-checklist/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -379,9 +379,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/bachelor-application/index.html b/si/student-welcome-guide/bachelor-application/index.html index 1bc9901e..40f9d8ae 100644 --- a/si/student-welcome-guide/bachelor-application/index.html +++ b/si/student-welcome-guide/bachelor-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -391,9 +391,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/choose-a-programme/index.html b/si/student-welcome-guide/choose-a-programme/index.html index 513ced4e..c1c1e2d9 100644 --- a/si/student-welcome-guide/choose-a-programme/index.html +++ b/si/student-welcome-guide/choose-a-programme/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -382,9 +382,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/complete-student-journey/index.html b/si/student-welcome-guide/complete-student-journey/index.html index 827be823..8c8c5476 100644 --- a/si/student-welcome-guide/complete-student-journey/index.html +++ b/si/student-welcome-guide/complete-student-journey/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/document-preparation/index.html b/si/student-welcome-guide/document-preparation/index.html index fa9986de..6596033a 100644 --- a/si/student-welcome-guide/document-preparation/index.html +++ b/si/student-welcome-guide/document-preparation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -356,9 +356,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/evs-application-guide/index.html b/si/student-welcome-guide/evs-application-guide/index.html index a05e36bf..d433ebb6 100644 --- a/si/student-welcome-guide/evs-application-guide/index.html +++ b/si/student-welcome-guide/evs-application-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -374,9 +374,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/healthcare-in-slovenia/index.html b/si/student-welcome-guide/healthcare-in-slovenia/index.html index aa64a8e4..25baccad 100644 --- a/si/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/si/student-welcome-guide/healthcare-in-slovenia/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -417,9 +417,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/index.html b/si/student-welcome-guide/index.html index 930323a0..bbdce24e 100644 --- a/si/student-welcome-guide/index.html +++ b/si/student-welcome-guide/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -525,10 +525,10 @@ - - - - - + + + + + diff --git a/si/student-welcome-guide/master-application/index.html b/si/student-welcome-guide/master-application/index.html index 4060a640..ead79697 100644 --- a/si/student-welcome-guide/master-application/index.html +++ b/si/student-welcome-guide/master-application/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -368,9 +368,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/means-accommodation-address/index.html b/si/student-welcome-guide/means-accommodation-address/index.html index d9124601..7b59cd57 100644 --- a/si/student-welcome-guide/means-accommodation-address/index.html +++ b/si/student-welcome-guide/means-accommodation-address/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -440,9 +440,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/my-route/index.html b/si/student-welcome-guide/my-route/index.html index dbdb2d32..4711eac5 100644 --- a/si/student-welcome-guide/my-route/index.html +++ b/si/student-welcome-guide/my-route/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - +

Vaša osebna študijska pot

@@ -268,9 +268,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/official-sources-and-checklists/index.html b/si/student-welcome-guide/official-sources-and-checklists/index.html index ee65dc83..c3198bb9 100644 --- a/si/student-welcome-guide/official-sources-and-checklists/index.html +++ b/si/student-welcome-guide/official-sources-and-checklists/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/prepare-to-move/index.html b/si/student-welcome-guide/prepare-to-move/index.html index 81c7a45d..48bd6b53 100644 --- a/si/student-welcome-guide/prepare-to-move/index.html +++ b/si/student-welcome-guide/prepare-to-move/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -412,9 +412,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/recognition-of-education/index.html b/si/student-welcome-guide/recognition-of-education/index.html index b5d21850..3b6b9c2a 100644 --- a/si/student-welcome-guide/recognition-of-education/index.html +++ b/si/student-welcome-guide/recognition-of-education/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -357,9 +357,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/renew-change-graduate/index.html b/si/student-welcome-guide/renew-change-graduate/index.html index 06d7430e..402b6037 100644 --- a/si/student-welcome-guide/renew-change-graduate/index.html +++ b/si/student-welcome-guide/renew-change-graduate/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -366,9 +366,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/rm-si-3-health-insurance/index.html b/si/student-welcome-guide/rm-si-3-health-insurance/index.html index 39a452c4..9df76506 100644 --- a/si/student-welcome-guide/rm-si-3-health-insurance/index.html +++ b/si/student-welcome-guide/rm-si-3-health-insurance/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -406,9 +406,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-accommodation/index.html b/si/student-welcome-guide/student-accommodation/index.html index 236f7c2a..07831c3e 100644 --- a/si/student-welcome-guide/student-accommodation/index.html +++ b/si/student-welcome-guide/student-accommodation/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -407,9 +407,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-budget/index.html b/si/student-welcome-guide/student-budget/index.html index 0c0bc782..923b6027 100644 --- a/si/student-welcome-guide/student-budget/index.html +++ b/si/student-welcome-guide/student-budget/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -376,9 +376,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-meals/index.html b/si/student-welcome-guide/student-meals/index.html index dee0a826..37adc580 100644 --- a/si/student-welcome-guide/student-meals/index.html +++ b/si/student-welcome-guide/student-meals/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -364,9 +364,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html index 9fcb6329..8f972239 100644 --- a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -401,9 +401,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-residence-permit/index.html b/si/student-welcome-guide/student-residence-permit/index.html index eece1e7d..d2984f4c 100644 --- a/si/student-welcome-guide/student-residence-permit/index.html +++ b/si/student-welcome-guide/student-residence-permit/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -418,9 +418,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-transport/index.html b/si/student-welcome-guide/student-transport/index.html index ad5ce770..daedcf9f 100644 --- a/si/student-welcome-guide/student-transport/index.html +++ b/si/student-welcome-guide/student-transport/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -385,9 +385,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/student-work/index.html b/si/student-welcome-guide/student-work/index.html index 1044756e..98dc0cf1 100644 --- a/si/student-welcome-guide/student-work/index.html +++ b/si/student-welcome-guide/student-work/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -359,9 +359,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/study-cities/index.html b/si/student-welcome-guide/study-cities/index.html index 7f06d6ba..0922d618 100644 --- a/si/student-welcome-guide/study-cities/index.html +++ b/si/student-welcome-guide/study-cities/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -419,9 +419,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/tuition-and-scholarships/index.html b/si/student-welcome-guide/tuition-and-scholarships/index.html index 573aeffe..03af21c8 100644 --- a/si/student-welcome-guide/tuition-and-scholarships/index.html +++ b/si/student-welcome-guide/tuition-and-scholarships/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -363,9 +363,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/visa-and-residence-explained/index.html b/si/student-welcome-guide/visa-and-residence-explained/index.html index af290efb..f849396d 100644 --- a/si/student-welcome-guide/visa-and-residence-explained/index.html +++ b/si/student-welcome-guide/visa-and-residence-explained/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -390,9 +390,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/wellbeing-and-community/index.html b/si/student-welcome-guide/wellbeing-and-community/index.html index 60721fb3..d13399e2 100644 --- a/si/student-welcome-guide/wellbeing-and-community/index.html +++ b/si/student-welcome-guide/wellbeing-and-community/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -355,9 +355,9 @@ - - - - + + + + diff --git a/si/student-welcome-guide/where-to-apply-for-residence/index.html b/si/student-welcome-guide/where-to-apply-for-residence/index.html index 2be2bab9..234a5663 100644 --- a/si/student-welcome-guide/where-to-apply-for-residence/index.html +++ b/si/student-welcome-guide/where-to-apply-for-residence/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -59,7 +59,7 @@ - + @@ -425,9 +425,9 @@ - - - - + + + + diff --git a/si/support/index.html b/si/support/index.html index 513b30ac..56f130e7 100644 --- a/si/support/index.html +++ b/si/support/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -55,7 +55,7 @@ - + @@ -596,9 +596,9 @@ - - - - + + + + diff --git a/si/timeline-and-milestones/index.html b/si/timeline-and-milestones/index.html index e5ffabcb..f68c9850 100644 --- a/si/timeline-and-milestones/index.html +++ b/si/timeline-and-milestones/index.html @@ -21,7 +21,7 @@ gtag('js', new Date()); gtag('config', 'G-WVYV807VSS'); - + @@ -57,7 +57,7 @@ - + @@ -511,8 +511,8 @@ - - - + + + \ No newline at end of file diff --git a/style.css b/style.css index 67221dd8..ad87e771 100644 --- a/style.css +++ b/style.css @@ -1313,7 +1313,7 @@ footer hr { border: 1px solid #D0D5DD; border-radius: 8px; box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); - color: #98A2B3; + color: #667085; font-size: 18px; text-decoration: none; }