Merge pull request 'Landing/About/guide polish + Proxify-style category filter bar' (#15) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 15s Details

Reviewed-on: #15
This commit is contained in:
popovskik 2026-08-05 20:31:39 +00:00
commit 541d155bc3
293 changed files with 14126 additions and 1328 deletions

View File

@ -19,7 +19,7 @@
found: "Here's what I found:", also: "You might also like:", more: "Read more", found: "Here's what I found:", also: "You might also like:", more: "Read more",
none: "I couldn't find a clear answer for that. These might help:", tryLabel: "Popular questions:", none: "I couldn't find a clear answer for that. These might help:", tryLabel: "Popular questions:",
guideUrl: "/en/student-welcome-guide/", disclaimer: "Answers come straight from this website." }, guideUrl: "/en/student-welcome-guide/", disclaimer: "Answers come straight from this website." },
mk: { title: "Прашај MSOS", open: "Прашај MSOS", placeholder: "Постави прашање…", send: "Испрати", close: "Затвори", mk: { title: "Прашај го МСОС", open: "Прашај го МСОС", placeholder: "Постави прашање…", send: "Испрати", close: "Затвори",
greeting: "Здраво! 👋 Прашај ме било што за студирање во Словенија или за MSOS — ќе те упатам до вистинската страница. Можеш да прашаш на македонски, англиски или словенечки.", greeting: "Здраво! 👋 Прашај ме било што за студирање во Словенија или за MSOS — ќе те упатам до вистинската страница. Можеш да прашаш на македонски, англиски или словенечки.",
disc: "Јас сум автоматски водич и можам да згрешам — за официјални чекори, рокови и износи, секогаш провери ја поврзаната страница.", disc: "Јас сум автоматски водич и можам да згрешам — за официјални чекори, рокови и износи, секогаш провери ја поврзаната страница.",
found: "Еве што најдов:", also: "Можеби ќе ти користи и:", more: "Прочитај повеќе", found: "Еве што најдов:", also: "Можеби ќе ти користи и:", more: "Прочитај повеќе",

View File

@ -152,6 +152,16 @@ footer hr {
.footer-credit a { color: rgba(255, 255, 255, 0.8); text-decoration: underline; text-underline-offset: 2px; } .footer-credit a { color: rgba(255, 255, 255, 0.8); text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover { color: #FFFFFF; } .footer-credit a:hover { color: #FFFFFF; }
/* Site-wide informative disclaimer (present on every page's footer) */
.footer-disclaimer {
max-width: 980px; margin: 26px auto 0; padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.14);
font-size: 12px; line-height: 18px;
color: rgba(255, 255, 255, 0.6); text-align: center;
}
.footer-disclaimer a { color: rgba(255, 255, 255, 0.85); text-decoration: underline; text-underline-offset: 2px; }
.footer-disclaimer a:hover { color: #FFFFFF; }
/* ========================================================================== /* ==========================================================================
Mobile Footer Styles Mobile Footer Styles

View File

@ -43,3 +43,6 @@
@import 'pages/_hub.css'; @import 'pages/_hub.css';
@import 'pages/_legal.css'; @import 'pages/_legal.css';
@import 'pages/_gallery.css'; @import 'pages/_gallery.css';
/* Loaded last so the shared filter bar wins over per-page chip styles. */
@import 'pages/_filterbar.css';

View File

@ -249,13 +249,18 @@
========================================================================== */ ========================================================================== */
.mission-vision-section { .mission-vision-section {
padding: 96px 80px; /* Extra top padding so the title never looks like it touches the band above.
background-color: #FFFFFF; Full-width soft gradient band (spans edge-to-edge, never "cut on the sides"). */
padding: 116px 80px 100px;
background: linear-gradient(180deg, #EAF3F6 0%, #F6FBFC 62%, #FFFFFF 100%);
} }
.mission-vision-section .page-header-section { .mission-vision-section .page-header-section {
margin-bottom: 48px; margin-bottom: 48px;
padding: 0; padding-top: 8px;
/* Drop the inherited cream .page-header-section band so the title sits directly
on the section's blue gradient (no white rectangle behind it). */
background: transparent;
} }
.mission-vision-section .page-header-section h2 { .mission-vision-section .page-header-section h2 {
@ -278,7 +283,9 @@
position: relative; position: relative;
flex: 1; flex: 1;
height: 200px; height: 200px;
background: #F9FAFB; background: #FFFFFF;
border: 1px solid #E4EEF2;
box-shadow: 0 6px 18px rgba(16, 24, 40, 0.05);
border-radius: 12px; border-radius: 12px;
cursor: pointer; cursor: pointer;
overflow: hidden; overflow: hidden;
@ -443,13 +450,11 @@
flex-direction: column; flex-direction: column;
gap: 16px; gap: 16px;
} }
/* The mission/vision icons are unnecessary on mobile — show text only. */
.mission-icon-content, .vision-icon-content { .mission-icon-content, .vision-icon-content {
order: 1; display: none;
opacity: 1 !important; /* Ensure icons are visible */
transform: none !important;
} }
.mission-text-content, .vision-text-content { .mission-text-content, .vision-text-content {
order: 2;
opacity: 1 !important; /* Ensure text is visible */ opacity: 1 !important; /* Ensure text is visible */
transform: none !important; transform: none !important;
} }
@ -458,3 +463,100 @@
.faq-cta-container h3 { font-size: 18px; } .faq-cta-container h3 { font-size: 18px; }
.faq-cta-container p { font-size: 16px; line-height: 24px; } .faq-cta-container p { font-size: 16px; line-height: 24px; }
} }
/* ==========================================================================
Full-bleed auto-rotating team hero (under the About Us title)
========================================================================== */
.about-hero {
position: relative; left: 50%; transform: translateX(-50%);
width: 100vw; min-height: clamp(440px, 60vw, 640px);
/* Align text to the upper area so it sits above people's faces, not over them. */
display: flex; align-items: flex-start; justify-content: center; text-align: center;
overflow: hidden; margin: 0 0 8px;
}
.about-hero-slide {
position: absolute; inset: 0; z-index: 1;
background-size: cover; background-position: center;
opacity: 0; transition: opacity 1.4s ease;
}
.about-hero-slide.is-active { opacity: 1; }
.about-hero-overlay {
position: absolute; inset: 0; z-index: 2; pointer-events: none;
background: linear-gradient(180deg, rgba(45, 115, 140, 0.58) 0%, rgba(24, 74, 94, 0.66) 100%);
}
/* Title + text overlaid on the rotating images (like the landing hero) */
.about-hero-content {
position: relative; z-index: 3;
max-width: 900px; padding: 64px 24px; color: #FFFFFF;
}
.about-hero-eyebrow {
display: inline-block; text-transform: uppercase; letter-spacing: 0.08em;
font-size: 14px; font-weight: 700; color: #FFCBB0; margin-bottom: 14px;
text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}
.about-hero-content h1 {
font-size: clamp(30px, 5vw, 48px); line-height: 1.15; font-weight: 700;
color: #FFFFFF; margin: 0 0 18px; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}
.about-hero-lead {
font-size: clamp(16px, 2vw, 19px); line-height: 1.5;
color: rgba(255, 255, 255, 0.92); margin: 0 auto; max-width: 680px;
text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}
@media (prefers-reduced-motion: reduce) {
.about-hero-slide { transition: none; }
}
/* ==========================================================================
Appreciation to members & friends (photo carousel + names)
========================================================================== */
.appreciation-section { padding: 84px 24px 96px; background: #FFFFFF; text-align: center; overflow: hidden; }
.appreciation-section h2 { font-size: clamp(34px, 5vw, 54px); font-weight: 700; letter-spacing: -0.02em; color: #101828; margin: 0 0 16px; }
.appr-lead { font-size: clamp(17px, 2vw, 21px); line-height: 1.5; color: #667085; max-width: 760px; margin: 0 auto; }
/* Apple-style scrolling photo marquee */
.appr-marquee {
position: relative; left: 50%; transform: translateX(-50%);
width: 100vw; overflow: hidden;
/* extra vertical room so the enlarged focal card is not clipped */
margin-bottom: 48px; padding: 40px 0;
-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.appr-track {
display: flex; align-items: center; width: max-content;
animation: appr-scroll 70s linear infinite;
}
.appr-marquee:hover .appr-track { animation-play-state: paused; }
.appr-card {
flex: 0 0 auto; margin-right: 24px;
width: clamp(240px, 27vw, 380px);
height: clamp(170px, 19vw, 270px);
border-radius: 20px; overflow: hidden; background: #EAF1F4;
box-shadow: 0 12px 30px rgba(16, 24, 40, 0.14);
/* base state before JS focal-scaling kicks in */
transform: scale(0.82); transform-origin: center center;
will-change: transform, filter;
filter: brightness(0.62);
}
.appr-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes appr-scroll {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.appr-intro { margin-bottom: 40px; }
.appreciation-names {
display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px;
max-width: 900px; margin: 0 auto;
}
@media (prefers-reduced-motion: reduce) {
.appr-track { animation: none; }
/* no movement => show all cards evenly, no focal zoom/dim */
.appr-card { transform: scale(0.92); filter: none; }
}
.appr-name {
display: inline-block; padding: 8px 16px; border-radius: 999px;
background: #F2F7F9; border: 1px solid #E1ECF0; color: #2D5F72;
font-size: 15px; font-weight: 600;
}
.appreciation-note { font-size: 13px; color: #98A2B3; margin: 26px auto 0; font-style: italic; }

View File

@ -724,3 +724,53 @@
font-weight: 600; font-weight: 600;
color: #667085; color: #667085;
} }
/* ==========================================================================
Membership / support CTA at the end of project & event articles
========================================================================== */
.article-support-cta { max-width: 760px; margin: 8px auto 0; padding: 0 24px; }
.asc-card {
background: linear-gradient(135deg, #EAF2F5 0%, #F3F8FA 100%);
border: 1px solid #E4EEF2; border-radius: 16px;
padding: 30px 26px; text-align: center;
}
.asc-card h3 { font-size: 22px; line-height: 1.25; margin: 0 0 8px; color: #101828; font-weight: 700; }
.asc-card p { font-size: 15px; line-height: 24px; color: #475467; margin: 0 0 20px; }
.asc-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* 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; }
/* Prose posts (personal stories) — no scrollspy sidebar, single centred column */
.article-page--prose .article-sidebar { display: none; }
.article-page--prose .article-layout-container { display: block; }
.article-page--prose .article-container { max-width: 760px; margin: 0 auto; }
.article-page--prose .mobile-article-header { display: none; }
/* ---- Sidebar CTA: sits under the table of contents (Proxify-style) ---- */
.sidebar-cta {
flex-shrink: 0;
margin-top: 18px;
background: linear-gradient(160deg, #21596E 0%, #143240 100%);
border-radius: 16px;
padding: 20px 18px;
text-align: center;
color: #FFFFFF;
}
.sidebar-cta-title { font-size: 16px; font-weight: 700; line-height: 1.3; margin: 0 0 14px; }
.sidebar-cta-btn {
display: block; background: #FA7850; color: #FFFFFF; font-weight: 600; font-size: 14px;
padding: 11px 14px; border-radius: 10px; text-decoration: none;
transition: background 0.18s ease;
}
.sidebar-cta-btn:hover { background: #E8613B; }
.sidebar-cta-note { font-size: 12px; line-height: 17px; color: rgba(255,255,255,0.78); margin: 12px 0 0; }
.sidebar-cta-note a { color: #FFFFFF; text-decoration: underline; text-underline-offset: 2px; }
/* Where a page has the sidebar CTA (i.e. it has a ToC), the desktop bottom CTA is
redundant, so hide it above the mobile breakpoint. Pages without a ToC sidebar
keep the bottom CTA on every screen. On mobile the sidebar is hidden, so the
bottom CTA always shows. */
@media (min-width: 769px) {
.article-page:has(.sidebar-cta) .article-support-cta { display: none; }
}

View File

@ -172,6 +172,8 @@
} }
.blog-card[hidden] { display: none; } .blog-card[hidden] { display: none; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(16, 24, 40, 0.10); } .blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(16, 24, 40, 0.10); }
/* Whole-card link variant for published posts */
a.blog-card { text-decoration: none; color: inherit; }
.blog-thumb { .blog-thumb {
background: linear-gradient(135deg, #F2F4F7 0%, #E4E7EC 100%); background: linear-gradient(135deg, #F2F4F7 0%, #E4E7EC 100%);
display: flex; display: flex;

247
css/pages/_filterbar.css Normal file
View File

@ -0,0 +1,247 @@
/* ==========================================================================
Category filter bar (Proxify-style) + search dropdown
Shared by the Events & Projects, Blog and News pages. The existing chip
elements (.filter-pill / .blog-chip / .newshub-chip) are reused as tabs and
progressively enhanced into this bar by filter-search.js so the existing
filtering + pagination keeps working untouched.
This file is imported LAST in main.css so its rules win over the per-page
chip styles regardless of specificity.
========================================================================== */
.filterbar {
position: relative;
display: flex;
align-items: center;
gap: 6px;
width: fit-content;
max-width: 100%;
margin: 0 auto 40px;
padding: 9px 12px;
background: #F9FAFB;
border-radius: 999px;
box-shadow: 0 8px 30px rgba(16, 24, 40, 0.10);
}
/* Search mode: bar turns solid white and stretches wide */
.filterbar.is-searching {
width: 100%;
max-width: 880px;
background: #FFFFFF;
}
/* ---- Tabs (reuse the existing chip row) ---- */
.filterbar-tabs {
display: flex;
align-items: center;
gap: 2px;
flex: 1 1 auto;
margin: 0;
padding: 0;
border: 0;
overflow-x: auto;
scrollbar-width: none;
}
.filterbar-tabs::-webkit-scrollbar { display: none; }
.filterbar-tabs[hidden] { display: none; }
.filterbar .filter-pill,
.filterbar .blog-chip,
.filterbar .newshub-chip {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
gap: 7px;
height: 42px;
padding: 0 18px;
font-family: inherit;
font-size: 14px;
font-weight: 600;
line-height: 1.3;
white-space: nowrap;
color: #344054;
background: transparent;
border: 0;
border-radius: 999px;
cursor: pointer;
transition: color .15s ease, background .15s ease, box-shadow .15s ease;
}
.filterbar .filter-pill i,
.filterbar .blog-chip i,
.filterbar .newshub-chip i { font-size: 12px; }
.filterbar .filter-pill:hover,
.filterbar .blog-chip:hover,
.filterbar .newshub-chip:hover { color: #2D5F72; background: transparent; }
.filterbar .filter-pill.active,
.filterbar .blog-chip.is-active,
.filterbar .newshub-chip.is-active {
color: #2D5F72;
background: #FFFFFF;
box-shadow: 0 1px 3px rgba(16, 24, 40, 0.10), 0 1px 2px rgba(16, 24, 40, 0.06);
}
/* ---- Search icon button ---- */
.filterbar-search-btn {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
justify-content: center;
width: 42px; height: 42px;
border: 0;
border-radius: 999px;
background: transparent;
color: #344054;
font-size: 18px;
cursor: pointer;
transition: color .15s ease;
}
.filterbar-search-btn:hover { color: #2D5F72; }
.filterbar-search-btn[hidden] { display: none; }
/* ---- Search mode row ---- */
.filterbar-search {
display: flex;
align-items: center;
gap: 10px;
flex: 1 1 auto;
width: 100%;
}
.filterbar-search[hidden] { display: none; }
.filterbar-search-label {
display: none;
padding: 0 6px 0 12px;
font-size: 14px;
font-weight: 600;
color: #101828;
white-space: nowrap;
}
@media (min-width: 640px) { .filterbar-search-label { display: block; } }
.filterbar-search-field {
display: flex;
align-items: center;
gap: 10px;
flex: 1 1 auto;
height: 42px;
padding: 0 14px;
background: #FFFFFF;
border: 1.5px solid #2D5F72;
border-radius: 999px;
box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05), 0 0 0 4px #E1ECF0;
}
.filterbar-search-field i { color: #101828; font-size: 15px; }
.filterbar-search-field input {
flex: 1 1 auto;
height: 100%;
border: 0;
outline: 0;
background: transparent;
font-family: inherit;
font-size: 15px;
color: #101828;
}
.filterbar-search-field input::placeholder { color: #98A2B3; }
.filterbar-search-close {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
justify-content: center;
width: 42px; height: 42px;
border: 0;
border-radius: 999px;
background: transparent;
color: #667085;
font-size: 18px;
cursor: pointer;
transition: color .15s ease;
}
.filterbar-search-close:hover { color: #101828; }
/* ---- Results dropdown ---- */
.filterbar-results {
position: absolute;
left: 0; right: 0;
top: calc(100% + 8px);
z-index: 20;
padding: 20px 8px 12px;
background: #F9FAFB;
border-radius: 24px;
box-shadow: 0 8px 30px rgba(16, 24, 40, 0.16);
}
.filterbar-results[hidden] { display: none; }
.filterbar-results-count {
margin: 0 0 8px;
padding: 0 18px;
font-size: 13px;
color: #667085;
}
.filterbar-results-list {
list-style: none;
margin: 0;
padding: 0 8px;
max-height: 400px;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 2px;
}
.filterbar-result { border-radius: 14px; transition: background .15s ease; }
.filterbar-result:hover { background: #FFFFFF; }
.filterbar-result-link {
display: flex;
align-items: center;
gap: 16px;
padding: 12px;
text-decoration: none;
}
.filterbar-result-thumb {
flex: 0 0 auto;
display: flex;
align-items: center;
justify-content: center;
width: 112px; height: 72px;
border-radius: 12px;
overflow: hidden;
background: #EAF1F4;
color: #2D5F72;
font-size: 24px;
}
.filterbar-result-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.filterbar-result-body {
display: flex;
flex-direction: column;
gap: 6px;
min-width: 0;
}
.filterbar-result-cat {
align-self: flex-start;
padding: 3px 10px;
font-size: 12px;
font-weight: 600;
color: #475467;
background: #FFFFFF;
border: 1px solid #D0D5DD;
border-radius: 999px;
}
.filterbar-result-title {
font-size: 15px;
font-weight: 700;
line-height: 1.35;
color: #101828;
}
/* ==========================================================================
Projects sub-filter row (event types) centred pill row under the bar,
styled like the Proxify secondary chips.
========================================================================== */
.filter-subnav {
justify-content: center;
gap: 10px;
margin-top: 4px;
}
@media (max-width: 640px) {
.filterbar { width: 100%; border-radius: 20px; }
.filterbar.is-searching { width: 100%; }
}

View File

@ -79,6 +79,8 @@
.album-info { padding: 14px 16px 16px; } .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-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-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 i { font-size: 12px; color: #2D738C; }
.album-meta { .album-meta {
font-size: 13px; color: #667085; margin: 0; font-size: 13px; color: #667085; margin: 0;
display: flex; align-items: center; gap: 8px; flex-wrap: wrap; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;

View File

@ -227,7 +227,7 @@
color: #101828; color: #101828;
} }
.guide-landing-hero p { .guide-landing-hero p {
max-width: 720px; max-width: 880px;
margin: 0 auto 12px; margin: 0 auto 12px;
font-size: 17px; font-size: 17px;
line-height: 28px; line-height: 28px;
@ -613,7 +613,7 @@
/* ---------- Route builder ---------- */ /* ---------- Route builder ---------- */
.guide-route { .guide-route {
max-width: 920px; max-width: 920px;
margin: -36px auto 0; margin: 0 auto;
position: relative; position: relative;
background: #FFFFFF; background: #FFFFFF;
border: 1px solid #EAECF0; border: 1px solid #EAECF0;
@ -1025,3 +1025,14 @@
.route-links a { padding: 5px 9px; font-size: 11px; } .route-links a { padding: 5px 9px; font-size: 11px; }
.route-disclaimer { margin: 14px 0 0; padding: 11px 13px; font-size: 10.5px; line-height: 15px; page-break-inside: avoid; } .route-disclaimer { margin: 14px 0 0; padding: 11px 13px; font-size: 10.5px; line-height: 15px; page-break-inside: avoid; }
} }
/* Informative disclaimer callout shown across the Student Welcome Guide */
.guide-disclaimer {
display: flex; gap: 12px; align-items: flex-start;
max-width: 880px; /* keep it to the reading column, not full-bleed */
background: #FFF7ED; border: 1px solid #FED7AA; border-left: 4px solid #FB923C;
border-radius: 12px; padding: 15px 18px; margin: 8px auto 48px;
}
.guide-disclaimer > i { color: #EA7317; font-size: 18px; margin-top: 2px; flex: 0 0 auto; }
.guide-disclaimer .gd-body { font-size: 13.5px; line-height: 21px; color: #7C4A21; }
.guide-disclaimer .gd-body strong { display: block; color: #9A3412; font-size: 14px; margin-bottom: 3px; }

View File

@ -47,7 +47,15 @@
left: 0; left: 0;
height: 100%; height: 100%;
width: 100%; width: 100%;
background: rgba(45, 115, 140, 0.64); /* Radial vignette (Proxify-style): a light, whitish-blue glow in the centre
over the CTA that falls off to a deep, dark blue at the edges pulling
the eye straight to the middle where the "Become a member" button sits.
Focal point biased slightly downward (58%) to sit on the button. */
background: radial-gradient(ellipse 70% 78% at 50% 58%,
rgba(178, 218, 238, 0.40) 0%,
rgba(96, 165, 190, 0.46) 28%,
rgba(34, 86, 114, 0.74) 58%,
rgba(9, 34, 52, 0.96) 100%);
z-index: 2; z-index: 2;
} }
@ -88,7 +96,8 @@
.hero-content p { .hero-content p {
font-size: 20px; font-size: 20px;
line-height: 30px; line-height: 30px;
margin: 0 0 72px 0; /* tighter gap so the CTA sits a bit higher, closer to the copy */
margin: 0 0 40px 0;
} }
/* 2. Partners Section */ /* 2. Partners Section */

View File

@ -76,21 +76,27 @@
.hub-story-text p { font-size: 17px; line-height: 28px; color: rgba(255, 255, 255, 0.9); margin: 0 0 16px; } .hub-story-text p { font-size: 17px; line-height: 28px; color: rgba(255, 255, 255, 0.9); margin: 0 0 16px; }
.hub-story-text p:last-child { margin-bottom: 0; } .hub-story-text p:last-child { margin-bottom: 0; }
/* ---------- Use cases (image cards, continuous auto-scrolling marquee) ---------- */ /* ---------- Use cases (image cards, auto-scrolling + drag + dots) ---------- */
.hub-carousel { position: relative; } .hub-carousel { position: relative; }
/* masked viewport: cards fade out at both edges instead of being hard-cut */ /* masked, scrollable viewport: cards fade out at both edges instead of being
hard-cut. Auto-scroll, click-and-drag and touch swiping are driven by JS
(setupHubCarousel); the native scrollbar is hidden. */
.hub-uses { .hub-uses {
overflow: hidden; overflow-x: auto; overflow-y: hidden;
padding: 6px 0 10px; padding: 6px 0 10px;
-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
cursor: grab;
-webkit-user-select: none; user-select: none;
scrollbar-width: none; -ms-overflow-style: none;
scroll-behavior: auto;
} }
/* the moving track = two identical groups; translateX(-50%) loops seamlessly */ .hub-uses::-webkit-scrollbar { display: none; }
.hub-uses.is-dragging { cursor: grabbing; }
/* the track = three identical groups so the JS loop is seamless in both directions */
.hub-track { .hub-track {
display: flex; width: max-content; display: flex; width: max-content;
animation: hub-marquee 55s linear infinite;
} }
.hub-carousel:hover .hub-track { animation-play-state: paused; }
.hub-group { .hub-group {
display: flex; gap: 18px; padding-right: 18px; flex: 0 0 auto; display: flex; gap: 18px; padding-right: 18px; flex: 0 0 auto;
} }
@ -106,17 +112,11 @@
.hub-use:nth-child(3n+2) { background: linear-gradient(135deg, #FA7850 0%, #E8613B 100%); } .hub-use:nth-child(3n+2) { background: linear-gradient(135deg, #FA7850 0%, #E8613B 100%); }
.hub-use:nth-child(3n+3) { background: linear-gradient(135deg, #3B82C4 0%, #2C6BA6 100%); } .hub-use:nth-child(3n+3) { background: linear-gradient(135deg, #3B82C4 0%, #2C6BA6 100%); }
.hub-use:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(16, 24, 40, 0.18); } .hub-use:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(16, 24, 40, 0.18); }
@keyframes hub-marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
.hub-track { animation: none; }
}
.hub-use-img { .hub-use-img {
position: absolute; inset: 0; width: 100%; height: 100%; position: absolute; inset: 0; width: 100%; height: 100%;
object-fit: cover; display: block; object-fit: cover; display: block;
transition: transform 0.4s ease; transition: transform 0.4s ease;
-webkit-user-drag: none; user-select: none; pointer-events: none;
} }
.hub-use:hover .hub-use-img { transform: scale(1.05); } .hub-use:hover .hub-use-img { transform: scale(1.05); }
/* gradient rising from the bottom for text legibility */ /* gradient rising from the bottom for text legibility */
@ -138,6 +138,25 @@
.hub-use-body h3 { font-size: 18px; line-height: 1.25; color: #fff; margin: 0; font-weight: 700; } .hub-use-body h3 { font-size: 18px; line-height: 1.25; color: #fff; margin: 0; font-weight: 700; }
.hub-use-body p { font-size: 13px; line-height: 19px; color: rgba(255, 255, 255, 0.9); margin: 0; } .hub-use-body p { font-size: 13px; line-height: 19px; color: rgba(255, 255, 255, 0.9); margin: 0; }
/* ---------- Scroll-position dots ---------- */
.hub-dots {
display: flex; justify-content: center; align-items: center;
gap: 9px; margin-top: 18px;
}
.hub-dot {
width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%;
background: #CBD5DE; cursor: pointer; flex: 0 0 auto;
transition: width 0.25s ease, background-color 0.25s ease,
opacity 0.25s ease, transform 0.25s ease;
}
.hub-dot:hover { background: #9AA9B7; }
.hub-dot.is-near { width: 7px; height: 7px; }
.hub-dot.is-far { width: 6px; height: 6px; opacity: 0.6; }
.hub-dot.is-active {
width: 24px; height: 8px; border-radius: 6px;
background: #2D738C; opacity: 1;
}
/* ---------- Amenities ---------- */ /* ---------- Amenities ---------- */
.hub-amenities { .hub-amenities {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;

View File

@ -47,3 +47,9 @@
.legal-row { flex-direction: column; gap: 2px; } .legal-row { flex-direction: column; gap: 2px; }
.legal-row .v { text-align: left; } .legal-row .v { text-align: left; }
} }
/* Prose card (website content & liability disclaimer) */
.legal-prose { padding: 18px 24px 20px; }
.legal-prose p { font-size: 14px; line-height: 22px; color: #475467; margin: 0 0 12px; }
.legal-prose p:last-child { margin-bottom: 0; }
.legal-prose a { color: #2D738C; font-weight: 500; }

View File

@ -76,13 +76,25 @@
.mm-num-label { display: block; margin-top: 8px; font-size: 15px; color: rgba(255,255,255,0.85); } .mm-num-label { display: block; margin-top: 8px; font-size: 15px; color: rgba(255,255,255,0.85); }
.mm-numbers-section .mm-note { color: rgba(255,255,255,0.6); margin-top: 24px; } .mm-numbers-section .mm-note { color: rgba(255,255,255,0.6); margin-top: 24px; }
/* ---- ways ---- */ /* ---- ways (hub-style auto-scrolling slider) ---- */
.mm-ways { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; } /* Mechanics (.hub-carousel/.hub-uses/.hub-track/.hub-group), the marquee
.mm-way { border: 1px solid #EAECF0; border-radius: 16px; padding: 24px; background: #FFFFFF; transition: border-color 0.18s ease, box-shadow 0.18s ease; } animation, the photo (.hub-use-img), the legibility gradient (::after) and
.mm-way:hover { border-color: #F6C9A8; box-shadow: 0 10px 22px rgba(242,118,46,0.10); } the bottom-anchored body are all reused from _hub.css; the JS clone step
.mm-way-ico { font-size: 22px; color: var(--mm-teal); margin-bottom: 12px; } (setupHubCarousel) runs on every page and picks up the .hub-track here.
.mm-way h3 { font-size: 17px; margin: 0 0 6px; } These rules only tweak card size and add a small icon badge over the photo. */
.mm-way p { font-size: 14px; line-height: 22px; color: #667085; margin: 0; } .mm-ways-carousel { margin-top: 4px; }
.mm-use { width: clamp(240px, 24vw, 300px); aspect-ratio: 5 / 6; }
/* Brand icon as a subtle glass badge floating over the photo. */
.mm-use-ico {
position: absolute; top: 14px; left: 14px; z-index: 3;
display: inline-flex; align-items: center; justify-content: center;
width: 44px; height: 44px; border-radius: 12px;
background: rgba(10, 18, 26, 0.42);
-webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
color: #fff; font-size: 19px;
}
.mm-use .hub-use-body h3 { font-size: 19px; line-height: 1.25; }
.mm-use .hub-use-body p { font-size: 14px; line-height: 21px; }
/* ---- membership in real life ---- */ /* ---- membership in real life ---- */
.mm-reals { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; } .mm-reals { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }

View File

@ -20,7 +20,7 @@
.newshub-hero h1 { max-width: 760px; margin: 0 auto 16px; font-size: 42px; line-height: 1.12; color: #101828; } .newshub-hero h1 { max-width: 760px; margin: 0 auto 16px; font-size: 42px; line-height: 1.12; color: #101828; }
.newshub-lead { max-width: 640px; margin: 0 auto; font-size: 18px; line-height: 28px; color: #475467; } .newshub-lead { max-width: 640px; margin: 0 auto; font-size: 18px; line-height: 28px; color: #475467; }
.newshub-list { max-width: 1120px; margin: 40px auto 72px; padding: 0 24px; } .newshub-list { max-width: 1120px; margin: 0 auto 72px; padding: 0 24px; }
.newshub-filters { .newshub-filters {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;

View File

@ -35,6 +35,18 @@ placeholder inventory lives in `PRE-LAUNCH-CHECKLIST.md`; GA4 setup in
- [ ] Periodically bump Font Awesome (currently 6.5.1, pinned + SRI) and regenerate its integrity hash. - [ ] Periodically bump Font Awesome (currently 6.5.1, pinned + SRI) and regenerate its integrity hash.
- [ ] Confirm the host takes docroot backups (source is already version-controlled in Gitea; form data in Google Sheets / MailerLite). - [ ] Confirm the host takes docroot backups (source is already version-controlled in Gitea; form data in Google Sheets / MailerLite).
## 🛠 Maintenance / build steps to remember
- [ ] **After adding a brand-new page, run SEO.** The pre-commit hook
(`tools/git-hooks/pre-commit`, activate once with
`git config core.hooksPath tools/git-hooks`) auto-syncs the News hub,
homepage "Latest news", `/llms.txt` and `/links-for-bots/` on every commit —
but it does **not** run SEO. For a new page also:
1. add its date to `ARTICLE_DATES` in `tools/seo_inject.py`, then
2. run `python tools/seo_inject.py --all --sitemap` (SEO meta + canonical/hreflang + sitemap entry).
- Open decision: fold `seo_inject` into the hook or a deploy step so even this is hands-off
(kept out by default because it rewrites all ~225 pages).
## ✅ Done (for reference — already live/hardened) ## ✅ Done (for reference — already live/hardened)
- Security headers (HSTS, enforcing CSP, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy) - Security headers (HSTS, enforcing CSP, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy)

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -191,12 +191,24 @@
<!-- END_HEADER --> <!-- END_HEADER -->
<main class="page-content"> <main class="page-content">
<!-- About Us Header Section --> <!-- Auto-rotating team hero -->
<section class="page-header-section"> <section class="about-hero" aria-label="MSOS team moments">
<div class="container text-center"> <div class="about-hero-slide is-active" style="background-image:url('../../images/about-hero-01.webp')"></div>
<span class="page-subtitle" style="text-transform: uppercase;">About us</span> <div class="about-hero-slide" style="background-image:url('../../images/about-hero-02.webp')"></div>
<div class="about-hero-slide" style="background-image:url('../../images/about-hero-03.webp')"></div>
<div class="about-hero-slide" style="background-image:url('../../images/about-hero-04.webp')"></div>
<div class="about-hero-slide" style="background-image:url('../../images/about-hero-05.webp')"></div>
<div class="about-hero-slide" style="background-image:url('../../images/about-hero-06.webp')"></div>
<div class="about-hero-slide" style="background-image:url('../../images/about-hero-07.webp')"></div>
<div class="about-hero-slide" style="background-image:url('../../images/about-hero-08.webp')"></div>
<div class="about-hero-slide" style="background-image:url('../../images/about-hero-09.webp')"></div>
<div class="about-hero-slide" style="background-image:url('../../images/about-hero-10.webp')"></div>
<div class="about-hero-slide" style="background-image:url('../../images/about-hero-11.webp')"></div>
<div class="about-hero-overlay"></div>
<div class="about-hero-content">
<span class="about-hero-eyebrow">About us</span>
<h1>Our team, mission, vision & core values</h1> <h1>Our team, mission, vision & core values</h1>
<p class="page-description">MSOS is more than an organization - it is the energy of the team behind it. Our members are the heart and driving force that inspires us, writing this story and shaping student life in Slovenia.</p> <p class="about-hero-lead">MSOS is more than an organization - it is the energy of the team behind it. Our members are the heart and driving force that inspires us, writing this story and shaping student life in Slovenia.</p>
</div> </div>
</section> </section>
@ -344,17 +356,42 @@
</section> </section>
<!-- FAQ Call to Action Section --> <!-- FAQ Call to Action Section -->
<section class="faq-cta-section"> <!-- Appreciation to members & friends (photos are placeholders; names pending full list) -->
<div class="faq-cta-container"> <section class="appreciation-section">
<div class="avatar-group"> <div class="appr-intro">
<img width="1197" height="1197" loading="lazy" decoding="async" src="../../images/about_marija_min.webp" alt="Avatar of Marija" class="avatar"> <h2>Our members & friends</h2>
<img width="1083" height="1083" loading="lazy" decoding="async" src="../../images/about_kristijan_min.webp" alt="Avatar of Kristijan" class="avatar large"> <p class="appr-lead">MSOS is its people. With gratitude to everyone who has been part of our story — and everyone still writing it with us.</p>
<img width="1099" height="1099" loading="lazy" decoding="async" src="../../images/about_lea_min.webp" alt="Avatar of Lea" class="avatar"> </div>
<!-- Scrolling photo carousel (Apple-style focal zoom) -->
<div class="appr-marquee" aria-label="MSOS members and friends">
<div class="appr-track">
<div class="appr-card"><img loading="lazy" decoding="async" src="../../images/event4-img-1.webp" alt="MSOS members at an event"></div>
<div class="appr-card"><img loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="MSOS members at an event"></div>
<div class="appr-card"><img loading="lazy" decoding="async" src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana"></div>
<div class="appr-card"><img loading="lazy" decoding="async" src="../../images/event4-image2.webp" alt="MSOS members at an event"></div>
<div class="appr-card"><img loading="lazy" decoding="async" src="../../images/event3-photo-5.webp" alt="MSOS members at an event"></div>
<div class="appr-card"><img loading="lazy" decoding="async" src="../../images/msnl-3.webp" alt="Macedonian Student Night in Ljubljana"></div>
<div class="appr-card"><img loading="lazy" decoding="async" src="../../images/event4-img-7.webp" alt="MSOS members at an event"></div>
<div class="appr-card"><img loading="lazy" decoding="async" src="../../images/event3-photo-8.webp" alt="MSOS members at an event"></div>
<!-- duplicate set for a seamless infinite loop (aria-hidden) -->
<div class="appr-card" aria-hidden="true"><img loading="lazy" decoding="async" src="../../images/event4-img-1.webp" alt=""></div>
<div class="appr-card" aria-hidden="true"><img loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt=""></div>
<div class="appr-card" aria-hidden="true"><img loading="lazy" decoding="async" src="../../images/msnl-1.webp" alt=""></div>
<div class="appr-card" aria-hidden="true"><img loading="lazy" decoding="async" src="../../images/event4-image2.webp" alt=""></div>
<div class="appr-card" aria-hidden="true"><img loading="lazy" decoding="async" src="../../images/event3-photo-5.webp" alt=""></div>
<div class="appr-card" aria-hidden="true"><img loading="lazy" decoding="async" src="../../images/msnl-3.webp" alt=""></div>
<div class="appr-card" aria-hidden="true"><img loading="lazy" decoding="async" src="../../images/event4-img-7.webp" alt=""></div>
<div class="appr-card" aria-hidden="true"><img loading="lazy" decoding="async" src="../../images/event3-photo-8.webp" alt=""></div>
</div> </div>
<h3>Have any questions?</h3> </div>
<p class="page-description" style="margin: 0;">Can't find the answer you're looking for? Please chat to our friendly team.</p> <div class="appreciation-names">
<a href="#" class="btn btn-primary-orange">See all FAQs</a> <span class="appr-name">Kristijan P.</span>
</div> <span class="appr-name">Lea J.</span>
<span class="appr-name">Marko A.</span>
<span class="appr-name">Marija K.</span>
<span class="appr-name">Monika V.</span>
</div>
<p class="appreciation-note">Placeholder — the full list of members and friends is being compiled.</p>
</section> </section>
</main> </main>
@ -401,6 +438,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -413,6 +457,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -209,7 +209,7 @@
<h2 class="mm-h2">Why become a member?</h2> <h2 class="mm-h2">Why become a member?</h2>
<div class="mm-benefits"> <div class="mm-benefits">
<figure class="mm-benefit-photo"> <figure class="mm-benefit-photo">
<img width="1425" height="950" src="../../images/event4-image2.webp" alt="Macedonian students gathered together in Ljubljana" loading="lazy"> <img width="1200" height="1600" src="../../images/mm-benefit-real-events.webp" alt="Macedonian students gathered together in Ljubljana" loading="lazy">
<figcaption>Real events, real friendships</figcaption> <figcaption>Real events, real friendships</figcaption>
</figure> </figure>
<article class="mm-benefit"> <article class="mm-benefit">
@ -241,7 +241,7 @@
<h3>Feel at home away from home</h3><p>Belong to a community where you never have to explain where you come from.</p> <h3>Feel at home away from home</h3><p>Belong to a community where you never have to explain where you come from.</p>
</article> </article>
<figure class="mm-benefit-photo"> <figure class="mm-benefit-photo">
<img width="1087" height="586" src="../../images/msnl-3.webp" alt="Students writing their names in Cyrillic at Macedonian Student Night" loading="lazy"> <img width="1600" height="1067" src="../../images/mm-benefit-piece-of-home.webp" alt="Students writing their names in Cyrillic at Macedonian Student Night" loading="lazy">
<figcaption>A piece of home in Slovenia</figcaption> <figcaption>A piece of home in Slovenia</figcaption>
</figure> </figure>
</div> </div>
@ -261,31 +261,43 @@
<section class="mm-section"> <section class="mm-section">
<h2 class="mm-h2">There is more than one way to be part of MSOS</h2> <h2 class="mm-h2">There is more than one way to be part of MSOS</h2>
<p class="mm-lead">You do not need to organise events or lead to belong. Join in the way that fits you.</p> <p class="mm-lead">You do not need to organise events or lead to belong. Join in the way that fits you.</p>
<div class="mm-ways"> <div class="hub-carousel mm-ways-carousel">
<article class="mm-way"> <div class="hub-uses">
<div class="mm-way-ico"><i class="fas fa-envelope-open-text" aria-hidden="true"></i></div> <div class="hub-track">
<h3>Stay connected</h3><p>Receive updates and know what is happening.</p> <div class="hub-group">
</article> <article class="hub-use mm-use">
<article class="mm-way"> <img width="1200" height="1600" class="hub-use-img" loading="lazy" decoding="async" src="../../images/mm-way-stay-connected.webp" alt="Stay connected">
<div class="mm-way-ico"><i class="fas fa-mug-hot" aria-hidden="true"></i></div> <div class="mm-use-ico"><i class="fas fa-envelope-open-text" aria-hidden="true"></i></div>
<h3>Join the community</h3><p>Come to events, meet people and take part when it suits you.</p> <div class="hub-use-body"><h3>Stay connected</h3><p>Receive updates and know what is happening.</p></div>
</article> </article>
<article class="mm-way"> <article class="hub-use mm-use">
<div class="mm-way-ico"><i class="fas fa-hands-helping" aria-hidden="true"></i></div> <img width="1600" height="1067" class="hub-use-img" loading="lazy" decoding="async" src="../../images/mm-way-community.webp" alt="Join the community">
<h3>Volunteer sometimes</h3><p>Help with selected activities without a long-term commitment.</p> <div class="mm-use-ico"><i class="fas fa-mug-hot" aria-hidden="true"></i></div>
</article> <div class="hub-use-body"><h3>Join the community</h3><p>Come to events, meet people and take part when it suits you.</p></div>
<article class="mm-way"> </article>
<div class="mm-way-ico"><i class="fas fa-diagram-project" aria-hidden="true"></i></div> <article class="hub-use mm-use">
<h3>Join projects</h3><p>Contribute to specific initiatives, campaigns, guides or collaborations.</p> <img width="1600" height="1200" class="hub-use-img" loading="lazy" decoding="async" src="../../images/mm-way-volunteer.webp" alt="Volunteer sometimes">
</article> <div class="mm-use-ico"><i class="fas fa-hands-helping" aria-hidden="true"></i></div>
<article class="mm-way"> <div class="hub-use-body"><h3>Volunteer sometimes</h3><p>Help with selected activities without a long-term commitment.</p></div>
<div class="mm-way-ico"><i class="fas fa-calendar-check" aria-hidden="true"></i></div> </article>
<h3>Organise events</h3><p>Help plan, coordinate, promote and deliver activities.</p> <article class="hub-use mm-use">
</article> <img width="1600" height="1067" class="hub-use-img" loading="lazy" decoding="async" src="../../images/mm-way-projects.webp" alt="Join projects">
<article class="mm-way"> <div class="mm-use-ico"><i class="fas fa-diagram-project" aria-hidden="true"></i></div>
<div class="mm-way-ico"><i class="fas fa-star" aria-hidden="true"></i></div> <div class="hub-use-body"><h3>Join projects</h3><p>Contribute to specific initiatives, campaigns, guides or collaborations.</p></div>
<h3>Take responsibility</h3><p>Explore leadership, governance, representation or local team roles.</p> </article>
</article> <article class="hub-use mm-use">
<img width="1600" height="1067" class="hub-use-img" loading="lazy" decoding="async" src="../../images/mm-way-events.webp" alt="Organise events">
<div class="mm-use-ico"><i class="fas fa-calendar-check" aria-hidden="true"></i></div>
<div class="hub-use-body"><h3>Organise events</h3><p>Help plan, coordinate, promote and deliver activities.</p></div>
</article>
<article class="hub-use mm-use">
<img width="1600" height="900" class="hub-use-img" loading="lazy" decoding="async" src="../../images/mm-way-responsibility.webp" alt="Take responsibility">
<div class="mm-use-ico"><i class="fas fa-star" aria-hidden="true"></i></div>
<div class="hub-use-body"><h3>Take responsibility</h3><p>Explore leadership, governance, representation or local team roles.</p></div>
</article>
</div>
</div>
</div>
</div> </div>
</section> </section>
@ -585,6 +597,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -597,6 +616,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -0,0 +1,452 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Study in Slovenia with an Ad futura Scholarship: Guide for Western Balkan Students in 2026 - MSOS</title>
<!-- SEO:START -->
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500
});
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date());
gtag('config', 'G-WVYV807VSS');
</script>
<script src="/consent.js" defer></script>
<meta name="description" content="Planning to continue your studies in Slovenia? Citizens of North Macedonia and several other Western Balkan countries can apply for an Ad futura scholarship…">
<link rel="canonical" href="https://msosorg.com/en/blog/ad-futura-scholarship-slovenia-2026/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/ad-futura-scholarship-slovenia-2026/">
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/blog/ad-futura-scholarship-slovenia-2026/">
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/blog/ad-futura-scholarship-slovenia-2026/">
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/blog/ad-futura-scholarship-slovenia-2026/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
<meta property="og:title" content="Study in Slovenia with an Ad futura Scholarship: Guide for Western Balkan Students in 2026 - MSOS">
<meta property="og:description" content="Planning to continue your studies in Slovenia? Citizens of North Macedonia and several other Western Balkan countries can apply for an Ad futura scholarship…">
<meta property="og:url" content="https://msosorg.com/en/blog/ad-futura-scholarship-slovenia-2026/">
<meta property="og:image" content="https://msosorg.com/images/event4-image2.webp">
<meta property="og:locale" content="en_GB">
<meta property="og:locale:alternate" content="mk_MK">
<meta property="og:locale:alternate" content="sl_SI">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Study in Slovenia with an Ad futura Scholarship: Guide for Western Balkan Students in 2026 - MSOS">
<meta name="twitter:description" content="Planning to continue your studies in Slovenia? Citizens of North Macedonia and several other Western Balkan countries can apply for an Ad futura scholarship…">
<meta name="twitter:image" content="https://msosorg.com/images/event4-image2.webp">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Study in Slovenia with an Ad futura Scholarship: Guide for Western Balkan Students in 2026","description":"Planning to continue your studies in Slovenia? Citizens of North Macedonia and several other Western Balkan countries can apply for an Ad futura scholarship…","image":"https://msosorg.com/images/event4-image2.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/blog/ad-futura-scholarship-slovenia-2026/","datePublished":"2026-08-02","dateModified":"2026-08-02"}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://msosorg.com/en/blog/"},{"@type":"ListItem","position":3,"name":"Study in Slovenia with an Ad futura Scholarship: Guide for Western Balkan Students in 2026","item":"https://msosorg.com/en/blog/ad-futura-scholarship-slovenia-2026/"}]}</script>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<!-- SEO:END -->
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome (for icons) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media=&#39;all&#39;" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
<!-- Correct path to the main CSS file -->
<link rel="stylesheet" href="../../../css/main.css">
</head>
<body>
<!-- START_HEADER -->
<header class="dropdown-header-navigation">
<div class="container">
<!-- Logotip je zdaj samostojen element na levi strani -->
<a href="../../../en/" class="logo-link">
<img src="../../../images/msos-logo-en.svg" alt="Macedonian Student Organisation in Slovenia Logo" class="logo-img">
</a>
<!-- Nov ovoj za vse elemente na desni strani -->
<div class="header-right-wrapper">
<nav>
<ul class="navigation desktop-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<div class="current-lang">
<i class="fas fa-globe"></i>
<span id="current-lang-code">EN</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="lang-dropdown">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
</div>
<!-- Ikona za mobilni meni ostaja ločena za lažje upravljanje -->
<div class="mobile-menu-icon">
<i class="fas fa-bars"></i>
<i class="fas fa-times"></i>
</div>
</div>
</header>
<!-- Panel za mobilno navigacijo (struktura ostaja enaka) -->
<div class="mobile-nav-panel">
<nav>
<ul class="navigation mobile-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<button class="current-lang" id="mobile-lang-trigger">
<i class="fas fa-globe"></i>
<span>EN</span>
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
<!-- Modalno okno za izbiro jezika (ostaja enako) -->
<div id="language-modal-overlay">
<div class="language-modal-content">
<div class="language-modal-header">
<h3>Select Language</h3>
<button id="language-modal-close" aria-label="Close language selection">&times;</button>
</div>
<div class="language-modal-body">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
<!-- END_HEADER -->
<main class="article-page">
<!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">Study in Slovenia with an Ad futura Scholarship: Guide for Western Balkan Students in 2026</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<!-- Dropdown Menu for Mobile -->
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links">
<!-- Links will be dynamically inserted here by JavaScript -->
</ul>
</div>
</div>
<div class="article-layout-container">
<!-- Desktop Scrollspy Sidebar -->
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#1-who-can-apply" class="active">1. Who can apply?</a></li>
<li><a href="#2-which-study-areas-are-eligible">2. Which study areas are eligible?</a></li>
<li><a href="#3-what-does-the-scholarship-cover">3. What does the scholarship cover?</a></li>
<li><a href="#4-what-are-the-main-conditions">4. What are the main conditions?</a></li>
<li><a href="#5-residence-and-the-required-representative-in-slovenia">5. Residence and the required representative in Slovenia</a></li>
<li><a href="#6-which-documents-are-required">6. Which documents are required?</a></li>
<li><a href="#7-how-are-candidates-selected">7. How are candidates selected?</a></li>
<li><a href="#8-how-and-when-do-you-apply">8. How and when do you apply?</a></li>
<li><a href="#9-what-happens-after-receiving-the-scholarship">9. What happens after receiving the scholarship?</a></li>
<li><a href="#sources">Sources</a></li>
</ul>
</nav>
</aside>
<article class="article-container">
<header class="article-header">
<p class="article-publish-date">Guides &middot; Last checked 2 August 2026</p>
<h1>Study in Slovenia with an Ad futura Scholarship: Guide for Western Balkan Students in 2026</h1>
<p class="article-subtitle">Planning to continue your studies in Slovenia? Citizens of North Macedonia and several other Western Balkan countries can apply for an Ad futura scholarship for selected second-cycle masters programmes in Slovenia during the 2026/2027 academic year.</p>
</header>
<figure class="article-main-image">
<img width="1600" height="1067" fetchpriority="high" src="../../../images/event4-image2.webp" alt="Macedonian students together in Slovenia">
<figcaption><span class="fig-illustrative"><i class="fas fa-circle-info" aria-hidden="true"></i> Illustrative image</span> &middot; Placeholder image.</figcaption>
</figure>
<div class="article-body">
<p><strong>Planning to continue your studies in Slovenia? Citizens of North Macedonia and several other Western Balkan countries can apply for an Ad futura scholarship for selected second-cycle masters programmes in Slovenia during the 2026/2027 academic year.</strong></p>
<p>The scholarship provides <strong>€800 per month, or €9,600 per academic year</strong>, for living expenses. Applications are open until <strong>2 September 2026</strong>.</p>
<p><em>This guide is based on the official 380th Public Call for 2026. Requirements may change in future years, so always read the complete official call before applying.</em></p>
<h2 id="1-who-can-apply">1. Who can apply?</h2>
<p>The scholarship is open to citizens of <strong>North Macedonia, Bosnia and Herzegovina, Montenegro, Kosovo and Serbia</strong>.</p>
<p>Applicants must have permanent residence outside Slovenia and must not be Slovenian citizens or long-term residents of Slovenia. They must have completed, or be completing, their undergraduate degree at a higher-education institution in one of the eligible Western Balkan countries.</p>
<p>The scholarship is intended only for <strong>second-cycle masters programmes</strong>. It is not available for undergraduate studies, doctoral studies, exchange programmes or integrated masters programmes.</p>
<p>Applicants must also:</p>
<ul>
<li>be younger than 28 on <strong>1 October 2026</strong>;</li>
<li>have an undergraduate average grade of at least <strong>8.0</strong>, after conversion to the Slovenian grading system;</li>
<li>enrol in an eligible masters programme in Slovenia for 2026/2027;</li>
<li>begin studying during the 2026 calendar year;</li>
<li>live in Slovenia during the scholarship period.</li>
</ul>
<h2 id="2-which-study-areas-are-eligible">2. Which study areas are eligible?</h2>
<p>The scholarship is available only for masters programmes classified in the following areas:</p>
<ol>
<li>Natural sciences, mathematics and statistics</li>
<li>Information and communication technologies</li>
<li>Engineering, manufacturing technologies and construction</li>
<li>Agriculture, forestry, fisheries and veterinary medicine</li>
<li>Health and social welfare</li>
</ol>
<p>The Scholarship Fund decides whether a particular programme belongs to an eligible category by checking Slovenias official higher-education records. Applicants should confirm their programmes classification before applying.</p>
<p>The scholarship can be used at an accredited higher-education institution anywhere in Slovenia, not only at the University of Ljubljana.</p>
<h2 id="3-what-does-the-scholarship-cover">3. What does the scholarship cover?</h2>
<p>Successful applicants receive <strong>€800 per month</strong>, equivalent to <strong>€9,600 for one academic year</strong>. The scholarship covers 12 months and is generally transferred as one payment for the full academic year. It may continue for the minimum duration of the study programme, provided the student meets the conditions for progression.</p>
<p>The official call provides support specifically for <strong>living expenses</strong>. It does not state that tuition fees, accommodation, health insurance, travel, residence-permit costs or study materials are covered. Applicants should therefore check whether tuition applies and prepare a realistic budget.</p>
<p>The scholarship is paid into the students personal bank account, which must be opened with a bank in Slovenia or another country in the European Economic Area.</p>
<h2 id="4-what-are-the-main-conditions">4. What are the main conditions?</h2>
<p>Recipients must have student status and live in Slovenia from <strong>1 October 2026</strong> onward. The programme cannot be conducted entirely through distance learning or only through occasional consultations in Slovenia.</p>
<p>During the funded period, recipients generally cannot:</p>
<ul>
<li>receive a Slovenian state or Zois scholarship;</li>
<li>receive another scholarship or financial support intended for studying in Slovenia;</li>
<li>be employed or self-employed in Slovenia or abroad;</li>
<li>be registered as unemployed;</li>
<li>serve as the manager of a company or director of a private institution.</li>
</ul>
<p>Study exchanges abroad may be possible with the Scholarship Funds prior approval, but they cannot take place in the students country of origin.</p>
<p>Applicants may submit only one application for one study programme.</p>
<h2 id="5-residence-and-the-required-representative-in-slovenia">5. Residence and the required representative in Slovenia</h2>
<p>By the application deadline, applicants must either have registered temporary residence in Slovenia or appoint a representative who legally resides in Slovenia.</p>
<p>The representative receives official correspondence, helps the applicant understand documents issued in Slovenian and represents them during the scholarship procedure. The official power-of-attorney form must be signed by both the applicant and the representative.</p>
<p>Applicants must also apply for a Slovenian temporary residence permit for study purposes before <strong>1 October 2026</strong>. The application can be submitted at a Slovenian embassy or consulate abroad or at the competent administrative unit in Slovenia.</p>
<p>Candidates who do not yet live in Slovenia should find a reliable person with residence in Slovenia who is willing to act as their representative.</p>
<h2 id="6-which-documents-are-required">6. Which documents are required?</h2>
<p>The application package includes an original, fully completed and handwritten signed application form, together with documentation proving that all conditions are met.</p>
<p>The main documents include:</p>
<ol>
<li>The official application form</li>
<li>A completed power of attorney or proof of registered temporary residence in Slovenia</li>
<li>Proof of citizenship</li>
<li>Proof of permanent residence abroad</li>
<li>Proof that an application for a study residence permit has been submitted</li>
<li>Proof of enrolment and information about the study programme</li>
<li>A bachelors diploma or official proof of completion</li>
<li>An official transcript containing all undergraduate grades</li>
<li>An explanation of the grading scale when it differs from the Slovenian system</li>
<li>Documentation about any previous postgraduate enrolment, when applicable</li>
</ol>
<p>Candidates who completed their undergraduate degree after 31 December 2025 must submit an updated transcript issued after 1 January 2026, showing their grades and the dates on which they were obtained.</p>
<p>Documents may be submitted in a foreign language using the <strong>Latin alphabet</strong>, but the Fund may request a certified translation into Slovenian. Documents written in Cyrillic should not be submitted without an appropriate official translation. Originals and certified copies submitted to the Fund may not be returned.</p>
<p>Applicants who wish to receive additional selection points for scientific publications or relevant work experience must submit the prescribed supporting documents. Publications must be properly registered and classified in COBISS, while work experience must be confirmed by the relevant employer.</p>
<h2 id="7-how-are-candidates-selected">7. How are candidates selected?</h2>
<p>The minimum required undergraduate average is <strong>8.0</strong>. If the total amount requested by eligible applicants exceeds the available funding, applications are ranked according to:</p>
<ul>
<li>undergraduate academic performance;</li>
<li>scientific publications and conference participation;</li>
<li>relevant professional experience.</li>
</ul>
<p>Academic performance can provide up to 40 points, while publications can provide up to 30 points. Relevant work experience from 2023, 2024 and 2025 may also be considered when connected to the applicants field of study and lasting at least six months.</p>
<p>The official call contains an apparent inconsistency in this section: the heading states that work experience is worth up to 20 points, while the displayed scoring table lists awards of 5 or 10 points. Applicants relying on these points should request clarification directly from the Scholarship Fund.</p>
<h2 id="8-how-and-when-do-you-apply">8. How and when do you apply?</h2>
<p>The complete application must be submitted in physical form to:</p>
<p><strong>Javni štipendijski, razvojni, invalidski in preživninski sklad Republike Slovenije</strong> Dunajska cesta 20 1000 Ljubljana Slovenia</p>
<p>The envelope must be marked:</p>
<p><strong>“prijava na 380. javni razpis”</strong></p>
<p>Applications can be delivered personally during the Funds business hours or sent by post. Applications sent by email are not accepted.</p>
<p>The deadline is <strong>Wednesday, 2 September 2026</strong>. When sent by registered post, the date of posting is considered the submission date. For ordinary mail or personal delivery, the application must be received by the Fund before the deadline.</p>
<p>Because the application requires documents from universities, public authorities, employers and potentially a certified translator, candidates should start preparing well in advance.</p>
<h2 id="9-what-happens-after-receiving-the-scholarship">9. What happens after receiving the scholarship?</h2>
<p>The Fund issues an official decision to every applicant. Successful candidates then sign a scholarship agreement that defines the payment schedule and their obligations.</p>
<p>Recipients must regularly progress to the next study year, complete the programme within the contractual period and submit proof of successful completion to the Fund. Failure to meet the scholarship conditions can end the scholarship relationship and may create repayment obligations, depending on the agreement and applicable scholarship rules.</p>
<p>For students from North Macedonia, this scholarship can provide significant support for living expenses during a masters degree in Slovenia. However, it applies only to selected study areas, has strict residence and employment conditions and requires a detailed physical application.</p>
<p>Start by confirming that your programme is eligible, checking whether tuition applies, finding a representative in Slovenia when necessary and collecting the documents well before <strong>2 September 2026</strong>.</p>
<p><strong>Author: MSOS Team</strong></p>
<h2 id="sources">Sources</h2>
<ol>
<li><a href="https://www.srips-rs.si/vsi-razpisi/razpis/javni-razpis-za-dodelitev-stipendij-tujim-drzavljanom-za-studij-v-sloveniji-za-leto-2026-380-javni-razpis" target="_blank" rel="noopener">Public Scholarship Fund of Slovenia: Official 380th Public Call and application documents</a></li>
<li><a href="https://www.uni-lj.si/novice/2026-02-04-javni-razpis-za-dodelitev-stipendij-tujim-drzavljanom-zahodnega-balkana-za-studij-v-sloveniji-za-leto-2026" target="_blank" rel="noopener">University of Ljubljana: Scholarship announcement for Western Balkan students</a></li>
</ol>
<p class="guide-last-checked">Last checked: 2 August 2026</p>
</div>
<footer class="article-footer">
<hr>
<div class="author-share-section">
<div class="author-details">
<img width="150" height="150" loading="lazy" decoding="async" src="../../../images/msos-emblem-avatar.png" alt="MSOS emblem">
<div class="author-text">
<p class="author-name">MSOS Team</p>
<p class="author-title">Macedonian Student Organisation in Slovenia</p>
</div>
</div>
<div class="share-buttons">
<button class="btn btn-secondary"><i class="fas fa-link"></i> Copy link</button>
<a href="#" class="social-icon-btn" aria-label="Share on Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-icon-btn" aria-label="Share on LinkedIn"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</footer>
</article>
</div>
<section class="newsletter-cta">
<div class="container">
<div class="cta-content">
<h2>Never miss an MSOS update</h2>
<p>News, announcements and open calls, straight to your inbox.</p>
<form class="subscribe-form-bottom">
<div class="input-wrapper">
<input type="email" placeholder="Enter your email" aria-label="Email address">
</div>
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
</form>
<p class="privacy-note">We care about your data in our <a href="../../../en/privacy-policy/">privacy policy</a></p>
</div>
</div>
</section>
</main>
<!-- START_FOOTER -->
<footer>
<div class="footer-container">
<div class="footer-main">
<div class="footer-info">
<div class="footer-logo">
<img loading="lazy" decoding="async" src="../../../images/msos-logo-white-en.svg" alt="Macedonian Student Organisation in Slovenia Logo">
</div>
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
<p>
Masarykova cesta 24<br>
1000 Ljubljana, Slovenia<br>
<a href="mailto:info@msosorg.com">info@msosorg.com</a>
</p>
<div class="social-icons">
<a href="https://www.facebook.com/msos.org" aria-label="Facebook" target="_blank" rel="noopener"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/msosorg_com" aria-label="Instagram" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/msos-org" aria-label="LinkedIn" target="_blank" rel="noopener"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.youtube.com/@msosorg" aria-label="YouTube" target="_blank" rel="noopener"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
<div class="links-column">
<h4>Student guide</h4>
<a href="../../../en/student-welcome-guide/">Student welcome guide</a>
<a href="../../../en/student-welcome-guide/complete-student-journey/">The whole journey</a>
<a href="../../../en/student-welcome-guide/application-deadlines/">Application deadlines</a>
<a href="../../../en/student-welcome-guide/evs-application-guide/">Apply through eVŠ</a>
<a href="../../../en/student-welcome-guide/student-residence-permit/">Residence permit</a>
<a href="../../../en/student-welcome-guide/student-accommodation/">Accommodation</a>
</div>
<div class="links-column">
<h4>Explore</h4>
<a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a>
<a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a>
<a href="../../../en/projects/">Projects and events</a>
</div>
<div class="links-column">
<h4>Organisation</h4>
<a href="../../../en/about-us/">About us</a>
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a>
</div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div>
</div>
<hr>
<div class="footer-bottom">
<p>© 2026 MSOS. All rights reserved.</p>
<div class="legal-links">
<a href="../../../en/privacy-policy/">Privacy policy</a>
<a href="../../../en/cookie-policy/">Cookie policy</a>
<a href="../../../en/legal/">Official information</a>
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div>
</div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div>
</div>
</footer>
<!-- END_FOOTER -->
<script src="../../../main.js"></script>
<link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script>
</body>
</html>

View File

@ -0,0 +1,356 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How I coped with leaving home - MSOS</title>
<!-- SEO:START -->
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500
});
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date());
gtag('config', 'G-WVYV807VSS');
</script>
<script src="/consent.js" defer></script>
<meta name="description" content="Arriving at the end of your secondary education, with a modest eighteen years behind you, you have to decide where to continue your studies. Will you stay in…">
<link rel="canonical" href="https://msosorg.com/en/blog/how-i-coped-with-leaving-home/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/how-i-coped-with-leaving-home/">
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/blog/how-i-coped-with-leaving-home/">
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/blog/how-i-coped-with-leaving-home/">
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/blog/how-i-coped-with-leaving-home/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
<meta property="og:title" content="How I coped with leaving home - MSOS">
<meta property="og:description" content="Arriving at the end of your secondary education, with a modest eighteen years behind you, you have to decide where to continue your studies. Will you stay in…">
<meta property="og:url" content="https://msosorg.com/en/blog/how-i-coped-with-leaving-home/">
<meta property="og:image" content="https://msosorg.com/images/event3-photo-8.webp">
<meta property="og:locale" content="en_GB">
<meta property="og:locale:alternate" content="mk_MK">
<meta property="og:locale:alternate" content="sl_SI">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="How I coped with leaving home - MSOS">
<meta name="twitter:description" content="Arriving at the end of your secondary education, with a modest eighteen years behind you, you have to decide where to continue your studies. Will you stay in…">
<meta name="twitter:image" content="https://msosorg.com/images/event3-photo-8.webp">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"How I coped with leaving home","description":"Arriving at the end of your secondary education, with a modest eighteen years behind you, you have to decide where to continue your studies. Will you stay in…","image":"https://msosorg.com/images/event3-photo-8.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/blog/how-i-coped-with-leaving-home/","datePublished":"2024-04-24","dateModified":"2024-04-24"}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://msosorg.com/en/blog/"},{"@type":"ListItem","position":3,"name":"How I coped with leaving home","item":"https://msosorg.com/en/blog/how-i-coped-with-leaving-home/"}]}</script>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<!-- SEO:END -->
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome (for icons) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media=&#39;all&#39;" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
<!-- Correct path to the main CSS file -->
<link rel="stylesheet" href="../../../css/main.css">
</head>
<body>
<!-- START_HEADER -->
<header class="dropdown-header-navigation">
<div class="container">
<!-- Logotip je zdaj samostojen element na levi strani -->
<a href="../../../en/" class="logo-link">
<img src="../../../images/msos-logo-en.svg" alt="Macedonian Student Organisation in Slovenia Logo" class="logo-img">
</a>
<!-- Nov ovoj za vse elemente na desni strani -->
<div class="header-right-wrapper">
<nav>
<ul class="navigation desktop-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<div class="current-lang">
<i class="fas fa-globe"></i>
<span id="current-lang-code">EN</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="lang-dropdown">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
</div>
<!-- Ikona za mobilni meni ostaja ločena za lažje upravljanje -->
<div class="mobile-menu-icon">
<i class="fas fa-bars"></i>
<i class="fas fa-times"></i>
</div>
</div>
</header>
<!-- Panel za mobilno navigacijo (struktura ostaja enaka) -->
<div class="mobile-nav-panel">
<nav>
<ul class="navigation mobile-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<button class="current-lang" id="mobile-lang-trigger">
<i class="fas fa-globe"></i>
<span>EN</span>
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
<!-- Modalno okno za izbiro jezika (ostaja enako) -->
<div id="language-modal-overlay">
<div class="language-modal-content">
<div class="language-modal-header">
<h3>Select Language</h3>
<button id="language-modal-close" aria-label="Close language selection">&times;</button>
</div>
<div class="language-modal-body">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
<!-- END_HEADER -->
<main class="article-page article-page--prose">
<!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">How I coped with leaving home</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<!-- Dropdown Menu for Mobile -->
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links">
<!-- Links will be dynamically inserted here by JavaScript -->
</ul>
</div>
</div>
<div class="article-layout-container">
<!-- Desktop Scrollspy Sidebar -->
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
</ul>
</nav>
</aside>
<article class="article-container">
<header class="article-header">
<p class="article-publish-date">Personal story &middot; 24 April 2024</p>
<h1>How I coped with leaving home</h1>
<p class="article-subtitle">Arriving at the end of your secondary education, with a modest eighteen years behind you, you have to decide where to continue your studies. Will you stay in Macedonia, or perhaps decide to go somewhere abroad (as I decided to continue my education in Slovenia)? Surely the same questions that troubled me are spinning in your head too: "How will I fit into a new environment when I do not know the language?"; "Will I manage to find friends?"; "What will I do without my closest people?".</p>
</header>
<figure class="article-main-image">
<img width="1600" height="1067" fetchpriority="high" src="../../../images/event3-photo-8.webp" alt="A student reflecting after moving abroad to study">
<figcaption><span class="fig-illustrative"><i class="fas fa-circle-info" aria-hidden="true"></i> Illustrative image</span> &middot; Placeholder image.</figcaption>
</figure>
<div class="article-body">
<p>Arriving at the end of your secondary education, with a modest eighteen years behind you, you have to decide where to continue your studies. Will you stay in Macedonia, or perhaps decide to go somewhere abroad (as I decided to continue my education in Slovenia)? Surely the same questions that troubled me are spinning in your head too: "How will I fit into a new environment when I do not know the language?"; "Will I manage to find friends?"; "What will I do without my closest people?".</p>
<p>I am here to tell you that what you are going through is completely normal, but that does not mean it should discourage you from taking your life into your own hands. I am not here to tell you what the situation in Macedonia is like or whether it is good to leave your home (that would be intruding on your privacy), but if you ask me, you deserve to see another system so that you can decide for yourself which one you prefer. For example, leaving home made me love our Skopje and our Macedonia so much more.</p>
<p>Let us return to the topic and hypothetically imagine that you have decided to study abroad. I will be honest and I will not lie to you: the first few months are the hardest. They are filled with many tears, with a feeling of loneliness, and nostalgia and melancholy will prevail within you. But as they say, after the rain comes the sun. Of course you can overcome these states. I would like to tell you that there is some formula you can apply to adapt to a new environment, but unfortunately that is not the case.</p>
<p>I can only tell you what helped me. I arrived in Maribor and felt lonely and sad. I simply did not know what to do with my emotions. I am not an artistic soul, but I began to pour my states and inner unrest into poetry. Those poems of mine helped me to face and accept my reality. I started to share them with my closest people and those around me, and that is how I realised that I am not alone (remember, you are never alone — there is always someone going through the same thing as you).</p>
<p>Of course, that was not enough. My everyday life was monotonous and consisted of going to lectures and studying. I missed those charming Skopje events. So I decided to get to know Maribor's culture and I found my own cultural corner. At those events I met my people (we all have our own type of people, and you will always find a place where you find your type) and many new artists I had never heard of. By meeting new people I also improved my Slovene, which I still do not speak clearly and grammatically correctly — but that is only motivation for me to improve it.</p>
<p>In my teenage life I was not a person who actively did sports. But out of hardship I even started exercising. I run and work out every day. I do not know why, but it gave me a different perspective on life and made me mentally stronger to cope with my loneliness. Evidently there was something to the words: "a healthy body, a healthy spirit."</p>
<p>There are many more little things that helped me start to feel at home in Maribor, but I still believe the most important thing is to stay persistent and brave. Do not give up at the first obstacle, because the world is much more beautiful when you look at it from the arduously-climbed mountain of challenges.</p>
</div>
<footer class="article-footer">
<hr>
<div class="author-share-section">
<div class="author-details">
<img width="150" height="150" loading="lazy" decoding="async" src="../../../images/msos-emblem-avatar.png" alt="MSOS emblem">
<div class="author-text">
<p class="author-name">Vasil Handziski</p>
<p class="author-title">MSOS member</p>
</div>
</div>
<div class="share-buttons">
<button class="btn btn-secondary"><i class="fas fa-link"></i> Copy link</button>
<a href="#" class="social-icon-btn" aria-label="Share on Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-icon-btn" aria-label="Share on LinkedIn"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</footer>
</article>
</div>
<section class="newsletter-cta">
<div class="container">
<div class="cta-content">
<h2>Never miss an MSOS update</h2>
<p>News, announcements and open calls, straight to your inbox.</p>
<form class="subscribe-form-bottom">
<div class="input-wrapper">
<input type="email" placeholder="Enter your email" aria-label="Email address">
</div>
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
</form>
<p class="privacy-note">We care about your data in our <a href="../../../en/privacy-policy/">privacy policy</a></p>
</div>
</div>
</section>
</main>
<!-- START_FOOTER -->
<footer>
<div class="footer-container">
<div class="footer-main">
<div class="footer-info">
<div class="footer-logo">
<img loading="lazy" decoding="async" src="../../../images/msos-logo-white-en.svg" alt="Macedonian Student Organisation in Slovenia Logo">
</div>
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
<p>
Masarykova cesta 24<br>
1000 Ljubljana, Slovenia<br>
<a href="mailto:info@msosorg.com">info@msosorg.com</a>
</p>
<div class="social-icons">
<a href="https://www.facebook.com/msos.org" aria-label="Facebook" target="_blank" rel="noopener"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/msosorg_com" aria-label="Instagram" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/msos-org" aria-label="LinkedIn" target="_blank" rel="noopener"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.youtube.com/@msosorg" aria-label="YouTube" target="_blank" rel="noopener"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
<div class="links-column">
<h4>Student guide</h4>
<a href="../../../en/student-welcome-guide/">Student welcome guide</a>
<a href="../../../en/student-welcome-guide/complete-student-journey/">The whole journey</a>
<a href="../../../en/student-welcome-guide/application-deadlines/">Application deadlines</a>
<a href="../../../en/student-welcome-guide/evs-application-guide/">Apply through eVŠ</a>
<a href="../../../en/student-welcome-guide/student-residence-permit/">Residence permit</a>
<a href="../../../en/student-welcome-guide/student-accommodation/">Accommodation</a>
</div>
<div class="links-column">
<h4>Explore</h4>
<a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a>
<a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a>
<a href="../../../en/projects/">Projects and events</a>
</div>
<div class="links-column">
<h4>Organisation</h4>
<a href="../../../en/about-us/">About us</a>
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a>
</div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div>
</div>
<hr>
<div class="footer-bottom">
<p>© 2026 MSOS. All rights reserved.</p>
<div class="legal-links">
<a href="../../../en/privacy-policy/">Privacy policy</a>
<a href="../../../en/cookie-policy/">Cookie policy</a>
<a href="../../../en/legal/">Official information</a>
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div>
</div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div>
</div>
</footer>
<!-- END_FOOTER -->
<script src="../../../main.js"></script>
<link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script>
</body>
</html>

View File

@ -56,7 +56,7 @@
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome (for icons) --> <!-- Font Awesome (for icons) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media=&#39;all&#39;" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
<!-- Correct path to the main CSS file --> <!-- Correct path to the main CSS file -->
<link rel="stylesheet" href="../../../css/main.css"> <link rel="stylesheet" href="../../../css/main.css">
@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -233,8 +233,8 @@
</header> </header>
<figure class="article-main-image"> <figure class="article-main-image">
<img fetchpriority="high" src="../../../images/blog-slovenian-bank-account.webp" alt="International student using mobile banking after opening a Slovenian bank account"> <img width="6048" height="4024" fetchpriority="high" src="../../../images/blog-slovenian-bank-account.webp" alt="International student using mobile banking after opening a Slovenian bank account">
<figcaption>Photo by <a href="https://www.pexels.com/photo/4691474/" target="_blank" rel="noopener">Aukid Phumsirichat</a> on <a href="https://www.pexels.com/" target="_blank" rel="noopener">Pexels</a></figcaption> <figcaption><span class="fig-illustrative"><i class="fas fa-circle-info" aria-hidden="true"></i> Illustrative image</span> &middot; Photo by <a href="https://www.pexels.com/photo/4691474/" target="_blank" rel="noopener">Aukid Phumsirichat</a> on <a href="https://www.pexels.com/" target="_blank" rel="noopener">Pexels</a></figcaption>
</figure> </figure>
<div class="article-body"> <div class="article-body">
@ -328,7 +328,7 @@
<hr> <hr>
<div class="author-share-section"> <div class="author-share-section">
<div class="author-details"> <div class="author-details">
<img loading="lazy" decoding="async" src="../../../images/msos-emblem-avatar.png" alt="MSOS emblem"> <img width="150" height="150" loading="lazy" decoding="async" src="../../../images/msos-emblem-avatar.png" alt="MSOS emblem">
<div class="author-text"> <div class="author-text">
<p class="author-name">MSOS Team</p> <p class="author-name">MSOS Team</p>
<p class="author-title">Macedonian Student Organisation in Slovenia</p> <p class="author-title">Macedonian Student Organisation in Slovenia</p>
@ -351,7 +351,7 @@
<p>News, announcements and open calls, straight to your inbox.</p> <p>News, announcements and open calls, straight to your inbox.</p>
<form class="subscribe-form-bottom"> <form class="subscribe-form-bottom">
<div class="input-wrapper"> <div class="input-wrapper">
<input type="email" placeholder="Enter your email"> <input type="email" placeholder="Enter your email" aria-label="Email address">
</div> </div>
<button type="submit" class="btn btn-primary-orange">Subscribe</button> <button type="submit" class="btn btn-primary-orange">Subscribe</button>
</form> </form>
@ -404,6 +404,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -416,6 +423,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>
@ -426,5 +434,7 @@
<script src="../../../main.js"></script> <script src="../../../main.js"></script>
<link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script>
</body> </body>
</html> </html>

View File

@ -54,7 +54,7 @@
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome (for icons) --> <!-- Font Awesome (for icons) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media=&#39;all&#39;" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
<!-- Link to the main CSS file --> <!-- Link to the main CSS file -->
<link rel="stylesheet" href="../../css/main.css"> <link rel="stylesheet" href="../../css/main.css">
@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -209,7 +209,7 @@
</article> </article>
<div class="blog-feat-side"> <div class="blog-feat-side">
<a class="blog-feat " data-topic="guides" href="how-to-open-slovenian-bank-account/"> <a class="blog-feat " data-topic="guides" href="how-to-open-slovenian-bank-account/">
<div class="blog-feat-thumb blog-feat-thumb--image"><img loading="lazy" decoding="async" src="../../images/blog-slovenian-bank-account.webp" alt="International student using mobile banking after opening a Slovenian bank account"></div> <div class="blog-feat-thumb blog-feat-thumb--image"><img width="6048" height="4024" loading="lazy" decoding="async" src="../../images/blog-slovenian-bank-account.webp" alt="International student using mobile banking after opening a Slovenian bank account"></div>
<div class="blog-feat-body"> <div class="blog-feat-body">
<span class="blog-tag blog-tag--guides"><i class="fas fa-signs-post" aria-hidden="true"></i> Guides</span> <span class="blog-tag blog-tag--guides"><i class="fas fa-signs-post" aria-hidden="true"></i> Guides</span>
<h3>How to open a Slovenian bank account</h3> <h3>How to open a Slovenian bank account</h3>
@ -237,6 +237,60 @@
<button type="button" class="blog-chip" data-topic="guides"><i class="fas fa-signs-post" aria-hidden="true"></i> Guides</button> <button type="button" class="blog-chip" data-topic="guides"><i class="fas fa-signs-post" aria-hidden="true"></i> Guides</button>
</div> </div>
<div class="blog-grid"> <div class="blog-grid">
<a class="blog-card" data-topic="student-life" href="where-to-search-for-accommodation-in-slovenia/">
<div class="blog-thumb"><i class="fas fa-house" aria-hidden="true"></i></div>
<div class="blog-card-body">
<span class="blog-tag blog-tag--student-life"><i class="fas fa-mug-hot" aria-hidden="true"></i> Student life</span>
<h3>Where to search for student accommodation in Slovenia</h3>
<p>University housing, trusted rental sites, community groups, and what to check before you pay or sign — so you avoid scams and settle in safely.</p>
<span class="blog-read-time"><i class="fas fa-clock" aria-hidden="true"></i> 7 min read</span>
</div>
</a>
<a class="blog-card" data-topic="guides" href="ad-futura-scholarship-slovenia-2026/">
<div class="blog-thumb"><i class="fas fa-hand-holding-dollar" aria-hidden="true"></i></div>
<div class="blog-card-body">
<span class="blog-tag blog-tag--guides"><i class="fas fa-signs-post" aria-hidden="true"></i> Guides</span>
<h3>Study in Slovenia with an Ad futura scholarship</h3>
<p>€800 per month for selected master's programmes in Slovenia for Western Balkan students — eligibility, study areas, conditions and the 2 September 2026 deadline.</p>
<span class="blog-read-time"><i class="fas fa-clock" aria-hidden="true"></i> 8 min read</span>
</div>
</a>
<a class="blog-card" data-topic="student-life" href="welcome-days-slovenian-universities-2026-2027/">
<div class="blog-thumb"><i class="fas fa-people-roof" aria-hidden="true"></i></div>
<div class="blog-card-body">
<span class="blog-tag blog-tag--student-life"><i class="fas fa-mug-hot" aria-hidden="true"></i> Student life</span>
<h3>Welcome Days at Slovenia's four main universities</h3>
<p>What to expect during welcome and orientation at Ljubljana, Maribor, Primorska and Nova Gorica, with dates and how to prepare for your first days.</p>
<span class="blog-read-time"><i class="fas fa-clock" aria-hidden="true"></i> 6 min read</span>
</div>
</a>
<a class="blog-card" data-topic="guides" href="study-in-north-macedonia-government-scholarship-2026-2027/">
<div class="blog-thumb"><i class="fas fa-graduation-cap" aria-hidden="true"></i></div>
<div class="blog-card-body">
<span class="blog-tag blog-tag--guides"><i class="fas fa-signs-post" aria-hidden="true"></i> Guides</span>
<h3>Study in North Macedonia with a government scholarship</h3>
<p>50 government scholarships for undergraduate studies at public universities in North Macedonia — who can apply, what is covered, and the 31 August 2026 deadline.</p>
<span class="blog-read-time"><i class="fas fa-clock" aria-hidden="true"></i> 6 min read</span>
</div>
</a>
<a class="blog-card" data-topic="study-tips" href="learning-slovene-where-to-start/">
<div class="blog-thumb"><i class="fas fa-lightbulb" aria-hidden="true"></i></div>
<div class="blog-card-body">
<span class="blog-tag blog-tag--study-tips"><i class="fas fa-lightbulb" aria-hidden="true"></i> Study tips</span>
<h3>Learning Slovene: where to start</h3>
<p>How to set a language goal, free online courses, university options such as Leto plus, and the difference between a course and an official exam.</p>
<span class="blog-read-time"><i class="fas fa-clock" aria-hidden="true"></i> 6 min read</span>
</div>
</a>
<a class="blog-card" data-topic="community" href="how-i-coped-with-leaving-home/">
<div class="blog-thumb"><i class="fas fa-heart" aria-hidden="true"></i></div>
<div class="blog-card-body">
<span class="blog-tag blog-tag--community"><i class="fas fa-people-group" aria-hidden="true"></i> Community</span>
<h3>How I coped with leaving home</h3>
<p>A personal story by MSOS member Vasil Handziski about the hardest first months abroad — and the small things that made Maribor start to feel like home.</p>
<span class="blog-read-time"><i class="fas fa-clock" aria-hidden="true"></i> 4 min read</span>
</div>
</a>
<article class="blog-card" data-topic="slovenia"> <article class="blog-card" data-topic="slovenia">
<div class="blog-thumb"><i class="fas fa-mountain-sun" aria-hidden="true"></i></div> <div class="blog-thumb"><i class="fas fa-mountain-sun" aria-hidden="true"></i></div>
<div class="blog-card-body"> <div class="blog-card-body">
@ -300,15 +354,6 @@
<span class="blog-soon">Coming soon</span> <span class="blog-soon">Coming soon</span>
</div> </div>
</article> </article>
<article class="blog-card" data-topic="study-tips">
<div class="blog-thumb"><i class="fas fa-lightbulb" aria-hidden="true"></i></div>
<div class="blog-card-body">
<span class="blog-tag blog-tag--study-tips"><i class="fas fa-lightbulb" aria-hidden="true"></i> Study tips</span>
<h3>Learning Slovene: where to start</h3>
<p>This story is on the way. We are preparing helpful, first-hand tips for Macedonian students in Slovenia.</p>
<span class="blog-soon">Coming soon</span>
</div>
</article>
</div> </div>
<nav class="pagination blog-pagination" data-page-size="6" hidden> <nav class="pagination blog-pagination" data-page-size="6" hidden>
<button type="button" class="pagination-arrow" data-nav="prev"><i class="fas fa-arrow-left" aria-hidden="true"></i> Previous</button> <button type="button" class="pagination-arrow" data-nav="prev"><i class="fas fa-arrow-left" aria-hidden="true"></i> Previous</button>
@ -361,6 +406,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -373,6 +425,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>
@ -383,5 +436,8 @@
<script src="../../blog-filter.js"></script> <script src="../../blog-filter.js"></script>
<script src="../../main.js"></script> <script src="../../main.js"></script>
<script src="../../filter-search.js"></script>
<link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script>
</body> </body>
</html> </html>

View File

@ -0,0 +1,389 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning Slovene: Where to Start - MSOS</title>
<!-- SEO:START -->
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500
});
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date());
gtag('config', 'G-WVYV807VSS');
</script>
<script src="/consent.js" defer></script>
<meta name="description" content="Moving to Slovenia for your studies? You do not need to speak perfect Slovene before arriving, but learning the basics early will make university…">
<link rel="canonical" href="https://msosorg.com/en/blog/learning-slovene-where-to-start/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/learning-slovene-where-to-start/">
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/blog/learning-slovene-where-to-start/">
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/blog/learning-slovene-where-to-start/">
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/blog/learning-slovene-where-to-start/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
<meta property="og:title" content="Learning Slovene: Where to Start - MSOS">
<meta property="og:description" content="Moving to Slovenia for your studies? You do not need to speak perfect Slovene before arriving, but learning the basics early will make university…">
<meta property="og:url" content="https://msosorg.com/en/blog/learning-slovene-where-to-start/">
<meta property="og:image" content="https://msosorg.com/images/msnl-2.webp">
<meta property="og:locale" content="en_GB">
<meta property="og:locale:alternate" content="mk_MK">
<meta property="og:locale:alternate" content="sl_SI">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Learning Slovene: Where to Start - MSOS">
<meta name="twitter:description" content="Moving to Slovenia for your studies? You do not need to speak perfect Slovene before arriving, but learning the basics early will make university…">
<meta name="twitter:image" content="https://msosorg.com/images/msnl-2.webp">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Learning Slovene: Where to Start","description":"Moving to Slovenia for your studies? You do not need to speak perfect Slovene before arriving, but learning the basics early will make university…","image":"https://msosorg.com/images/msnl-2.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/blog/learning-slovene-where-to-start/","datePublished":"2026-07-28","dateModified":"2026-07-28"}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://msosorg.com/en/blog/"},{"@type":"ListItem","position":3,"name":"Learning Slovene: Where to Start","item":"https://msosorg.com/en/blog/learning-slovene-where-to-start/"}]}</script>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<!-- SEO:END -->
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome (for icons) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media=&#39;all&#39;" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
<!-- Correct path to the main CSS file -->
<link rel="stylesheet" href="../../../css/main.css">
</head>
<body>
<!-- START_HEADER -->
<header class="dropdown-header-navigation">
<div class="container">
<!-- Logotip je zdaj samostojen element na levi strani -->
<a href="../../../en/" class="logo-link">
<img src="../../../images/msos-logo-en.svg" alt="Macedonian Student Organisation in Slovenia Logo" class="logo-img">
</a>
<!-- Nov ovoj za vse elemente na desni strani -->
<div class="header-right-wrapper">
<nav>
<ul class="navigation desktop-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<div class="current-lang">
<i class="fas fa-globe"></i>
<span id="current-lang-code">EN</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="lang-dropdown">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
</div>
<!-- Ikona za mobilni meni ostaja ločena za lažje upravljanje -->
<div class="mobile-menu-icon">
<i class="fas fa-bars"></i>
<i class="fas fa-times"></i>
</div>
</div>
</header>
<!-- Panel za mobilno navigacijo (struktura ostaja enaka) -->
<div class="mobile-nav-panel">
<nav>
<ul class="navigation mobile-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<button class="current-lang" id="mobile-lang-trigger">
<i class="fas fa-globe"></i>
<span>EN</span>
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
<!-- Modalno okno za izbiro jezika (ostaja enako) -->
<div id="language-modal-overlay">
<div class="language-modal-content">
<div class="language-modal-header">
<h3>Select Language</h3>
<button id="language-modal-close" aria-label="Close language selection">&times;</button>
</div>
<div class="language-modal-body">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
<!-- END_HEADER -->
<main class="article-page">
<!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">Learning Slovene: Where to Start</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<!-- Dropdown Menu for Mobile -->
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links">
<!-- Links will be dynamically inserted here by JavaScript -->
</ul>
</div>
</div>
<div class="article-layout-container">
<!-- Desktop Scrollspy Sidebar -->
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#1-set-a-clear-language-goal" class="active">1. Set a clear language goal</a></li>
<li><a href="#2-begin-with-a-free-online-course">2. Begin with a free online course</a></li>
<li><a href="#3-check-the-options-at-your-university">3. Check the options at your university</a></li>
<li><a href="#4-learn-slovene-before-moving-to-slovenia">4. Learn Slovene before moving to Slovenia</a></li>
<li><a href="#5-understand-the-difference-between-a-course-and-an-official-examination">5. Understand the difference between a course and an official examination</a></li>
<li><a href="#6-follow-a-realistic-learning-plan">6. Follow a realistic learning plan</a></li>
</ul>
</nav>
</aside>
<article class="article-container">
<header class="article-header">
<p class="article-publish-date">Study tips &middot; Last checked 28 July 2026</p>
<h1>Learning Slovene: Where to Start</h1>
<p class="article-subtitle">Moving to Slovenia for your studies? You do not need to speak perfect Slovene before arriving, but learning the basics early will make university, administrative procedures and everyday life much easier.</p>
</header>
<figure class="article-main-image">
<img width="1600" height="1067" fetchpriority="high" src="../../../images/msnl-2.webp" alt="Macedonian students practising Slovene together">
<figcaption><span class="fig-illustrative"><i class="fas fa-circle-info" aria-hidden="true"></i> Illustrative image</span> &middot; Placeholder image.</figcaption>
</figure>
<div class="article-body">
<p>Moving to Slovenia for your studies? You do not need to speak perfect Slovene before arriving, but learning the basics early will make university, administrative procedures and everyday life much easier.</p>
<p>For Macedonian speakers, Slovene can initially feel familiar because the languages share many words and grammatical features. However, pronunciation, cases, formal writing and the Slovene dual still require practice. The most effective approach is to combine free self-study, regular speaking and, when possible, a course offered by your university.</p>
<p><em>Course dates, prices and requirements may change. Always confirm the latest information directly with the provider before registering.</em></p>
<h2 id="1-set-a-clear-language-goal">1. Set a clear language goal</h2>
<p>Start by deciding why you need Slovene. Basic everyday communication may require only an A1 or A2 level, while some university programmes, professions or administrative procedures may require B1 or B2.</p>
<p>Always check the official requirements of your study programme. Some faculties require proof of Slovene before enrolment, while others allow international students to improve their language skills during their studies.</p>
<p>Do not pay for an examination only because it provides a certificate. First confirm which level, examination and issuing institution your faculty or the relevant Slovenian authority accepts.</p>
<h2 id="2-begin-with-a-free-online-course">2. Begin with a free online course</h2>
<p>A practical first step is <a href="https://www.slonline.si/" target="_blank" rel="noopener">Slovene Learning Online</a>, a free self-paced course developed by the Centre for Slovene as a Second and Foreign Language at the University of Ljubljana.</p>
<p>The platform covers basic vocabulary, grammar, reading and listening. During your first weeks, focus on introductions, numbers, time, directions, accommodation, transport, food and phrases used at faculties and administrative offices.</p>
<p>Short, regular sessions are usually more effective than occasional long lessons. Try studying for around 20 minutes per day and learn complete phrases instead of isolated words. Repeating the recordings aloud will also help you become more comfortable with Slovene pronunciation.</p>
<h2 id="3-check-the-options-at-your-university">3. Check the options at your university</h2>
<p>University language courses are usually among the most affordable options and are often adapted to the needs of international students.</p>
<p>At the University of Ljubljana, <a href="https://www.uni-lj.si/en/study/bachelors-and-single-cycle-masters-study/year-plus" target="_blank" rel="noopener">Leto plus, or Year Plus</a>, is available to eligible international students who are enrolled for the first time in a bachelors or masters programme. It includes two Slovene courses with 60 hours of group work and 3 ECTS each. Under the current conditions, students who complete both courses and obtain at least 30 ECTS during their first year may qualify for a one-year extension of their student status.</p>
<p>Leto plus is not intended for exchange students or students enrolled in programmes that already require B2 Slovene before admission. Recognition of the courses as electives depends on the individual faculty. Students who are not eligible can also check the Centres separate Slovene courses for students.</p>
<p>The University of Maribor offers a free online beginner course through Moodle. The University of Primorska offers free Slovene courses from A1 to B1 for enrolled international students and staff, while the University of Nova Gorica offers courses from A1 to B2 and a Leto PLUS option for eligible first-year international students.</p>
<h2 id="4-learn-slovene-before-moving-to-slovenia">4. Learn Slovene before moving to Slovenia</h2>
<p>Starting while you are still in North Macedonia can make your first months in Slovenia significantly easier.</p>
<p>The Faculty of Philology “Blaže Koneski” at Ss. Cyril and Methodius University in Skopje has offered an A1 lifelong-learning programme in Slovene. The published programme includes 48 teaching hours over approximately three months, usually with classes twice per week. Current dates, format and fees should be checked directly with the Faculty.</p>
<p><strong>Institution and contact</strong></p>
<p>Location: Ss. Cyril and Methodius University in Skopje, Faculty of Philology “Blaže Koneski”, Bul. “Krste Misirkov” b.b., Skopje Department/contact person: Department of Slavic Studies, Prof. Dr. Lidija Arizankovska General contact provided for the Centre for Slovene as a Second and Foreign Language: <strong>admin@centerslo.net</strong></p>
<p>Private language schools and education centres in North Macedonia and Slovenia also provide online and in-person Slovene courses. These can be useful for students who prefer structured lessons, regular speaking practice or preparation for a specific CEFR level.</p>
<p>Before registering, compare the total number of teaching hours, group size, teacher qualifications, course format and whether the programme prepares students for a recognised level or examination. Prices and schedules vary, so always confirm the latest information directly with the provider.</p>
<h2 id="5-understand-the-difference-between-a-course-and-an-official-examination">5. Understand the difference between a course and an official examination</h2>
<p>Completing a language course is not automatically the same as receiving a publicly recognised certificate.</p>
<p>A Slovene language examination can be taken in North Macedonia at the Department of Slavic Studies of the Faculty of Philology “Blaže Koneski” in Skopje. According to the information provided for this article, the examination is connected with the Centre for Slovene as a Second and Foreign Language. Because arrangements and recognition rules can change, verify this directly with the institutions involved and ask your Slovenian faculty, employer or administrative authority to confirm in writing whether the resulting certificate will be accepted for your specific purpose.</p>
<p>Official Slovene examinations are also available through the Centre for Slovene as a Second and Foreign Language and its recognised providers in Slovenia. The required level and accepted certificate depend on the institution or procedure for which you need proof of language knowledge.</p>
<h2 id="6-follow-a-realistic-learning-plan">6. Follow a realistic learning plan</h2>
<p>Before arriving, complete the introductory lessons on slonline.si and learn vocabulary related to accommodation, transport, studies and administrative procedures.</p>
<p>After arriving, enrol in the Slovene course offered by your university and use the language in everyday situations. Start with greetings, ordering food, asking for directions and speaking with classmates. Even when someone replies in English, continue trying to use simple Slovene phrases.</p>
<p>By the end of your first semester, aim to understand basic announcements, write simple emails and explain practical problems. It is also useful to create a separate vocabulary list for terminology connected to your study programme.</p>
<p>For most Macedonian students, the most practical route is to begin with <strong>slonline.si</strong>, check whether their university offers a free course or Leto plus, use a structured course in North Macedonia when they need additional support, and pay for an examination only after confirming which certificate is accepted.</p>
<p>You do not need to know everything before arriving. A basic foundation, regular practice and the confidence to speak will already make your transition to student life in Slovenia much easier.</p>
<p><strong>Author: MSOS Team</strong></p>
<p class="guide-last-checked">Last checked: 28 July 2026</p>
</div>
<footer class="article-footer">
<hr>
<div class="author-share-section">
<div class="author-details">
<img width="150" height="150" loading="lazy" decoding="async" src="../../../images/msos-emblem-avatar.png" alt="MSOS emblem">
<div class="author-text">
<p class="author-name">MSOS Team</p>
<p class="author-title">Macedonian Student Organisation in Slovenia</p>
</div>
</div>
<div class="share-buttons">
<button class="btn btn-secondary"><i class="fas fa-link"></i> Copy link</button>
<a href="#" class="social-icon-btn" aria-label="Share on Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-icon-btn" aria-label="Share on LinkedIn"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</footer>
</article>
</div>
<section class="newsletter-cta">
<div class="container">
<div class="cta-content">
<h2>Never miss an MSOS update</h2>
<p>News, announcements and open calls, straight to your inbox.</p>
<form class="subscribe-form-bottom">
<div class="input-wrapper">
<input type="email" placeholder="Enter your email" aria-label="Email address">
</div>
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
</form>
<p class="privacy-note">We care about your data in our <a href="../../../en/privacy-policy/">privacy policy</a></p>
</div>
</div>
</section>
</main>
<!-- START_FOOTER -->
<footer>
<div class="footer-container">
<div class="footer-main">
<div class="footer-info">
<div class="footer-logo">
<img loading="lazy" decoding="async" src="../../../images/msos-logo-white-en.svg" alt="Macedonian Student Organisation in Slovenia Logo">
</div>
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
<p>
Masarykova cesta 24<br>
1000 Ljubljana, Slovenia<br>
<a href="mailto:info@msosorg.com">info@msosorg.com</a>
</p>
<div class="social-icons">
<a href="https://www.facebook.com/msos.org" aria-label="Facebook" target="_blank" rel="noopener"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/msosorg_com" aria-label="Instagram" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/msos-org" aria-label="LinkedIn" target="_blank" rel="noopener"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.youtube.com/@msosorg" aria-label="YouTube" target="_blank" rel="noopener"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
<div class="links-column">
<h4>Student guide</h4>
<a href="../../../en/student-welcome-guide/">Student welcome guide</a>
<a href="../../../en/student-welcome-guide/complete-student-journey/">The whole journey</a>
<a href="../../../en/student-welcome-guide/application-deadlines/">Application deadlines</a>
<a href="../../../en/student-welcome-guide/evs-application-guide/">Apply through eVŠ</a>
<a href="../../../en/student-welcome-guide/student-residence-permit/">Residence permit</a>
<a href="../../../en/student-welcome-guide/student-accommodation/">Accommodation</a>
</div>
<div class="links-column">
<h4>Explore</h4>
<a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a>
<a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a>
<a href="../../../en/projects/">Projects and events</a>
</div>
<div class="links-column">
<h4>Organisation</h4>
<a href="../../../en/about-us/">About us</a>
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a>
</div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div>
</div>
<hr>
<div class="footer-bottom">
<p>© 2026 MSOS. All rights reserved.</p>
<div class="legal-links">
<a href="../../../en/privacy-policy/">Privacy policy</a>
<a href="../../../en/cookie-policy/">Cookie policy</a>
<a href="../../../en/legal/">Official information</a>
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div>
</div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div>
</div>
</footer>
<!-- END_FOOTER -->
<script src="../../../main.js"></script>
<link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script>
</body>
</html>

View File

@ -0,0 +1,401 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Study in North Macedonia with a Government Scholarship: 2026/2027 Guide - MSOS</title>
<!-- SEO:START -->
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500
});
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date());
gtag('config', 'G-WVYV807VSS');
</script>
<script src="/consent.js" defer></script>
<meta name="description" content="Are you a foreign citizen of Macedonian origin living in Slovenia or another eligible country? The Ministry of Education and Science of North Macedonia is…">
<link rel="canonical" href="https://msosorg.com/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/">
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/blog/study-in-north-macedonia-government-scholarship-2026-2027/">
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/blog/study-in-north-macedonia-government-scholarship-2026-2027/">
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
<meta property="og:title" content="Study in North Macedonia with a Government Scholarship: 2026/2027 Guide - MSOS">
<meta property="og:description" content="Are you a foreign citizen of Macedonian origin living in Slovenia or another eligible country? The Ministry of Education and Science of North Macedonia is…">
<meta property="og:url" content="https://msosorg.com/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/">
<meta property="og:image" content="https://msosorg.com/images/event3-photo-1.webp">
<meta property="og:locale" content="en_GB">
<meta property="og:locale:alternate" content="mk_MK">
<meta property="og:locale:alternate" content="sl_SI">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Study in North Macedonia with a Government Scholarship: 2026/2027 Guide - MSOS">
<meta name="twitter:description" content="Are you a foreign citizen of Macedonian origin living in Slovenia or another eligible country? The Ministry of Education and Science of North Macedonia is…">
<meta name="twitter:image" content="https://msosorg.com/images/event3-photo-1.webp">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Study in North Macedonia with a Government Scholarship: 2026/2027 Guide","description":"Are you a foreign citizen of Macedonian origin living in Slovenia or another eligible country? The Ministry of Education and Science of North Macedonia is…","image":"https://msosorg.com/images/event3-photo-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/","datePublished":"2026-07-30","dateModified":"2026-07-30"}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://msosorg.com/en/blog/"},{"@type":"ListItem","position":3,"name":"Study in North Macedonia with a Government Scholarship: 2026/2027 Guide","item":"https://msosorg.com/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/"}]}</script>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<!-- SEO:END -->
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome (for icons) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media=&#39;all&#39;" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
<!-- Correct path to the main CSS file -->
<link rel="stylesheet" href="../../../css/main.css">
</head>
<body>
<!-- START_HEADER -->
<header class="dropdown-header-navigation">
<div class="container">
<!-- Logotip je zdaj samostojen element na levi strani -->
<a href="../../../en/" class="logo-link">
<img src="../../../images/msos-logo-en.svg" alt="Macedonian Student Organisation in Slovenia Logo" class="logo-img">
</a>
<!-- Nov ovoj za vse elemente na desni strani -->
<div class="header-right-wrapper">
<nav>
<ul class="navigation desktop-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<div class="current-lang">
<i class="fas fa-globe"></i>
<span id="current-lang-code">EN</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="lang-dropdown">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
</div>
<!-- Ikona za mobilni meni ostaja ločena za lažje upravljanje -->
<div class="mobile-menu-icon">
<i class="fas fa-bars"></i>
<i class="fas fa-times"></i>
</div>
</div>
</header>
<!-- Panel za mobilno navigacijo (struktura ostaja enaka) -->
<div class="mobile-nav-panel">
<nav>
<ul class="navigation mobile-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<button class="current-lang" id="mobile-lang-trigger">
<i class="fas fa-globe"></i>
<span>EN</span>
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
<!-- Modalno okno za izbiro jezika (ostaja enako) -->
<div id="language-modal-overlay">
<div class="language-modal-content">
<div class="language-modal-header">
<h3>Select Language</h3>
<button id="language-modal-close" aria-label="Close language selection">&times;</button>
</div>
<div class="language-modal-body">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
<!-- END_HEADER -->
<main class="article-page">
<!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">Study in North Macedonia with a Government Scholarship: 2026/2027 Guide</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<!-- Dropdown Menu for Mobile -->
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links">
<!-- Links will be dynamically inserted here by JavaScript -->
</ul>
</div>
</div>
<div class="article-layout-container">
<!-- Desktop Scrollspy Sidebar -->
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#1-who-can-apply" class="active">1. Who can apply?</a></li>
<li><a href="#2-what-does-the-scholarship-cover">2. What does the scholarship cover?</a></li>
<li><a href="#3-which-documents-are-required">3. Which documents are required?</a></li>
<li><a href="#4-how-do-you-apply">4. How do you apply?</a></li>
<li><a href="#5-what-happens-after-selection">5. What happens after selection?</a></li>
<li><a href="#6-how-do-you-keep-the-scholarship">6. How do you keep the scholarship?</a></li>
<li><a href="#7-what-should-you-consider-before-applying">7. What should you consider before applying?</a></li>
</ul>
</nav>
</aside>
<article class="article-container">
<header class="article-header">
<p class="article-publish-date">Guides &middot; Last checked 30 July 2026</p>
<h1>Study in North Macedonia with a Government Scholarship: 2026/2027 Guide</h1>
<p class="article-subtitle">Are you a foreign citizen of Macedonian origin living in Slovenia or another eligible country? The Ministry of Education and Science of North Macedonia is offering 50 scholarships for undergraduate studies at public universities for the 2026/2027 academic year.</p>
</header>
<figure class="article-main-image">
<img width="1600" height="1067" fetchpriority="high" src="../../../images/event3-photo-1.webp" alt="Students at a university event">
<figcaption><span class="fig-illustrative"><i class="fas fa-circle-info" aria-hidden="true"></i> Illustrative image</span> &middot; Placeholder image.</figcaption>
</figure>
<div class="article-body">
<p><strong>Are you a foreign citizen of Macedonian origin living in Slovenia or another eligible country? The Ministry of Education and Science of North Macedonia is offering 50 scholarships for undergraduate studies at public universities for the 2026/2027 academic year.</strong></p>
<p>The application deadline is <strong>31 August 2026</strong>. Applications must be submitted through the diplomatic or consular mission of North Macedonia in the country where the candidate lives. Late or incomplete applications will not be considered.</p>
<p><em>This guide is based on the official 2026/2027 call. Requirements and deadlines may change in future academic years, so always check the latest information before applying.</em></p>
<h2 id="1-who-can-apply">1. Who can apply?</h2>
<p>The scholarships are intended for foreign citizens of Macedonian origin who live in:</p>
<p><strong>Albania, Bulgaria, Serbia, Bosnia and Herzegovina, Croatia, Slovenia, Kosovo, Türkiye, Romania, Montenegro or Greece.</strong></p>
<p>Candidates must have completed four years of secondary education and apply for a first-cycle undergraduate programme. A total of 50 scholarships are available.</p>
<p>Candidates indicate one preferred faculty and two alternatives in the application. The Ministry reserves the right to make the final placement from the three listed choices.</p>
<h2 id="2-what-does-the-scholarship-cover">2. What does the scholarship cover?</h2>
<p>The scholarship supports students during the regular duration of their undergraduate programme and covers:</p>
<ul>
<li>university tuition or participation fees;</li>
<li>a monthly scholarship;</li>
<li>accommodation and meals in a student residence selected by the Ministry;</li>
<li>primary health insurance;</li>
<li>the costs of issuing and renewing the temporary residence permit.</li>
</ul>
<p>The scholarship does <strong>not</strong> cover programmes taught in English or preparatory Macedonian-language classes. Students must also cover the cost of recognising, or nostrifying, their secondary-school documents.</p>
<h2 id="3-which-documents-are-required">3. Which documents are required?</h2>
<p>Candidates must complete the official application form and submit:</p>
<ol>
<li><strong>A CV and motivation letter</strong>, explaining why they want to study in North Macedonia and naming one preferred faculty and two alternatives.</li>
<li><strong>Proof of Macedonian origin</strong>, usually a birth certificate stating Macedonian ethnicity or another appropriate document proving Macedonian origin.</li>
<li><strong>A copy of the certificate for completed four-year secondary education</strong>, accompanied by a translation and an explanation of how the grades correspond to the Macedonian grading system.</li>
</ol>
<p>Only a photocopy of the secondary-school certificate is initially requested, allowing candidates to apply elsewhere at the same time.</p>
<h2 id="4-how-do-you-apply">4. How do you apply?</h2>
<p>The completed application and supporting documents must be submitted to the diplomatic or consular mission of North Macedonia in the country where the candidate lives.</p>
<p>For applicants living in Slovenia, this means contacting the Embassy of North Macedonia in Ljubljana. Candidates should confirm the opening hours, submission method and any additional translation or document-certification requirements before applying.</p>
<p>The final deadline is <strong>31 August 2026</strong>.</p>
<h2 id="5-what-happens-after-selection">5. What happens after selection?</h2>
<p>Selected students must act quickly after the final results are published.</p>
<p>Within <strong>five days</strong>, they must submit a request for recognition of their educational documents to the relevant department of the Ministry of Education and Science. The student covers the related costs.</p>
<p>Selected candidates must arrive in North Macedonia no later than <strong>ten days after publication of the final list</strong>. Candidates who do not arrive within this period will be considered to have withdrawn.</p>
<p>Because these deadlines are strict, applicants should prepare translations, travel plans and the documents required for recognition in advance.</p>
<h2 id="6-how-do-you-keep-the-scholarship">6. How do you keep the scholarship?</h2>
<p>From the second academic year onward, students must submit proof of regular enrolment and show that they passed at least <strong>60% of the examinations planned for the previous academic year</strong>.</p>
<p>These documents must be submitted personally to the Ministry by <strong>30 October</strong> each year. Students who do not meet the academic and administrative requirements may lose the scholarship.</p>
<h2 id="7-what-should-you-consider-before-applying">7. What should you consider before applying?</h2>
<p>This opportunity can significantly reduce the cost of studying in North Macedonia, but candidates should research their preferred study programmes carefully.</p>
<p>Because English-language programmes and preparatory Macedonian classes are not covered, applicants should confirm the language of instruction and make sure they can follow the programme. They should also plan for costs not covered by the scholarship, including document recognition, travel and other personal expenses.</p>
<p>The most important first steps are to research suitable programmes, contact the diplomatic or consular mission in your country of residence and prepare the required documents well before <strong>31 August 2026</strong>.</p>
<p>For students of Macedonian origin living in Slovenia, this programme offers an opportunity to complete undergraduate studies in North Macedonia with support for tuition, accommodation, meals, health insurance and temporary residence.</p>
<p><strong>Author: MSOS Team</strong></p>
<p><strong>Official call:</strong> https://mon.gov.mk/mk-MK/konkursi-i-stipendii/stipendii-mon/konkurs-za-dodeluvanje-na-studentskite-stipendii-za-stranski-drzavjani-koi-se-od-interes-za-republika-severna-makedonija-za-studiskata-20262027godina</p>
<p class="guide-last-checked">Last checked: 30 July 2026</p>
</div>
<footer class="article-footer">
<hr>
<div class="author-share-section">
<div class="author-details">
<img width="150" height="150" loading="lazy" decoding="async" src="../../../images/msos-emblem-avatar.png" alt="MSOS emblem">
<div class="author-text">
<p class="author-name">MSOS Team</p>
<p class="author-title">Macedonian Student Organisation in Slovenia</p>
</div>
</div>
<div class="share-buttons">
<button class="btn btn-secondary"><i class="fas fa-link"></i> Copy link</button>
<a href="#" class="social-icon-btn" aria-label="Share on Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-icon-btn" aria-label="Share on LinkedIn"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</footer>
</article>
</div>
<section class="newsletter-cta">
<div class="container">
<div class="cta-content">
<h2>Never miss an MSOS update</h2>
<p>News, announcements and open calls, straight to your inbox.</p>
<form class="subscribe-form-bottom">
<div class="input-wrapper">
<input type="email" placeholder="Enter your email" aria-label="Email address">
</div>
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
</form>
<p class="privacy-note">We care about your data in our <a href="../../../en/privacy-policy/">privacy policy</a></p>
</div>
</div>
</section>
</main>
<!-- START_FOOTER -->
<footer>
<div class="footer-container">
<div class="footer-main">
<div class="footer-info">
<div class="footer-logo">
<img loading="lazy" decoding="async" src="../../../images/msos-logo-white-en.svg" alt="Macedonian Student Organisation in Slovenia Logo">
</div>
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
<p>
Masarykova cesta 24<br>
1000 Ljubljana, Slovenia<br>
<a href="mailto:info@msosorg.com">info@msosorg.com</a>
</p>
<div class="social-icons">
<a href="https://www.facebook.com/msos.org" aria-label="Facebook" target="_blank" rel="noopener"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/msosorg_com" aria-label="Instagram" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/msos-org" aria-label="LinkedIn" target="_blank" rel="noopener"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.youtube.com/@msosorg" aria-label="YouTube" target="_blank" rel="noopener"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
<div class="links-column">
<h4>Student guide</h4>
<a href="../../../en/student-welcome-guide/">Student welcome guide</a>
<a href="../../../en/student-welcome-guide/complete-student-journey/">The whole journey</a>
<a href="../../../en/student-welcome-guide/application-deadlines/">Application deadlines</a>
<a href="../../../en/student-welcome-guide/evs-application-guide/">Apply through eVŠ</a>
<a href="../../../en/student-welcome-guide/student-residence-permit/">Residence permit</a>
<a href="../../../en/student-welcome-guide/student-accommodation/">Accommodation</a>
</div>
<div class="links-column">
<h4>Explore</h4>
<a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a>
<a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a>
<a href="../../../en/projects/">Projects and events</a>
</div>
<div class="links-column">
<h4>Organisation</h4>
<a href="../../../en/about-us/">About us</a>
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a>
</div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div>
</div>
<hr>
<div class="footer-bottom">
<p>© 2026 MSOS. All rights reserved.</p>
<div class="legal-links">
<a href="../../../en/privacy-policy/">Privacy policy</a>
<a href="../../../en/cookie-policy/">Cookie policy</a>
<a href="../../../en/legal/">Official information</a>
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div>
</div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div>
</div>
</footer>
<!-- END_FOOTER -->
<script src="../../../main.js"></script>
<link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script>
</body>
</html>

View File

@ -0,0 +1,392 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome Days for Bachelor&#x27;s, Master&#x27;s and Erasmus students in Slovenia - MSOS</title>
<!-- SEO:START -->
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500
});
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date());
gtag('config', 'G-WVYV807VSS');
</script>
<script src="/consent.js" defer></script>
<meta name="description" content="Starting university in another country is easier when you know where to go, who to ask, and what happens during the first days. Slovenias main universities…">
<link rel="canonical" href="https://msosorg.com/en/blog/welcome-days-slovenian-universities-2026-2027/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/welcome-days-slovenian-universities-2026-2027/">
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/blog/welcome-days-slovenian-universities-2026-2027/">
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/blog/welcome-days-slovenian-universities-2026-2027/">
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/blog/welcome-days-slovenian-universities-2026-2027/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
<meta property="og:title" content="Welcome Days for Bachelor&#x27;s, Master&#x27;s and Erasmus students in Slovenia - MSOS">
<meta property="og:description" content="Starting university in another country is easier when you know where to go, who to ask, and what happens during the first days. Slovenias main universities…">
<meta property="og:url" content="https://msosorg.com/en/blog/welcome-days-slovenian-universities-2026-2027/">
<meta property="og:image" content="https://msosorg.com/images/event4-img-1.webp">
<meta property="og:locale" content="en_GB">
<meta property="og:locale:alternate" content="mk_MK">
<meta property="og:locale:alternate" content="sl_SI">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Welcome Days for Bachelor&#x27;s, Master&#x27;s and Erasmus students in Slovenia - MSOS">
<meta name="twitter:description" content="Starting university in another country is easier when you know where to go, who to ask, and what happens during the first days. Slovenias main universities…">
<meta name="twitter:image" content="https://msosorg.com/images/event4-img-1.webp">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Welcome Days for Bachelor's, Master's and Erasmus students in Slovenia","description":"Starting university in another country is easier when you know where to go, who to ask, and what happens during the first days. Slovenias main universities…","image":"https://msosorg.com/images/event4-img-1.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/blog/welcome-days-slovenian-universities-2026-2027/","datePublished":"2026-08-03","dateModified":"2026-08-03"}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://msosorg.com/en/blog/"},{"@type":"ListItem","position":3,"name":"Welcome Days for Bachelor's, Master's and Erasmus students in Slovenia","item":"https://msosorg.com/en/blog/welcome-days-slovenian-universities-2026-2027/"}]}</script>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<!-- SEO:END -->
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome (for icons) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media=&#39;all&#39;" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
<!-- Correct path to the main CSS file -->
<link rel="stylesheet" href="../../../css/main.css">
</head>
<body>
<!-- START_HEADER -->
<header class="dropdown-header-navigation">
<div class="container">
<!-- Logotip je zdaj samostojen element na levi strani -->
<a href="../../../en/" class="logo-link">
<img src="../../../images/msos-logo-en.svg" alt="Macedonian Student Organisation in Slovenia Logo" class="logo-img">
</a>
<!-- Nov ovoj za vse elemente na desni strani -->
<div class="header-right-wrapper">
<nav>
<ul class="navigation desktop-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<div class="current-lang">
<i class="fas fa-globe"></i>
<span id="current-lang-code">EN</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="lang-dropdown">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
</div>
<!-- Ikona za mobilni meni ostaja ločena za lažje upravljanje -->
<div class="mobile-menu-icon">
<i class="fas fa-bars"></i>
<i class="fas fa-times"></i>
</div>
</div>
</header>
<!-- Panel za mobilno navigacijo (struktura ostaja enaka) -->
<div class="mobile-nav-panel">
<nav>
<ul class="navigation mobile-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<button class="current-lang" id="mobile-lang-trigger">
<i class="fas fa-globe"></i>
<span>EN</span>
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
<!-- Modalno okno za izbiro jezika (ostaja enako) -->
<div id="language-modal-overlay">
<div class="language-modal-content">
<div class="language-modal-header">
<h3>Select Language</h3>
<button id="language-modal-close" aria-label="Close language selection">&times;</button>
</div>
<div class="language-modal-body">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
<!-- END_HEADER -->
<main class="article-page">
<!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">Welcome Days for Bachelor&#x27;s, Master&#x27;s and Erasmus students in Slovenia</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<!-- Dropdown Menu for Mobile -->
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links">
<!-- Links will be dynamically inserted here by JavaScript -->
</ul>
</div>
</div>
<div class="article-layout-container">
<!-- Desktop Scrollspy Sidebar -->
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#1-university-of-ljubljana" class="active">1. University of Ljubljana</a></li>
<li><a href="#2-university-of-maribor">2. University of Maribor</a></li>
<li><a href="#3-university-of-primorska">3. University of Primorska</a></li>
<li><a href="#4-university-of-nova-gorica">4. University of Nova Gorica</a></li>
<li><a href="#before-your-first-day">Before your first day</a></li>
<li><a href="#sources">Sources</a></li>
</ul>
</nav>
</aside>
<article class="article-container">
<header class="article-header">
<p class="article-publish-date">Student life &middot; Last checked 3 August 2026</p>
<h1>Welcome Days for Bachelor's, Master's and Erasmus students in Slovenia</h1>
<p class="article-subtitle">Starting university in another country is easier when you know where to go, who to ask, and what happens during the first days. Slovenias main universities organise welcome and orientation activities for new students, but the structure differs. Some events are university-wide, while others are organised separately by faculties or international offices.</p>
</header>
<figure class="article-main-image">
<img width="1600" height="1067" fetchpriority="high" src="../../../images/event4-img-1.webp" alt="New students at a university welcome day in Slovenia">
<figcaption><span class="fig-illustrative"><i class="fas fa-circle-info" aria-hidden="true"></i> Illustrative image</span> &middot; Placeholder image.</figcaption>
</figure>
<div class="article-body">
<p>Starting university in another country is easier when you know where to go, who to ask, and what happens during the first days. Slovenias main universities organise welcome and orientation activities for new students, but the structure differs. Some events are university-wide, while others are organised separately by faculties or international offices.</p>
<h2 id="1-university-of-ljubljana">1. University of Ljubljana</h2>
<p>The University of Ljubljana will hold its central <strong>Welcome Day for International Students</strong> online on <strong>16 September 2026, from 13:00 to 16:00</strong>. The programme is in English and covers practical topics such as residence permits, health insurance, accommodation, student meals, public transport, Year Plus, tutoring, career services, and extracurricular activities. Registration is mandatory.</p>
<p>Bachelors and masters students should also check the website and email of their own faculty. Many UL faculties organise separate first-year welcomes, programme introductions, tutor meetings, or Erasmus sessions around the end of September and the first day of classes. These faculty events may contain the most important information about timetables, student systems, course selection, and the physical location of classes.</p>
<p><strong>For more information:</strong> Check the central international-student page and the website of your faculty.</p>
<h2 id="2-university-of-maribor">2. University of Maribor</h2>
<p>The University of Maribors central <strong>Orientation Week for Freshmen</strong> will take place from <strong>21 to 25 September 2026</strong>. It includes shared online presentations about university IT services, student life, libraries, career support, international opportunities, and support for foreign degree students.</p>
<p>The university also publishes separate programmes for its faculties. Some faculties organise preparatory courses, campus tours, tutor meetings, and official receptions on different dates, often between 21 September and 1 October. New masters students should therefore check whether their faculty has a separate introduction for their programme.</p>
<p>Erasmus students receive information from the UM International Relations Office and their faculty coordinators. The autumn 2026 Erasmus welcome reception had not yet been published when this article was checked, so incoming exchange students should follow the official Erasmus+ news page and their email.</p>
<p><strong>For more information:</strong> Check the UM Orientation Week programme, your faculty page, and the UM Erasmus+ portal.</p>
<h2 id="3-university-of-primorska">3. University of Primorska</h2>
<p>The University of Primorska offers one of the most complete central welcome programmes. Its online <strong>Preparatory Days</strong> are planned from <strong>14 to 25 September 2026</strong> for admitted and enrolled students. The programme includes practical information about life on the Slovenian coast, the university, residence documents, student benefits, mobility opportunities, and a free introductory Slovenian course.</p>
<p>The main in-person <strong>Orientation Days</strong> will take place from <strong>28 to 30 September 2026</strong>. These days are designed to introduce students to university facilities, faculties, student services, organisations, and other students. The programme is relevant to international degree students and exchange students, although individual faculties may also send separate instructions about enrolment, courses, and first meetings.</p>
<p><strong>For more information:</strong> Register through the UP Welcome portal and check messages from your facultys student or international office.</p>
<h2 id="4-university-of-nova-gorica">4. University of Nova Gorica</h2>
<p>The University of Nova Gorica starts the winter semester on <strong>1 October 2026</strong>, but its central Orientation Day programme for 2026/2027 had not yet been published when this article was checked.</p>
<p>UNG usually combines activities organised by individual schools with a shared university welcome. Because teaching takes place across Nova Gorica, Rožna Dolina, Vipava, Ajdovščina, and other locations, students should confirm exactly where their first meeting will be held. Bachelors, masters, and Erasmus students may receive different instructions from their school, student office, or international office.</p>
<p>Students who are still finalising their study choice can also attend UNGs online international Info Day on <strong>10 September 2026 at 14:00</strong>, but this is an admissions information event rather than the final welcome programme for enrolled students.</p>
<p><strong>For more information:</strong> Follow UNG notices and contact the secretariat of your school if the orientation details have not arrived by email.</p>
<h2 id="before-your-first-day">Before your first day</h2>
<p>Save every welcome email and check whether registration is required. Central events usually explain student life and administrative procedures, while faculty sessions explain your timetable, course registration, student portal, tutors, and programme expectations. Attend both whenever possible.</p>
<h2 id="sources">Sources</h2>
<ul>
<li><a href="https://www.uni-lj.si/en/events/2026-09-16-welcome-day-for-international-students-2026" target="_blank" rel="noopener">Welcome Day for International Students 2026</a></li>
<li><a href="https://www.uni-lj.si/en/study/international-students" target="_blank" rel="noopener">International students at the University of Ljubljana</a></li>
<li><a href="https://fe.uni-lj.si/en/study/international-exchanges/arrival-to-slovenia/" target="_blank" rel="noopener">Example of a faculty-specific Erasmus Welcome Day, Faculty of Electrical Engineering</a></li>
<li><a href="https://moja.um.si/uvajalni-teden/Strani/default.aspx" target="_blank" rel="noopener">University of Maribor Orientation Week 2026/2027</a></li>
<li><a href="https://www.erasmusplus.um.si/international-students/" target="_blank" rel="noopener">UM Erasmus+ information for international students</a></li>
<li><a href="https://www.erasmusplus.um.si/international-students/news/" target="_blank" rel="noopener">UM Erasmus+ news</a></li>
<li><a href="https://welcome.upr.si/student/prepare/preparatory-days/" target="_blank" rel="noopener">Preparatory Days 2026</a></li>
<li><a href="https://welcome.upr.si/student/arrive/orientation-days/" target="_blank" rel="noopener">Orientation Days 2026</a></li>
<li><a href="https://welcome.upr.si/" target="_blank" rel="noopener">University of Primorska Welcome portal</a></li>
<li><a href="https://ung.si/en/education/academic-calendar/" target="_blank" rel="noopener">UNG academic calendar 2026/2027</a></li>
<li><a href="https://ung.si/en/news/" target="_blank" rel="noopener">UNG notices and events</a></li>
<li><a href="https://ung.si/en/education/info-days/" target="_blank" rel="noopener">UNG Info Days for international candidates</a></li>
<li><a href="https://ung.si/sl/obvestila/dogodek/267/orientacijski-dan/" target="_blank" rel="noopener">Previous UNG Orientation Day format, for reference only</a></li>
</ul>
<p class="guide-last-checked">Last checked: 3 August 2026</p>
</div>
<footer class="article-footer">
<hr>
<div class="author-share-section">
<div class="author-details">
<img width="150" height="150" loading="lazy" decoding="async" src="../../../images/msos-emblem-avatar.png" alt="MSOS emblem">
<div class="author-text">
<p class="author-name">MSOS Team</p>
<p class="author-title">Macedonian Student Organisation in Slovenia</p>
</div>
</div>
<div class="share-buttons">
<button class="btn btn-secondary"><i class="fas fa-link"></i> Copy link</button>
<a href="#" class="social-icon-btn" aria-label="Share on Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-icon-btn" aria-label="Share on LinkedIn"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</footer>
</article>
</div>
<section class="newsletter-cta">
<div class="container">
<div class="cta-content">
<h2>Never miss an MSOS update</h2>
<p>News, announcements and open calls, straight to your inbox.</p>
<form class="subscribe-form-bottom">
<div class="input-wrapper">
<input type="email" placeholder="Enter your email" aria-label="Email address">
</div>
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
</form>
<p class="privacy-note">We care about your data in our <a href="../../../en/privacy-policy/">privacy policy</a></p>
</div>
</div>
</section>
</main>
<!-- START_FOOTER -->
<footer>
<div class="footer-container">
<div class="footer-main">
<div class="footer-info">
<div class="footer-logo">
<img loading="lazy" decoding="async" src="../../../images/msos-logo-white-en.svg" alt="Macedonian Student Organisation in Slovenia Logo">
</div>
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
<p>
Masarykova cesta 24<br>
1000 Ljubljana, Slovenia<br>
<a href="mailto:info@msosorg.com">info@msosorg.com</a>
</p>
<div class="social-icons">
<a href="https://www.facebook.com/msos.org" aria-label="Facebook" target="_blank" rel="noopener"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/msosorg_com" aria-label="Instagram" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/msos-org" aria-label="LinkedIn" target="_blank" rel="noopener"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.youtube.com/@msosorg" aria-label="YouTube" target="_blank" rel="noopener"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
<div class="links-column">
<h4>Student guide</h4>
<a href="../../../en/student-welcome-guide/">Student welcome guide</a>
<a href="../../../en/student-welcome-guide/complete-student-journey/">The whole journey</a>
<a href="../../../en/student-welcome-guide/application-deadlines/">Application deadlines</a>
<a href="../../../en/student-welcome-guide/evs-application-guide/">Apply through eVŠ</a>
<a href="../../../en/student-welcome-guide/student-residence-permit/">Residence permit</a>
<a href="../../../en/student-welcome-guide/student-accommodation/">Accommodation</a>
</div>
<div class="links-column">
<h4>Explore</h4>
<a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a>
<a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a>
<a href="../../../en/projects/">Projects and events</a>
</div>
<div class="links-column">
<h4>Organisation</h4>
<a href="../../../en/about-us/">About us</a>
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a>
</div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div>
</div>
<hr>
<div class="footer-bottom">
<p>© 2026 MSOS. All rights reserved.</p>
<div class="legal-links">
<a href="../../../en/privacy-policy/">Privacy policy</a>
<a href="../../../en/cookie-policy/">Cookie policy</a>
<a href="../../../en/legal/">Official information</a>
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div>
</div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div>
</div>
</footer>
<!-- END_FOOTER -->
<script src="../../../main.js"></script>
<link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script>
</body>
</html>

View File

@ -0,0 +1,445 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Where to search for student accommodation in Slovenia - MSOS</title>
<!-- SEO:START -->
<!-- Google tag (gtag.js) with Consent Mode v2 (default: denied) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WVYV807VSS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {
ad_storage: 'denied', ad_user_data: 'denied', ad_personalization: 'denied',
analytics_storage: 'denied', wait_for_update: 500
});
// Restore a returning visitor's prior choice before the first hit.
try { if (localStorage.getItem('msos-consent') === 'granted') {
gtag('consent', 'update', { ad_storage:'granted', ad_user_data:'granted',
ad_personalization:'granted', analytics_storage:'granted' }); } } catch(e){}
gtag('js', new Date());
gtag('config', 'G-WVYV807VSS');
</script>
<script src="/consent.js" defer></script>
<meta name="description" content="Finding accommodation is often one of the most stressful parts of moving to Slovenia, especially in Ljubljana and on the coast. The best approach is to begin…">
<link rel="canonical" href="https://msosorg.com/en/blog/where-to-search-for-accommodation-in-slovenia/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/blog/where-to-search-for-accommodation-in-slovenia/">
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/blog/where-to-search-for-accommodation-in-slovenia/">
<link rel="alternate" hreflang="sl" href="https://msosorg.com/si/blog/where-to-search-for-accommodation-in-slovenia/">
<link rel="alternate" hreflang="x-default" href="https://msosorg.com/en/blog/where-to-search-for-accommodation-in-slovenia/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
<meta property="og:title" content="Where to search for student accommodation in Slovenia - MSOS">
<meta property="og:description" content="Finding accommodation is often one of the most stressful parts of moving to Slovenia, especially in Ljubljana and on the coast. The best approach is to begin…">
<meta property="og:url" content="https://msosorg.com/en/blog/where-to-search-for-accommodation-in-slovenia/">
<meta property="og:image" content="https://msosorg.com/images/event4-image2.webp">
<meta property="og:locale" content="en_GB">
<meta property="og:locale:alternate" content="mk_MK">
<meta property="og:locale:alternate" content="sl_SI">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Where to search for student accommodation in Slovenia - MSOS">
<meta name="twitter:description" content="Finding accommodation is often one of the most stressful parts of moving to Slovenia, especially in Ljubljana and on the coast. The best approach is to begin…">
<meta name="twitter:image" content="https://msosorg.com/images/event4-image2.webp">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Where to search for student accommodation in Slovenia","description":"Finding accommodation is often one of the most stressful parts of moving to Slovenia, especially in Ljubljana and on the coast. The best approach is to begin…","image":"https://msosorg.com/images/event4-image2.webp","inLanguage":"en","author":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","url":"https://msosorg.com/en/"},"publisher":{"@type":"Organization","name":"Macedonian Student Organisation in Slovenia","logo":{"@type":"ImageObject","url":"https://msosorg.com/images/1-logo.png"}},"mainEntityOfPage":"https://msosorg.com/en/blog/where-to-search-for-accommodation-in-slovenia/","datePublished":"2026-08-03","dateModified":"2026-08-03"}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://msosorg.com/en/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://msosorg.com/en/blog/"},{"@type":"ListItem","position":3,"name":"Where to search for student accommodation in Slovenia","item":"https://msosorg.com/en/blog/where-to-search-for-accommodation-in-slovenia/"}]}</script>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<!-- SEO:END -->
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome (for icons) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" media="print" onload="this.media=&#39;all&#39;" /><noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></noscript>
<!-- Correct path to the main CSS file -->
<link rel="stylesheet" href="../../../css/main.css">
</head>
<body>
<!-- START_HEADER -->
<header class="dropdown-header-navigation">
<div class="container">
<!-- Logotip je zdaj samostojen element na levi strani -->
<a href="../../../en/" class="logo-link">
<img src="../../../images/msos-logo-en.svg" alt="Macedonian Student Organisation in Slovenia Logo" class="logo-img">
</a>
<!-- Nov ovoj za vse elemente na desni strani -->
<div class="header-right-wrapper">
<nav>
<ul class="navigation desktop-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<div class="current-lang">
<i class="fas fa-globe"></i>
<span id="current-lang-code">EN</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="lang-dropdown">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
</div>
<!-- Ikona za mobilni meni ostaja ločena za lažje upravljanje -->
<div class="mobile-menu-icon">
<i class="fas fa-bars"></i>
<i class="fas fa-times"></i>
</div>
</div>
</header>
<!-- Panel za mobilno navigacijo (struktura ostaja enaka) -->
<div class="mobile-nav-panel">
<nav>
<ul class="navigation mobile-nav">
<li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a>
<ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">What We Do</a>
<ul class="dropdown-menu">
<li><a href="../../../en/projects/">Events & Projects</a></li>
<li><a href="../../../en/gallery/">Gallery</a></li>
<li><a href="../../../en/blog/">Blog</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">For Students</a>
<ul class="dropdown-menu">
<li><a href="../../../en/student-welcome-guide/">Student Welcome Guide</a></li>
<li><a href="../../../en/faq/">FAQs</a></li>
<li><a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a></li>
<li><a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a></li>
</ul>
</li>
<li class="menu-item"><a href="../../../en/news/">News</a></li>
</ul>
</nav>
<div class="navigation-actions">
<a href="../../../en/become-a-member/" class="btn btn-secondary">Become a member</a>
<a href="../../../en/support/" class="btn btn-primary">Support MSOS ❤️</a>
<div class="language-selector">
<button class="current-lang" id="mobile-lang-trigger">
<i class="fas fa-globe"></i>
<span>EN</span>
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
<!-- Modalno okno za izbiro jezika (ostaja enako) -->
<div id="language-modal-overlay">
<div class="language-modal-content">
<div class="language-modal-header">
<h3>Select Language</h3>
<button id="language-modal-close" aria-label="Close language selection">&times;</button>
</div>
<div class="language-modal-body">
<a href="#" data-lang="en"><span class="lang-flag lang-flag-gb" aria-hidden="true"></span><span class="lang-name">English</span></a>
<a href="#" data-lang="si"><span class="lang-flag lang-flag-si" aria-hidden="true"></span><span class="lang-name">Slovenščina</span></a>
<a href="#" data-lang="mk"><span class="lang-flag lang-flag-mk" aria-hidden="true"></span><span class="lang-name">Македонски</span></a>
</div>
</div>
</div>
<!-- END_HEADER -->
<main class="article-page">
<!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">Where to search for student accommodation in Slovenia</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<!-- Dropdown Menu for Mobile -->
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links">
<!-- Links will be dynamically inserted here by JavaScript -->
</ul>
</div>
</div>
<div class="article-layout-container">
<!-- Desktop Scrollspy Sidebar -->
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#1-start-with-your-university" class="active">1. Start with your university</a></li>
<li><a href="#2-use-established-rental-and-student-housing-websites">2. Use established rental and student-housing websites</a></li>
<li><a href="#3-facebook-groups-and-community-channels">3. Facebook groups and community channels</a></li>
<li><a href="#4-what-to-check-before-paying-or-signing">4. What to check before paying or signing</a></li>
<li><a href="#5-why-the-contract-and-address-matter-for-residence-procedures">5. Why the contract and address matter for residence procedures</a></li>
<li><a href="#6-need-more-help">6. Need more help?</a></li>
<li><a href="#sources">Sources</a></li>
</ul>
</nav>
</aside>
<article class="article-container">
<header class="article-header">
<p class="article-publish-date">Student life &middot; Last checked 3 August 2026</p>
<h1>Where to search for student accommodation in Slovenia</h1>
<p class="article-subtitle">Finding accommodation is often one of the most stressful parts of moving to Slovenia, especially in Ljubljana and on the coast. The best approach is to begin early, check several sources at the same time, and never send money before confirming who is renting the property and whether you will receive a proper contract.</p>
</header>
<figure class="article-main-image">
<img width="1600" height="1067" fetchpriority="high" src="../../../images/event4-image2.webp" alt="Macedonian students settling into accommodation in Slovenia">
<figcaption><span class="fig-illustrative"><i class="fas fa-circle-info" aria-hidden="true"></i> Illustrative image</span> &middot; Placeholder image.</figcaption>
</figure>
<div class="article-body">
<aside class="guide-box guide-box--warning">
<p><strong>Check current availability</strong> Rental listings change daily, while university housing rules differ by city, university, study level, and student status. Always confirm the current conditions directly with the university, accommodation provider, or landlord.</p>
</aside>
<p>Finding accommodation is often one of the most stressful parts of moving to Slovenia, especially in Ljubljana and on the coast. The best approach is to begin early, check several sources at the same time, and never send money before confirming who is renting the property and whether you will receive a proper contract.</p>
<h2 id="1-start-with-your-university">1. Start with your university</h2>
<p>Before searching private listings, check the accommodation information published by your university. University pages explain whether international students can apply for a dormitory, which student residences are available, and who to contact for help.</p>
<p>The University of Ljubljana generally directs international degree students toward private accommodation and recommends the free room agency <strong>m2</strong>, as well as its HousingAnywhere rental platform. The University of Maribor offers limited dormitory places and also publishes private and student-residence options. The University of Primorska has specific calls for some international degree students, while exchange students are usually directed toward private housing. The University of Nova Gorica lists housing options across Nova Gorica, Vipava, Ajdovščina, Postojna, and nearby Gorizia, and its student office also helps connect students with accommodation providers.</p>
<p>Official university pages:</p>
<ul>
<li><a href="https://www.uni-lj.si/en/study/international-students/accommodation-transport-and-cost-of-living" target="_blank" rel="noopener">University of Ljubljana accommodation</a></li>
<li><a href="https://www.erasmusplus.um.si/international-students/useful-information/accomodation/" target="_blank" rel="noopener">University of Maribor accommodation information</a></li>
<li><a href="https://welcome.upr.si/student/live/accommodation/" target="_blank" rel="noopener">University of Primorska accommodation</a></li>
<li><a href="https://ung.si/sl/studij/studentski-vodnik/" target="_blank" rel="noopener">University of Nova Gorica student guide</a></li>
</ul>
<p>Do not assume that a dormitory place is guaranteed. Eligibility and availability vary, and places can fill quickly.</p>
<h2 id="2-use-established-rental-and-student-housing-websites">2. Use established rental and student-housing websites</h2>
<p>Several websites are useful for finding rooms, roommates, studios, and apartments across Slovenia.</p>
<p><strong>Nepremicnine.net</strong> is one of the largest Slovenian property portals. It is useful for full apartments and rooms, and it allows you to filter by city, size, price, and property type.</p>
<p><a href="https://www.nepremicnine.net/" target="_blank" rel="noopener">Nepremicnine.net</a></p>
<p><strong>Bolha</strong> has a large property section with private listings from across Slovenia. Read each advertisement carefully because both agencies and private landlords publish there.</p>
<p><a href="https://www.bolha.com/nepremicnine" target="_blank" rel="noopener">Bolha real estate</a></p>
<p><strong>Mojcimer</strong> focuses on student rooms, shared apartments, and finding roommates. It is especially useful when you are open to sharing accommodation.</p>
<p><a href="https://www.mojcimer.si/" target="_blank" rel="noopener">Mojcimer</a></p>
<p><strong>m2</strong> is a free room-rental service recommended by the University of Ljubljana. It can help students search for private accommodation and understand common rental questions.</p>
<p><a href="https://www.mkvadrat.si/" target="_blank" rel="noopener">m2 room agency</a></p>
<p><strong>Kamrica</strong> is particularly useful for accommodation in Maribor and includes rooms, beds, and student apartments.</p>
<p><a href="https://kamrica.dostop.si/" target="_blank" rel="noopener">Kamrica</a></p>
<p><strong>HousingAnywhere</strong> is an international rental platform often used by incoming and exchange students. It can be useful for arranging accommodation before arrival, but always check platform fees, cancellation rules, and what is included in the price.</p>
<p><a href="https://housinganywhere.com/" target="_blank" rel="noopener">HousingAnywhere</a></p>
<h2 id="3-facebook-groups-and-community-channels">3. Facebook groups and community channels</h2>
<p>Facebook groups and Marketplace can help you find new listings quickly, especially from students looking for roommates or leaving their room before the end of a contract.</p>
<p>Useful search terms include:</p>
<ul>
<li>Stanovanja Ljubljana</li>
<li>Sobe Ljubljana</li>
<li>Stanovanja Maribor</li>
<li>Študentske sobe Maribor</li>
<li>Oddaja in najem stanovanj Koper</li>
<li>Stanovanja Obala</li>
<li>Oddaja in najem stanovanj Nova Gorica</li>
<li>Apartments and rooms for rent in Ljubljana</li>
<li>Erasmus accommodation Ljubljana, Maribor, or Koper</li>
</ul>
<p>You can also check Facebook Marketplace and university or Erasmus student groups.</p>
<p>Treat social-media listings with extra caution. The University of Primorska specifically warns that Facebook accommodation groups may not always be reliable. A profile, photograph, or friendly conversation does not prove that the person owns the property or has the right to rent it.</p>
<p>Ask local student organisations, ESN, classmates, or MSOS members whether they recognise the landlord, address, or listing before paying anything.</p>
<h2 id="4-what-to-check-before-paying-or-signing">4. What to check before paying or signing</h2>
<p>A legitimate offer should clearly explain the monthly rent, deposit, utilities, duration of the rental, notice period, and what furniture or equipment is included. Ask whether electricity, heating, water, internet, building costs, and cleaning are included or paid separately.</p>
<p>Before transferring money, verify the exact address and request a live viewing, video call, or visit by someone you trust. Confirm the landlords identity and ask for a written rental contract. The contract should identify the landlord and tenant, describe the room or apartment, state the rent and deposit, list additional costs, define the rental period, and explain the termination conditions.</p>
<p>Be careful when:</p>
<ul>
<li>the price is much lower than similar listings</li>
<li>the landlord refuses a viewing or video call</li>
<li>you are pressured to pay immediately</li>
<li>payment is requested through an unusual transfer method</li>
<li>the landlord refuses to provide a contract</li>
<li>the person says they are abroad and cannot prove ownership</li>
<li>the photographs or description appear copied from another listing</li>
<li>the landlord refuses temporary-address registration</li>
</ul>
<p>Do not send a passport scan to an unknown person before verifying the offer. When a copy is genuinely needed, ask why and how it will be stored.</p>
<h2 id="5-why-the-contract-and-address-matter-for-residence-procedures">5. Why the contract and address matter for residence procedures</h2>
<p>Accommodation is not only about having a place to sleep. Your address may also be needed for immigration and administrative procedures.</p>
<p>Depending on your entry and application route, an embassy or authority may request proof of accommodation. After receiving a temporary residence permit, foreigners must register their temporary address in Slovenia within the applicable deadline. Official guidance currently states that the temporary residence should generally be registered within eight days after the residence permit is delivered.</p>
<p>Before signing, ask the landlord directly:</p>
<aside class="guide-box guide-box--warning">
<p>Will you provide a rental contract or owners statement and allow me to register my temporary residence at this address?</p>
</aside>
<p>Avoid accommodation where the landlord refuses <strong>prijava začasnega prebivališča</strong>. Even if the room looks good, this can create serious problems with residence registration, official mail, banking, tax procedures, and other student administration.</p>
<p>Keep copies of the signed rental contract, proof of deposit and rent payments, any landlord statement, the temporary-address registration confirmation, photographs of the room at move-in, and an inventory of furniture and existing damage.</p>
<h2 id="6-need-more-help">6. Need more help?</h2>
<p>For detailed information about dormitory eligibility, private rental contracts, temporary-address registration, city differences, and accommodation scams, read the MSOS Student Welcome Guide.</p>
<p>Read more on the <a href="../../../en/student-welcome-guide/student-accommodation/">accommodation page of the Student Welcome Guide</a>.</p>
<p>MSOS can share student experience and help you understand where to look, but the university, landlord, upravna enota, or other responsible institution must confirm your individual administrative requirements.</p>
<h2 id="sources">Sources</h2>
<ul>
<li><a href="https://studyinslovenia.si/live/accomodation/" target="_blank" rel="noopener">Study in Slovenia, Accommodation</a></li>
<li><a href="https://www.uni-lj.si/en/study/international-students/accommodation-transport-and-cost-of-living" target="_blank" rel="noopener">University of Ljubljana, Accommodation, transport and cost of living</a></li>
<li><a href="https://www.erasmusplus.um.si/international-students/useful-information/accomodation/" target="_blank" rel="noopener">University of Maribor, Accommodation for international students</a></li>
<li><a href="https://welcome.upr.si/student/live/accommodation/" target="_blank" rel="noopener">University of Primorska, Accommodation</a></li>
<li><a href="https://ung.si/sl/studij/studentski-vodnik/" target="_blank" rel="noopener">University of Nova Gorica, Student Guide</a></li>
<li><a href="https://infotujci.si/vsebina/drzavljani-izven-eu/nastanitev/nastanitev-in-prijava-zacasnega-ali-stalnega-prebivalisca/" target="_blank" rel="noopener">InfoTujci, Accommodation and registration of residence</a></li>
<li><a href="https://e-uprava.gov.si/si/podrocja/osebni-dokumenti-potrdila-selitev/selitev-prijava-odjava-prebivalisca/obveznosti-stanodajalca-pri-prijavi-ali-odjavi-zacasnega-prebivalisca-.html" target="_blank" rel="noopener">eUprava, Temporary-residence registration responsibilities</a></li>
<li><a href="https://www.nepremicnine.net/" target="_blank" rel="noopener">Nepremicnine.net</a></li>
<li><a href="https://www.bolha.com/nepremicnine" target="_blank" rel="noopener">Bolha</a></li>
<li><a href="https://www.mojcimer.si/" target="_blank" rel="noopener">Mojcimer</a></li>
<li><a href="https://www.mkvadrat.si/" target="_blank" rel="noopener">m2</a></li>
<li><a href="https://kamrica.dostop.si/" target="_blank" rel="noopener">Kamrica</a></li>
</ul>
<p class="guide-last-checked">Last checked: 3 August 2026</p>
</div>
<footer class="article-footer">
<hr>
<div class="author-share-section">
<div class="author-details">
<img width="150" height="150" loading="lazy" decoding="async" src="../../../images/msos-emblem-avatar.png" alt="MSOS emblem">
<div class="author-text">
<p class="author-name">MSOS Team</p>
<p class="author-title">Macedonian Student Organisation in Slovenia</p>
</div>
</div>
<div class="share-buttons">
<button class="btn btn-secondary"><i class="fas fa-link"></i> Copy link</button>
<a href="#" class="social-icon-btn" aria-label="Share on Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-icon-btn" aria-label="Share on LinkedIn"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</footer>
</article>
</div>
<section class="newsletter-cta">
<div class="container">
<div class="cta-content">
<h2>Never miss an MSOS update</h2>
<p>News, announcements and open calls, straight to your inbox.</p>
<form class="subscribe-form-bottom">
<div class="input-wrapper">
<input type="email" placeholder="Enter your email" aria-label="Email address">
</div>
<button type="submit" class="btn btn-primary-orange">Subscribe</button>
</form>
<p class="privacy-note">We care about your data in our <a href="../../../en/privacy-policy/">privacy policy</a></p>
</div>
</div>
</section>
</main>
<!-- START_FOOTER -->
<footer>
<div class="footer-container">
<div class="footer-main">
<div class="footer-info">
<div class="footer-logo">
<img loading="lazy" decoding="async" src="../../../images/msos-logo-white-en.svg" alt="Macedonian Student Organisation in Slovenia Logo">
</div>
<p class="footer-legal-name">Društvo Makedonska Študentska Organizacija v Sloveniji za študentsko podporo in kulturno sodelovanje</p>
<p>
Masarykova cesta 24<br>
1000 Ljubljana, Slovenia<br>
<a href="mailto:info@msosorg.com">info@msosorg.com</a>
</p>
<div class="social-icons">
<a href="https://www.facebook.com/msos.org" aria-label="Facebook" target="_blank" rel="noopener"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/msosorg_com" aria-label="Instagram" target="_blank" rel="noopener"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/msos-org" aria-label="LinkedIn" target="_blank" rel="noopener"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.youtube.com/@msosorg" aria-label="YouTube" target="_blank" rel="noopener"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
<div class="links-column">
<h4>Student guide</h4>
<a href="../../../en/student-welcome-guide/">Student welcome guide</a>
<a href="../../../en/student-welcome-guide/complete-student-journey/">The whole journey</a>
<a href="../../../en/student-welcome-guide/application-deadlines/">Application deadlines</a>
<a href="../../../en/student-welcome-guide/evs-application-guide/">Apply through eVŠ</a>
<a href="../../../en/student-welcome-guide/student-residence-permit/">Residence permit</a>
<a href="../../../en/student-welcome-guide/student-accommodation/">Accommodation</a>
</div>
<div class="links-column">
<h4>Explore</h4>
<a href="../../../en/get-to-know-slovenia/">Get to know Slovenia</a>
<a href="../../../en/get-to-know-macedonia/">Get to know Macedonia</a>
<a href="../../../en/projects/">Projects and events</a>
</div>
<div class="links-column">
<h4>Organisation</h4>
<a href="../../../en/about-us/">About us</a>
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a>
</div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div>
</div>
<hr>
<div class="footer-bottom">
<p>© 2026 MSOS. All rights reserved.</p>
<div class="legal-links">
<a href="../../../en/privacy-policy/">Privacy policy</a>
<a href="../../../en/cookie-policy/">Cookie policy</a>
<a href="../../../en/legal/">Official information</a>
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div>
</div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div>
</div>
</footer>
<!-- END_FOOTER -->
<script src="../../../main.js"></script>
<link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script>
</body>
</html>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -293,6 +293,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -305,6 +312,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -509,6 +509,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -521,6 +528,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -22,7 +22,7 @@
gtag('config', 'G-WVYV807VSS'); gtag('config', 'G-WVYV807VSS');
</script> </script>
<script src="/consent.js" defer></script> <script src="/consent.js" defer></script>
<meta name="description" content="Short answers to the questions Macedonian students ask most about studying and living in Slovenia, applications, residence, work, housing and more."> <meta name="description" content="A look back at the events, gatherings and moments that make the MSOS community — browse photo albums from Macedonian student life in Slovenia.">
<link rel="canonical" href="https://msosorg.com/en/gallery/"> <link rel="canonical" href="https://msosorg.com/en/gallery/">
<link rel="alternate" hreflang="en" href="https://msosorg.com/en/gallery/"> <link rel="alternate" hreflang="en" href="https://msosorg.com/en/gallery/">
<link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/gallery/"> <link rel="alternate" hreflang="mk" href="https://msosorg.com/mk/gallery/">
@ -31,7 +31,7 @@
<meta property="og:type" content="website"> <meta property="og:type" content="website">
<meta property="og:site_name" content="Macedonian Student Organisation in Slovenia"> <meta property="og:site_name" content="Macedonian Student Organisation in Slovenia">
<meta property="og:title" content="Gallery - MSOS"> <meta property="og:title" content="Gallery - MSOS">
<meta property="og:description" content="Short answers to the questions Macedonian students ask most about studying and living in Slovenia, applications, residence, work, housing and more."> <meta property="og:description" content="A look back at the events, gatherings and moments that make the MSOS community — browse photo albums from Macedonian student life in Slovenia.">
<meta property="og:url" content="https://msosorg.com/en/gallery/"> <meta property="og:url" content="https://msosorg.com/en/gallery/">
<meta property="og:image" content="https://msosorg.com/images/og-default.jpg"> <meta property="og:image" content="https://msosorg.com/images/og-default.jpg">
<meta property="og:locale" content="en_GB"> <meta property="og:locale" content="en_GB">
@ -39,7 +39,7 @@
<meta property="og:locale:alternate" content="sl_SI"> <meta property="og:locale:alternate" content="sl_SI">
<meta name="twitter:card" content="summary_large_image"> <meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Gallery - MSOS"> <meta name="twitter:title" content="Gallery - MSOS">
<meta name="twitter:description" content="Short answers to the questions Macedonian students ask most about studying and living in Slovenia, applications, residence, work, housing and more."> <meta name="twitter:description" content="A look back at the events, gatherings and moments that make the MSOS community — browse photo albums from Macedonian student life in Slovenia.">
<meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg"> <meta name="twitter:image" content="https://msosorg.com/images/og-default.jpg">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script> <script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Macedonian Student Organisation in Slovenia","alternateName":"MSOS","url":"https://msosorg.com/en/","logo":"https://msosorg.com/images/1-logo.png","email":"info@msosorg.com","address":{"@type":"PostalAddress","streetAddress":"Masarykova cesta 24","postalCode":"1000","addressLocality":"Ljubljana","addressCountry":"SI"},"sameAs":["https://www.facebook.com/msos.org","https://www.instagram.com/msosorg_com","https://www.linkedin.com/company/msos-org","https://www.youtube.com/@msosorg"]}</script>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96"> <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -208,6 +208,7 @@
</div> </div>
<div class="album-info"> <div class="album-info">
<h3>Meet Student Slovenia 2024</h3> <h3>Meet Student Slovenia 2024</h3>
<p class="album-date"><i class="far fa-calendar" aria-hidden="true"></i> 16.09.2024</p>
<p class="album-meta"><span>12 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p> <p class="album-meta"><span>12 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p>
</div> </div>
</a> </a>
@ -221,6 +222,7 @@
</div> </div>
<div class="album-info"> <div class="album-info">
<h3>Meet Student Slovenia 2023</h3> <h3>Meet Student Slovenia 2023</h3>
<p class="album-date"><i class="far fa-calendar" aria-hidden="true"></i> 18.09.2023</p>
<p class="album-meta"><span>10 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p> <p class="album-meta"><span>10 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p>
</div> </div>
</a> </a>
@ -234,6 +236,7 @@
</div> </div>
<div class="album-info"> <div class="album-info">
<h3>Humanitarian Tournament in Maribor</h3> <h3>Humanitarian Tournament in Maribor</h3>
<p class="album-date"><i class="far fa-calendar" aria-hidden="true"></i> 05.04.2025</p>
<p class="album-meta"><span>10 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p> <p class="album-meta"><span>10 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p>
</div> </div>
</a> </a>
@ -247,6 +250,7 @@
</div> </div>
<div class="album-info"> <div class="album-info">
<h3>Macedonian Student Night in Ljubljana</h3> <h3>Macedonian Student Night in Ljubljana</h3>
<p class="album-date"><i class="far fa-calendar" aria-hidden="true"></i> 08.10.2022</p>
<p class="album-meta"><span>7 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p> <p class="album-meta"><span>7 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p>
</div> </div>
</a> </a>
@ -260,6 +264,7 @@
</div> </div>
<div class="album-info"> <div class="album-info">
<h3>Paint &amp; Wine at Sunset</h3> <h3>Paint &amp; Wine at Sunset</h3>
<p class="album-date"><i class="far fa-calendar" aria-hidden="true"></i> 08.03.2025</p>
<p class="album-meta"><span>9 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p> <p class="album-meta"><span>9 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p>
</div> </div>
</a> </a>
@ -273,6 +278,7 @@
</div> </div>
<div class="album-info"> <div class="album-info">
<h3>Watching Handball Together in Slovenia</h3> <h3>Watching Handball Together in Slovenia</h3>
<p class="album-date"><i class="far fa-calendar" aria-hidden="true"></i> 25.01.2025</p>
<p class="album-meta"><span>7 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p> <p class="album-meta"><span>7 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p>
</div> </div>
</a> </a>
@ -286,6 +292,7 @@
</div> </div>
<div class="album-info"> <div class="album-info">
<h3>Morning Coffee in front of CTK</h3> <h3>Morning Coffee in front of CTK</h3>
<p class="album-date"><i class="far fa-calendar" aria-hidden="true"></i> 08.06.2024</p>
<p class="album-meta"><span>7 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p> <p class="album-meta"><span>7 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p>
</div> </div>
</a> </a>
@ -299,6 +306,7 @@
</div> </div>
<div class="album-info"> <div class="album-info">
<h3>In Memory of Frosina Kulakova</h3> <h3>In Memory of Frosina Kulakova</h3>
<p class="album-date"><i class="far fa-calendar" aria-hidden="true"></i> 08.02.2025</p>
<p class="album-meta"><span>3 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p> <p class="album-meta"><span>3 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p>
</div> </div>
</a> </a>
@ -312,6 +320,7 @@
</div> </div>
<div class="album-info"> <div class="album-info">
<h3>In Memory of the Kochani Victims</h3> <h3>In Memory of the Kochani Victims</h3>
<p class="album-date"><i class="far fa-calendar" aria-hidden="true"></i> 21.03.2025</p>
<p class="album-meta"><span>4 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p> <p class="album-meta"><span>4 photos</span><span class="dot" aria-hidden="true"></span><span class="read-link">Read the story</span></p>
</div> </div>
</a> </a>
@ -362,6 +371,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -374,6 +390,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -370,6 +370,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -382,6 +389,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -376,6 +376,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -388,6 +395,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -343,6 +343,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -355,6 +362,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -376,6 +376,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -388,6 +395,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -368,6 +368,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -380,6 +387,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -358,6 +358,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -370,6 +377,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -355,6 +355,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -367,6 +374,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -360,6 +360,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -372,6 +379,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -343,6 +343,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -355,6 +362,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -356,6 +356,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -368,6 +375,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -350,6 +350,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -362,6 +369,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -377,6 +377,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -389,6 +396,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -362,6 +362,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -374,6 +381,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -333,6 +333,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -345,6 +352,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -77,8 +77,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../en/about-us/">About Us</a></li>
<li><a href="../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../en/about-us/">Our team</a></li>
<li><a href="../en/msos-hub/">MSOS Hub</a></li> <li><a href="../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -136,8 +136,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../en/about-us/">About Us</a></li>
<li><a href="../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../en/about-us/">Our team</a></li>
<li><a href="../en/msos-hub/">MSOS Hub</a></li> <li><a href="../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -307,36 +307,38 @@
<p>What is new at MSOS, from events and projects to blog stories and announcements.</p> <p>What is new at MSOS, from events and projects to blog stories and announcements.</p>
</div> </div>
<div class="news-articles"> <div class="news-articles">
<article class="news-card" data-type="news"> <!-- AUTO-LATEST-NEWS:START -->
<a class="news-card-media" href="../en/news/proof-of-means-updated-2026/"> <article class="news-card" data-type="blog">
<img width="1600" height="1067" src="../images/news-proof-of-means.webp" alt="Proof-of-means amount updated to €507,43 per month" loading="lazy"> <a class="news-card-media" href="/en/blog/welcome-days-slovenian-universities-2026-2027/">
<span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span> <img width="1600" height="1067" src="/images/event4-img-1.webp" alt="New students at a university welcome day in Slovenia" loading="lazy">
<span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a> </a>
<div class="card-content"> <div class="card-content">
<p class="author">1 August 2026</p> <p class="author">3 August 2026</p>
<h3><a href="../en/news/proof-of-means-updated-2026/">Proof-of-means amount updated to €507,43 per month</a></h3> <h3><a href="/en/blog/welcome-days-slovenian-universities-2026-2027/">Welcome Days for Bachelor's, Master's and Erasmus students in Slovenia</a></h3>
</div> </div>
</article> </article>
<article class="news-card" data-type="news"> <article class="news-card" data-type="blog">
<a class="news-card-media" href="../en/news/"> <a class="news-card-media" href="/en/blog/where-to-search-for-accommodation-in-slovenia/">
<div class="news-ph"><i class="fas fa-bullhorn" aria-hidden="true"></i></div> <img width="1600" height="1067" src="/images/event4-image2.webp" alt="Macedonian students settling into accommodation in Slovenia" loading="lazy">
<span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span> <span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a> </a>
<div class="card-content"> <div class="card-content">
<p class="author">15 July 2026</p> <p class="author">3 August 2026</p>
<h3><a href="../en/news/">Applications for the 2026/2027 academic year are open</a></h3> <h3><a href="/en/blog/where-to-search-for-accommodation-in-slovenia/">Where to search for student accommodation in Slovenia</a></h3>
</div> </div>
</article> </article>
<article class="news-card" data-type="news"> <article class="news-card" data-type="blog">
<a class="news-card-media" href="../en/news/"> <a class="news-card-media" href="/en/blog/ad-futura-scholarship-slovenia-2026/">
<div class="news-ph"><i class="fas fa-bullhorn" aria-hidden="true"></i></div> <img width="1600" height="1067" src="/images/event4-image2.webp" alt="Macedonian students together in Slovenia" loading="lazy">
<span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span> <span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a> </a>
<div class="card-content"> <div class="card-content">
<p class="author">5 July 2026</p> <p class="author">2 August 2026</p>
<h3><a href="../en/news/">Join our welcome week for new students</a></h3> <h3><a href="/en/blog/ad-futura-scholarship-slovenia-2026/">Study in Slovenia with an Ad futura Scholarship: Guide for Western Balkan Students in 2026</a></h3>
</div> </div>
</article> </article>
<!-- AUTO-LATEST-NEWS:END -->
</div> </div>
<a href="../en/news/" class="btn btn-secondary">See all</a> <a href="../en/news/" class="btn btn-secondary">See all</a>
</section> </section>
@ -509,6 +511,13 @@
<a href="../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -521,6 +530,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -75,8 +75,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -134,8 +134,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -222,6 +222,15 @@
<div class="legal-row"><span class="k">Email</span><span class="v"><a href="mailto:info@msosorg.com">info@msosorg.com</a></span></div> <div class="legal-row"><span class="k">Email</span><span class="v"><a href="mailto:info@msosorg.com">info@msosorg.com</a></span></div>
<div class="legal-row"><span class="k">Website</span><span class="v"><a href="https://msosorg.com" target="_blank" rel="noopener">www.msosorg.com</a></span></div> <div class="legal-row"><span class="k">Website</span><span class="v"><a href="https://msosorg.com" target="_blank" rel="noopener">www.msosorg.com</a></span></div>
</div> </div>
<div class="legal-card">
<h2>Website content &amp; liability</h2>
<div class="legal-prose">
<p>The information published on this website is provided by MSOS volunteers and students for general information and guidance only. While we try to keep it accurate and current, it may be incomplete, simplified, or out of date, and it does not constitute legal, financial, immigration, medical, or other professional advice.</p>
<p>For binding and up-to-date information you must always check the official sources and the competent institutions (for example universities, eVŠ, the administrative units, ministries, and the health and tax authorities). Decisions should not be based solely on this website.</p>
<p>MSOS accepts no liability for any loss, damage, misunderstanding, or consequence arising from the use of, or reliance on, information on this website, including any errors, omissions, or outdated content. By using this website you accept this.</p>
<p>We are, however, always glad to help. If you notice anything that is wrong or outdated, please tell us through the &ldquo;Was this page helpful?&rdquo; section at the bottom of our guide pages, or email <a href="mailto:info@msosorg.com">info@msosorg.com</a>.</p>
</div>
</div>
<p class="legal-note">MSOS is a registered non-profit association in Slovenia. For invoices, sponsorship agreements or official correspondence, contact us at <a href="mailto:info@msosorg.com">info@msosorg.com</a>.</p> <p class="legal-note">MSOS is a registered non-profit association in Slovenia. For invoices, sponsorship agreements or official correspondence, contact us at <a href="mailto:info@msosorg.com">info@msosorg.com</a>.</p>
</div> </div>
</main> </main>
@ -268,6 +277,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -280,6 +296,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -74,8 +74,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -133,8 +133,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -231,44 +231,43 @@
<div class="hub-uses"> <div class="hub-uses">
<div class="hub-track"> <div class="hub-track">
<div class="hub-group"> <div class="hub-group">
<!-- NOTE: hub-use-img src values are temporary placeholders. Replace with the final photos. -->
<div class="hub-use"> <div class="hub-use">
<img width="1920" height="1317" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event3-photo-2.webp" alt="Cultural evening at the Hub"> <img width="1200" height="1600" class="hub-use-img" loading="lazy" decoding="async" src="../../images/hub-use-cultural.webp" alt="Cultural evening at the Hub">
<div class="hub-use-body"> <div class="hub-use-body">
<h3>Cultural &amp; niche events</h3> <h3>Cultural &amp; niche events</h3>
<p>Small cultural evenings, talks, exhibitions and community happenings.</p> <p>Small cultural evenings, talks, exhibitions and community happenings.</p>
</div> </div>
</div> </div>
<div class="hub-use"> <div class="hub-use">
<img width="1920" height="1280" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event4-image1.webp" alt="A celebration at the Hub"> <img width="461" height="827" class="hub-use-img" loading="lazy" decoding="async" src="../../images/hub-use-birthdays.webp" alt="A celebration at the Hub">
<div class="hub-use-body"> <div class="hub-use-body">
<h3>Birthdays &amp; celebrations</h3> <h3>Birthdays &amp; celebrations</h3>
<p>Host a birthday, a name day or any celebration with your friends.</p> <p>Host a birthday, a name day or any celebration with your friends.</p>
</div> </div>
</div> </div>
<div class="hub-use"> <div class="hub-use">
<img width="1920" height="1337" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event3-photo-5.webp" alt="Watching sports together at the Hub"> <img width="1200" height="1600" class="hub-use-img" loading="lazy" decoding="async" src="../../images/hub-use-sports.webp" alt="Watching sports together at the Hub">
<div class="hub-use-body"> <div class="hub-use-body">
<h3>Sports watching</h3> <h3>Sports watching</h3>
<p>Gather to cheer on the game together on the projector screen.</p> <p>Gather to cheer on the game together on the projector screen.</p>
</div> </div>
</div> </div>
<div class="hub-use"> <div class="hub-use">
<img width="1920" height="1341" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event3-photo-8.webp" alt="Music and dancing at the Hub"> <img width="1600" height="1200" class="hub-use-img" loading="lazy" decoding="async" src="../../images/hub-use-singing.webp" alt="Music and dancing at the Hub">
<div class="hub-use-body"> <div class="hub-use-body">
<h3>Singing &amp; dancing</h3> <h3>Singing &amp; dancing</h3>
<p>An evening of music, singing and dancing, with the piano right there.</p> <p>An evening of music, singing and dancing, with the piano right there.</p>
</div> </div>
</div> </div>
<div class="hub-use"> <div class="hub-use">
<img width="1920" height="1280" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event4-image3.webp" alt="A meeting at the Hub"> <img width="1200" height="1600" class="hub-use-img" loading="lazy" decoding="async" src="../../images/hub-use-meetings.webp" alt="A meeting at the Hub">
<div class="hub-use-body"> <div class="hub-use-body">
<h3>Meetings</h3> <h3>Meetings</h3>
<p>A quiet, equipped room for club, society or team meetings.</p> <p>A quiet, equipped room for club, society or team meetings.</p>
</div> </div>
</div> </div>
<div class="hub-use"> <div class="hub-use">
<img width="1317" height="877" class="hub-use-img" loading="lazy" decoding="async" src="../../images/event4-image5.webp" alt="Project work at the Hub"> <img width="1200" height="1600" class="hub-use-img" loading="lazy" decoding="async" src="../../images/hub-use-project.webp" alt="Project work at the Hub">
<div class="hub-use-body"> <div class="hub-use-body">
<h3>Project work</h3> <h3>Project work</h3>
<p>Space to focus, brainstorm on the whiteboard and get things done together.</p> <p>Space to focus, brainstorm on the whiteboard and get things done together.</p>
@ -306,12 +305,11 @@
<h2 class="hub-h2">A glimpse of the space</h2> <h2 class="hub-h2">A glimpse of the space</h2>
<p class="hub-sub">Photos of the finished Hub are on the way. For now, here is what we&rsquo;ll be showing.</p> <p class="hub-sub">Photos of the finished Hub are on the way. For now, here is what we&rsquo;ll be showing.</p>
</div> </div>
<!-- NOTE: hub-shot images are temporary placeholders. Replace with the final Hub photos. -->
<div class="hub-gallery"> <div class="hub-gallery">
<figure class="hub-shot"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event3-photo-1.webp" alt="A gathering at the Hub"></figure> <figure class="hub-shot"><img width="900" height="1600" loading="lazy" decoding="async" src="../../images/hub-shot-1.webp" alt="A gathering at the Hub"></figure>
<figure class="hub-shot"><img width="1920" height="1280" loading="lazy" decoding="async" src="../../images/event3-photo-3.webp" alt="An event in the Hub space"></figure> <figure class="hub-shot"><img width="900" height="1600" loading="lazy" decoding="async" src="../../images/hub-shot-2.webp" alt="An event in the Hub space"></figure>
<figure class="hub-shot"><img width="1425" height="950" loading="lazy" decoding="async" src="../../images/event4-image2.webp" alt="People together at the Hub"></figure> <figure class="hub-shot"><img width="1200" height="1600" loading="lazy" decoding="async" src="../../images/hub-shot-3.webp" alt="People together at the Hub"></figure>
<figure class="hub-shot"><img width="960" height="540" loading="lazy" decoding="async" src="../../images/event3-photo-9.webp" alt="A moment from an event at the Hub"></figure> <figure class="hub-shot"><img width="1200" height="1600" loading="lazy" decoding="async" src="../../images/hub-shot-4.webp" alt="A moment from an event at the Hub"></figure>
</div> </div>
</section> </section>
@ -385,6 +383,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -397,6 +402,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,182 +204,195 @@
<button type="button" class="newshub-chip" data-type="news">News</button> <button type="button" class="newshub-chip" data-type="news">News</button>
</div> </div>
<div class="newshub-grid"> <div class="newshub-grid">
<!-- AUTO-NEWS:START -->
<article class="newshub-card" data-type="blog">
<a class="newshub-media" href="/en/blog/welcome-days-slovenian-universities-2026-2027/">
<img width="1600" height="1067" src="/images/event4-img-1.webp" alt="New students at a university welcome day in Slovenia" loading="lazy">
<span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a>
<div class="newshub-body">
<p class="newshub-date">3 August 2026</p>
<h3><a href="/en/blog/welcome-days-slovenian-universities-2026-2027/">Welcome Days for Bachelor's, Master's and Erasmus students in Slovenia</a></h3>
<p class="newshub-excerpt">Starting university in another country is easier when you know where to go, who to ask, and what happens during the first days. Slovenias main universities…</p>
</div>
</article>
<article class="newshub-card" data-type="blog">
<a class="newshub-media" href="/en/blog/where-to-search-for-accommodation-in-slovenia/">
<img width="1600" height="1067" src="/images/event4-image2.webp" alt="Macedonian students settling into accommodation in Slovenia" loading="lazy">
<span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a>
<div class="newshub-body">
<p class="newshub-date">3 August 2026</p>
<h3><a href="/en/blog/where-to-search-for-accommodation-in-slovenia/">Where to search for student accommodation in Slovenia</a></h3>
<p class="newshub-excerpt">Finding accommodation is often one of the most stressful parts of moving to Slovenia, especially in Ljubljana and on the coast. The best approach is to begin…</p>
</div>
</article>
<article class="newshub-card" data-type="blog">
<a class="newshub-media" href="/en/blog/ad-futura-scholarship-slovenia-2026/">
<img width="1600" height="1067" src="/images/event4-image2.webp" alt="Macedonian students together in Slovenia" loading="lazy">
<span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a>
<div class="newshub-body">
<p class="newshub-date">2 August 2026</p>
<h3><a href="/en/blog/ad-futura-scholarship-slovenia-2026/">Study in Slovenia with an Ad futura Scholarship: Guide for Western Balkan Students in 2026</a></h3>
<p class="newshub-excerpt">Planning to continue your studies in Slovenia? Citizens of North Macedonia and several other Western Balkan countries can apply for an Ad futura scholarship…</p>
</div>
</article>
<article class="newshub-card" data-type="news"> <article class="newshub-card" data-type="news">
<a class="newshub-media" href="../../en/news/proof-of-means-updated-2026/"> <a class="newshub-media" href="/en/news/proof-of-means-updated-2026/">
<img width="1600" height="1067" src="../../images/news-proof-of-means.webp" alt="Proof-of-means amount updated to €507,43 per month" loading="lazy"> <img width="1600" height="1067" src="/images/news-proof-of-means.webp" alt="A cash box filled with euro coins and banknotes" loading="lazy">
<span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span> <span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span>
</a> </a>
<div class="newshub-body"> <div class="newshub-body">
<p class="newshub-date">1 August 2026</p> <p class="newshub-date">1 August 2026</p>
<h3><a href="../../en/news/proof-of-means-updated-2026/">Proof-of-means amount updated to €507,43 per month</a></h3> <h3><a href="/en/news/proof-of-means-updated-2026/">Proof-of-means amount updated to €507,43 per month</a></h3>
<p class="newshub-excerpt">Slovenias basic minimum income rose to €507,43 per month from 1 April 2026: the new figure to prove for a student residence permit.</p> <p class="newshub-excerpt">If you are applying for or renewing a student residence permit in Slovenia, you must prove you have enough money to support yourself. That requirement is tied…</p>
</div>
</article>
<article class="newshub-card" data-type="news">
<a class="newshub-media" href="../../en/news/">
<div class="news-ph"><i class="fas fa-bullhorn" aria-hidden="true"></i></div>
<span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span>
</a>
<div class="newshub-body">
<p class="newshub-date">15 July 2026</p>
<h3><a href="../../en/news/">Applications for the 2026/2027 academic year are open</a></h3>
<p class="newshub-excerpt">Key deadlines and steps for Macedonian applicants, in one place.</p>
</div>
</article>
<article class="newshub-card" data-type="news">
<a class="newshub-media" href="../../en/news/">
<div class="news-ph"><i class="fas fa-bullhorn" aria-hidden="true"></i></div>
<span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span>
</a>
<div class="newshub-body">
<p class="newshub-date">5 July 2026</p>
<h3><a href="../../en/news/">Join our welcome week for new students</a></h3>
<p class="newshub-excerpt">Meet other Macedonian students and get set up for your first semester.</p>
</div>
</article>
<article class="newshub-card" data-type="news">
<a class="newshub-media" href="../../en/news/">
<div class="news-ph"><i class="fas fa-bullhorn" aria-hidden="true"></i></div>
<span class="news-badge news-badge--news"><i class="fas fa-bullhorn" aria-hidden="true"></i> News</span>
</a>
<div class="newshub-body">
<p class="newshub-date">20 June 2026</p>
<h3><a href="../../en/news/">Summer office hours and how to reach us</a></h3>
<p class="newshub-excerpt">We are here through the summer for questions about moving and enrolment.</p>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="../../en/projects/in-memory-of-the-kochani-victims/">
<img width="720" height="480" src="../../images/kochani-1.webp" alt="In Memory of the Victims of the Kochani Tragedy" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">18 March 2025</p>
<h3><a href="../../en/projects/in-memory-of-the-kochani-victims/">In Memory of the Victims of the Kochani Tragedy</a></h3>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="../../en/projects/meet-student-slovenia-2024/">
<img width="1920" height="1280" src="../../images/event4-img-1.webp" alt="Meet Student Slovenia 2024" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">20 September 2024</p>
<h3><a href="../../en/projects/meet-student-slovenia-2024/">Meet Student Slovenia 2024</a></h3>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="../../en/projects/humanitarian-tournament-in-maribor/">
<img width="720" height="480" src="../../images/maribor-tournament-1.webp" alt="Humanitarian Sports Tournament: Playing with Heart, Together for Kočani" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">11 May 2024</p>
<h3><a href="../../en/projects/humanitarian-tournament-in-maribor/">Humanitarian Sports Tournament: Playing with Heart, Together for Kočani</a></h3>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="../../en/projects/macedonian-student-night-in-ljubljana/">
<img width="1430" height="757" src="../../images/msnl-1.webp" alt="Macedonian Student Night in Ljubljana" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">15 March 2024</p>
<h3><a href="../../en/projects/macedonian-student-night-in-ljubljana/">Macedonian Student Night in Ljubljana</a></h3>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="../../en/projects/watching-handball-together-in-slovenia/">
<img width="720" height="480" src="../../images/handball-2025-1.webp" alt="Cheering for Macedonia, Watching Handball Together in Slovenia" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">20 January 2024</p>
<h3><a href="../../en/projects/watching-handball-together-in-slovenia/">Cheering for Macedonia, Watching Handball Together in Slovenia</a></h3>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="../../en/projects/in-memory-of-frosina-kulakova/">
<img width="720" height="480" src="../../images/frosina-1.webp" alt="In Memory of Frosina Kulakova" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">10 November 2023</p>
<h3><a href="../../en/projects/in-memory-of-frosina-kulakova/">In Memory of Frosina Kulakova</a></h3>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="../../en/projects/meet-student-slovenia-2023/">
<img width="1920" height="1280" src="../../images/event3-photo-1.webp" alt="Meet Student Slovenia 2023" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">22 September 2023</p>
<h3><a href="../../en/projects/meet-student-slovenia-2023/">Meet Student Slovenia 2023</a></h3>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="../../en/projects/paint-and-wine-at-sunset/">
<img width="1600" height="1067" src="../../images/paint-wine-1.webp" alt="Paint &amp; Wine at Sunset, Celebrating Womens Day with Art &amp; Music" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">10 June 2023</p>
<h3><a href="../../en/projects/paint-and-wine-at-sunset/">Paint &amp; Wine at Sunset, Celebrating Womens Day with Art &amp; Music</a></h3>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="../../en/projects/morning-coffee-in-front-of-ctk/">
<img width="1920" height="1280" src="../../images/event4-image1.webp" alt="Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">5 May 2023</p>
<h3><a href="../../en/projects/morning-coffee-in-front-of-ctk/">Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles</a></h3>
</div> </div>
</article> </article>
<article class="newshub-card" data-type="blog"> <article class="newshub-card" data-type="blog">
<a class="newshub-media" href="../../en/blog/"> <a class="newshub-media" href="/en/blog/how-to-open-slovenian-bank-account/">
<div class="news-ph"><i class="fas fa-pen-nib" aria-hidden="true"></i></div> <img width="6048" height="4024" src="/images/blog-slovenian-bank-account.webp" alt="International student using mobile banking after opening a Slovenian bank account" loading="lazy">
<span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span> <span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a> </a>
<div class="newshub-body"> <div class="newshub-body">
<p class="newshub-date">Coming soon</p> <p class="newshub-date">1 August 2026</p>
<h3><a href="../../en/blog/">Your first two weeks in Ljubljana</a></h3> <h3><a href="/en/blog/how-to-open-slovenian-bank-account/">How to open a Slovenian bank account as an international student</a></h3>
<p class="newshub-excerpt">A practical guide for Macedonian students: the documents you need, how to choose a bank, using Flik, and keeping your details up to date after you open the account.</p>
</div> </div>
</article> </article>
<article class="newshub-card" data-type="blog"> <article class="newshub-card" data-type="blog">
<a class="newshub-media" href="../../en/blog/"> <a class="newshub-media" href="/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/">
<div class="news-ph"><i class="fas fa-pen-nib" aria-hidden="true"></i></div> <img width="1600" height="1067" src="/images/event3-photo-1.webp" alt="Students at a university event" loading="lazy">
<span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span> <span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a> </a>
<div class="newshub-body"> <div class="newshub-body">
<p class="newshub-date">Coming soon</p> <p class="newshub-date">30 July 2026</p>
<h3><a href="../../en/blog/">How to open a Slovenian bank account</a></h3> <h3><a href="/en/blog/study-in-north-macedonia-government-scholarship-2026-2027/">Study in North Macedonia with a Government Scholarship: 2026/2027 Guide</a></h3>
<p class="newshub-excerpt">Are you a foreign citizen of Macedonian origin living in Slovenia or another eligible country? The Ministry of Education and Science of North Macedonia is…</p>
</div> </div>
</article> </article>
<article class="newshub-card" data-type="blog"> <article class="newshub-card" data-type="blog">
<a class="newshub-media" href="../../en/blog/"> <a class="newshub-media" href="/en/blog/learning-slovene-where-to-start/">
<div class="news-ph"><i class="fas fa-pen-nib" aria-hidden="true"></i></div> <img width="1600" height="1067" src="/images/msnl-2.webp" alt="Macedonian students practising Slovene together" loading="lazy">
<span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span> <span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a> </a>
<div class="newshub-body"> <div class="newshub-body">
<p class="newshub-date">Coming soon</p> <p class="newshub-date">28 July 2026</p>
<h3><a href="../../en/blog/">Surviving your first exam period</a></h3> <h3><a href="/en/blog/learning-slovene-where-to-start/">Learning Slovene: Where to Start</a></h3>
<p class="newshub-excerpt">Moving to Slovenia for your studies? You do not need to speak perfect Slovene before arriving, but learning the basics early will make university…</p>
</div> </div>
</article> </article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="/en/projects/humanitarian-tournament-in-maribor/">
<img width="720" height="480" src="/images/maribor-tournament-1.webp" alt="The MSOS Maribor team at the humanitarian sports tournament" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">5 April 2025</p>
<h3><a href="/en/projects/humanitarian-tournament-in-maribor/">Humanitarian Sports Tournament: Playing with Heart, Together for Kočani</a></h3>
<p class="newshub-excerpt">Over 200 students gathered in Maribor, raising €1.000 through sport to support families hit by the Kočani tragedy.</p>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="/en/projects/in-memory-of-the-kochani-victims/">
<img width="720" height="480" src="/images/kochani-1.webp" alt="Candles and flowers at Kongresni trg in memory of the Kochani victims" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">21 March 2025</p>
<h3><a href="/en/projects/in-memory-of-the-kochani-victims/">In Memory of the Victims of the Kochani Tragedy</a></h3>
<p class="newshub-excerpt">On March 21, 2025, more than 600 people gathered at Kongresni trg in Ljubljana for a peaceful public gathering to honor the victims of the tragic fire in Kochani.</p>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="/en/projects/paint-and-wine-at-sunset/">
<img width="1600" height="1067" src="/images/paint-wine-1.webp" alt="Paint &amp; Wine at Sunset event in Gorizia" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">8 March 2025</p>
<h3><a href="/en/projects/paint-and-wine-at-sunset/">Paint &amp; Wine at Sunset, Celebrating Womens Day with Art &amp; Music</a></h3>
<p class="newshub-excerpt">Paint, wine, and music brought students together in Gorizia to celebrate Womens Day and mark the first MSOS Nova Gorica event.</p>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="/en/projects/in-memory-of-frosina-kulakova/">
<img width="720" height="480" src="/images/frosina-1.webp" alt="Candles and flowers in memory of Frosina Kulakova" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">8 February 2025</p>
<h3><a href="/en/projects/in-memory-of-frosina-kulakova/">In Memory of Frosina Kulakova</a></h3>
<p class="newshub-excerpt">On February 8, 2025, Macedonian students in Ljubljana gathered for a peaceful public event to honor the memory of Frosina Kulakova, who tragically lost her…</p>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="/en/projects/watching-handball-together-in-slovenia/">
<img width="720" height="480" src="/images/handball-2025-1.webp" alt="Fan atmosphere while watching handball in Maribor" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">25 January 2025</p>
<h3><a href="/en/projects/watching-handball-together-in-slovenia/">Cheering for Macedonia, Watching Handball Together in Slovenia</a></h3>
<p class="newshub-excerpt">From Ljubljana to Maribor, Macedonian students filled cafés with chants, flags, and laughter while watching the national handball team.</p>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="/en/projects/meet-student-slovenia-2024/">
<img width="1920" height="1280" src="/images/event4-img-1.webp" alt="A group of students at the 'Meet Student Slovenia 2024' event" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">16 September 2024</p>
<h3><a href="/en/projects/meet-student-slovenia-2024/">Meet Student Slovenia 2024</a></h3>
<p class="newshub-excerpt">When student stories turn into the first step towards a new home.</p>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="/en/projects/morning-coffee-in-front-of-ctk/">
<img width="1920" height="1280" src="/images/event4-image1.webp" alt="Students enjoying coffee and burek in front of CTK library." loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">8 June 2024</p>
<h3><a href="/en/projects/morning-coffee-in-front-of-ctk/">Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles</a></h3>
<p class="newshub-excerpt">When exams somehow become easier with Saturday morning coffee, burek, and good company in at CTK!</p>
</div>
</article>
<article class="newshub-card" data-type="blog">
<a class="newshub-media" href="/en/blog/how-i-coped-with-leaving-home/">
<img width="1600" height="1067" src="/images/event3-photo-8.webp" alt="A student reflecting after moving abroad to study" loading="lazy">
<span class="news-badge news-badge--blog"><i class="fas fa-pen-nib" aria-hidden="true"></i> Blog</span>
</a>
<div class="newshub-body">
<p class="newshub-date">24 April 2024</p>
<h3><a href="/en/blog/how-i-coped-with-leaving-home/">How I coped with leaving home</a></h3>
<p class="newshub-excerpt">Arriving at the end of your secondary education, with a modest eighteen years behind you, you have to decide where to continue your studies. Will you stay in…</p>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="/en/projects/meet-student-slovenia-2023/">
<img width="1920" height="1280" src="/images/event3-photo-1.webp" alt="Panel discussion at the 'Meet Student Slovenia 2023' event" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">18 September 2023</p>
<h3><a href="/en/projects/meet-student-slovenia-2023/">Meet Student Slovenia 2023</a></h3>
<p class="newshub-excerpt">Through honest first-hand stories, future students received support for their first step towards their new home.</p>
</div>
</article>
<article class="newshub-card" data-type="project">
<a class="newshub-media" href="/en/projects/macedonian-student-night-in-ljubljana/">
<img width="1430" height="757" src="/images/msnl-1.webp" alt="Atmosphere from the Macedonian Student Night in Ljubljana" loading="lazy">
<span class="news-badge news-badge--project"><i class="fas fa-calendar-day" aria-hidden="true"></i> Event</span>
</a>
<div class="newshub-body">
<p class="newshub-date">8 October 2022</p>
<h3><a href="/en/projects/macedonian-student-night-in-ljubljana/">Macedonian Student Night in Ljubljana</a></h3>
<p class="newshub-excerpt">From an idea to a party with 500 students, that&#x27;s how our story began!</p>
</div>
</article>
<!-- AUTO-NEWS:END -->
</div> </div>
<nav class="pagination newshub-pagination" data-page-size="9" hidden> <nav class="pagination newshub-pagination" data-page-size="9" hidden>
<button type="button" class="pagination-arrow" data-nav="prev"><i class="fas fa-arrow-left" aria-hidden="true"></i> Previous</button> <button type="button" class="pagination-arrow" data-nav="prev"><i class="fas fa-arrow-left" aria-hidden="true"></i> Previous</button>
@ -447,6 +460,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -459,6 +479,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>
@ -468,6 +489,7 @@
<!-- END_FOOTER --> <!-- END_FOOTER -->
<script src="../../main.js"></script> <script src="../../main.js"></script>
<script src="../../news-filter.js"></script> <script src="../../news-filter.js"></script>
<script src="../../filter-search.js"></script>
<link rel="stylesheet" href="/assistant.css"> <link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script> <script src="/assistant.js" defer></script>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -200,7 +200,7 @@
<p class="news-article-date">Published 1 August 2026</p> <p class="news-article-date">Published 1 August 2026</p>
<figure class="news-article-hero"> <figure class="news-article-hero">
<img width="1600" height="1067" fetchpriority="high" src="../../../images/news-proof-of-means.webp" alt="A cash box filled with euro coins and banknotes"> <img width="1600" height="1067" fetchpriority="high" src="../../../images/news-proof-of-means.webp" alt="A cash box filled with euro coins and banknotes">
<figcaption>Image by <a href="https://pixabay.com/users/alexas_fotos-686414/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1642989" target="_blank" rel="noopener">Alexa</a> from <a href="https://pixabay.com/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1642989" target="_blank" rel="noopener">Pixabay</a></figcaption> <figcaption><span class="fig-illustrative"><i class="fas fa-circle-info" aria-hidden="true"></i> Illustrative image</span> &middot; Image by <a href="https://pixabay.com/users/alexas_fotos-686414/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1642989" target="_blank" rel="noopener">Alexa</a> from <a href="https://pixabay.com/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1642989" target="_blank" rel="noopener">Pixabay</a></figcaption>
</figure> </figure>
<div class="news-article-body"> <div class="news-article-body">
<p>If you are applying for or renewing a student residence permit in Slovenia, you must prove you have enough money to support yourself. That requirement is tied to Slovenias basic minimum income (osnovni znesek minimalnega dohodka).</p> <p>If you are applying for or renewing a student residence permit in Slovenia, you must prove you have enough money to support yourself. That requirement is tied to Slovenias basic minimum income (osnovni znesek minimalnega dohodka).</p>
@ -273,6 +273,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -285,6 +292,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -336,6 +336,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -348,6 +355,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -193,7 +193,36 @@
<!-- END_HEADER --> <!-- END_HEADER -->
<main class="article-page"> <main class="article-page">
<article class="article-container"> <!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">Humanitarian Sports Tournament: Playing with Heart, Together for Kočani</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links"></ul>
</div>
</div>
<div class="article-layout-container">
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#section-1" class="active">A day full of energy</a></li>
<li><a href="#section-2">More than just a tournament</a></li>
<li><a href="#section-3">The humanitarian impact</a></li>
<li><a href="#section-4">Why it mattered</a></li>
<li><a href="#section-5">Acknowledgments and thanks</a></li>
</ul>
</nav>
<div class="sidebar-cta">
<p class="sidebar-cta-title">Like what we do?</p>
<a class="sidebar-cta-btn" href="../../../en/become-a-member/">Become a member</a>
<p class="sidebar-cta-note">Or <a href="../../../en/support/">support MSOS</a> so we can create even more moments like this.</p>
</div>
</aside>
<article class="article-container">
<header class="article-header"> <header class="article-header">
<p class="article-publish-date">Published on April 5, 2025</p> <p class="article-publish-date">Published on April 5, 2025</p>
<h1>Humanitarian Sports Tournament: Playing with Heart, Together for Kočani</h1> <h1>Humanitarian Sports Tournament: Playing with Heart, Together for Kočani</h1>
@ -212,7 +241,7 @@
<figcaption>A snapshot of the MSOS Maribor team.</figcaption> <figcaption>A snapshot of the MSOS Maribor team.</figcaption>
</figure> </figure>
<h2>A day full of energy</h2> <h2 id="section-1">A day full of energy</h2>
<p>The event took place at the Leon Štukelj Sports Hall, which came alive with cheering, laughter, and the sound of basketballs and futsal balls bouncing across the courts. From the very beginning, you could feel that this was not just about competition. It was about community.</p> <p>The event took place at the Leon Štukelj Sports Hall, which came alive with cheering, laughter, and the sound of basketballs and futsal balls bouncing across the courts. From the very beginning, you could feel that this was not just about competition. It was about community.</p>
@ -228,7 +257,7 @@
<figcaption>Students giving their all on the futsal court, turning competition into energy, laughter, and unforgettable moments.</figcaption> <figcaption>Students giving their all on the futsal court, turning competition into energy, laughter, and unforgettable moments.</figcaption>
</figure> </figure>
<h2>More than just a tournament</h2> <h2 id="section-2">More than just a tournament</h2>
<p>The matches lasted over six hours, and the atmosphere never slowed down. Friends came to support their teams, music kept the hall lively, and there was always someone explaining the background to newcomers: "We are doing this for Kočani." That constant reminder turned every point scored into something bigger than sports.</p> <p>The matches lasted over six hours, and the atmosphere never slowed down. Friends came to support their teams, music kept the hall lively, and there was always someone explaining the background to newcomers: "We are doing this for Kočani." That constant reminder turned every point scored into something bigger than sports.</p>
@ -244,7 +273,7 @@
<figcaption>Warming up before the basketball games, both mens and womens teams getting ready for action.</figcaption> <figcaption>Warming up before the basketball games, both mens and womens teams getting ready for action.</figcaption>
</figure> </figure>
<h2>The humanitarian impact</h2> <h2 id="section-3">The humanitarian impact</h2>
<p>The most important result was not on the scoreboard but in the donations box. Together, we raised €1.010, which was split between two Macedonian families whose children were undergoing treatment in Slovenia. It was not just money. It was a message that they were not alone, that the student community stood with them during the hardest of times.</p> <p>The most important result was not on the scoreboard but in the donations box. Together, we raised €1.010, which was split between two Macedonian families whose children were undergoing treatment in Slovenia. It was not just money. It was a message that they were not alone, that the student community stood with them during the hardest of times.</p>
@ -253,7 +282,7 @@
<figcaption>High-fives, trophies, and smiles, celebrating victory on and off the court.</figcaption> <figcaption>High-fives, trophies, and smiles, celebrating victory on and off the court.</figcaption>
</figure> </figure>
<h2>Why it mattered</h2> <h2 id="section-4">Why it mattered</h2>
<p>For MSOS, this tournament was more than a one-day event. It showed that our community has the strength to respond to challenges with compassion and action. We proved that student life is not only about lectures and exams, or even about parties and fun. It can also be about solidarity, empathy, and humanity.</p> <p>For MSOS, this tournament was more than a one-day event. It showed that our community has the strength to respond to challenges with compassion and action. We proved that student life is not only about lectures and exams, or even about parties and fun. It can also be about solidarity, empathy, and humanity.</p>
@ -264,7 +293,7 @@
<figcaption>A memorable moment with the organizing team and the victorious basketball and futsal squads.</figcaption> <figcaption>A memorable moment with the organizing team and the victorious basketball and futsal squads.</figcaption>
</figure> </figure>
<h2>Acknowledgments and thanks</h2> <h2 id="section-5">Acknowledgments and thanks</h2>
<p>The tournament would not have been possible without the support of our partners and community. We are grateful to the University of Maribor for providing the entire Leon Štukelj Sports Hall free of charge, to Macedonia Trade for taking care of the refreshments and gifts for the winning teams, and to Radenska for supplying water for all participants.</p> <p>The tournament would not have been possible without the support of our partners and community. We are grateful to the University of Maribor for providing the entire Leon Štukelj Sports Hall free of charge, to Macedonia Trade for taking care of the refreshments and gifts for the winning teams, and to Radenska for supplying water for all participants.</p>
@ -297,6 +326,17 @@
</div> </div>
</section> </section>
</article> </article>
</div>
<section class="article-support-cta">
<div class="asc-card">
<h3>Like what we do?</h3>
<p>Become a member or support MSOS so we can create even more moments like this.</p>
<div class="asc-actions">
<a class="btn btn-primary-orange" href="../../../en/become-a-member/">Become a member</a>
<a class="btn btn-secondary" href="../../../en/support/">Support MSOS</a>
</div>
</div>
</section>
<section class="newsletter-cta"> <section class="newsletter-cta">
<div class="container"> <div class="container">
<div class="cta-content"> <div class="cta-content">
@ -357,6 +397,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -369,6 +416,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -193,7 +193,28 @@
<!-- END_HEADER --> <!-- END_HEADER -->
<main class="article-page"> <main class="article-page">
<article class="article-container"> <!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">In Memory of Frosina Kulakova</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links"></ul>
</div>
</div>
<div class="article-layout-container">
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#section-1" class="active">A message of unity</a></li>
<li><a href="#section-2">Closing thoughts</a></li>
</ul>
</nav>
</aside>
<article class="article-container">
<header class="article-header"> <header class="article-header">
<p class="article-publish-date">Published on February 8, 2025</p> <p class="article-publish-date">Published on February 8, 2025</p>
<h1>In Memory of Frosina Kulakova</h1> <h1>In Memory of Frosina Kulakova</h1>
@ -211,7 +232,7 @@
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/frosina-2.webp" alt="Students lighting candles in memory of Frosina"> <img width="720" height="480" loading="lazy" decoding="async" src="../../../images/frosina-2.webp" alt="Students lighting candles in memory of Frosina">
</figure> </figure>
<h2>A message of unity</h2> <h2 id="section-1">A message of unity</h2>
<p>This gathering was not about politics or criticism. It was about togetherness, humanity, and shared responsibility. As students abroad, we wanted to show that we care, that we remember, and that we hope for a better tomorrow where such injustices will no longer happen.</p> <p>This gathering was not about politics or criticism. It was about togetherness, humanity, and shared responsibility. As students abroad, we wanted to show that we care, that we remember, and that we hope for a better tomorrow where such injustices will no longer happen.</p>
@ -221,7 +242,7 @@
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/frosina-3.webp" alt="Flowers and candles laid in remembrance"> <img width="720" height="480" loading="lazy" decoding="async" src="../../../images/frosina-3.webp" alt="Flowers and candles laid in remembrance">
</figure> </figure>
<h2>Closing thoughts</h2> <h2 id="section-2">Closing thoughts</h2>
<p>Frosinas story reminded us of the fragility of life and the importance of solidarity. We are grateful to all who came, who lit a candle, or who simply stood with us in silence.</p> <p>Frosinas story reminded us of the fragility of life and the importance of solidarity. We are grateful to all who came, who lit a candle, or who simply stood with us in silence.</p>
@ -239,6 +260,7 @@
</div> </div>
</section> </section>
</article> </article>
</div>
<section class="newsletter-cta"> <section class="newsletter-cta">
<div class="container"> <div class="container">
<div class="cta-content"> <div class="cta-content">
@ -299,6 +321,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -311,6 +340,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -193,7 +193,29 @@
<!-- END_HEADER --> <!-- END_HEADER -->
<main class="article-page"> <main class="article-page">
<article class="article-container"> <!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">In Memory of the Victims of the Kochani Tragedy</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links"></ul>
</div>
</div>
<div class="article-layout-container">
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#section-1" class="active">The gathering in Ljubljana</a></li>
<li><a href="#section-2">A message beyond borders</a></li>
<li><a href="#section-3">Closing words</a></li>
</ul>
</nav>
</aside>
<article class="article-container">
<header class="article-header"> <header class="article-header">
<p class="article-publish-date">Published on March 21, 2025</p> <p class="article-publish-date">Published on March 21, 2025</p>
<h1>In Memory of the Victims of the Kochani Tragedy</h1> <h1>In Memory of the Victims of the Kochani Tragedy</h1>
@ -213,7 +235,7 @@
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-2.webp" alt="Candlelight and flowers at the memorial gathering in Ljubljana"> <img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-2.webp" alt="Candlelight and flowers at the memorial gathering in Ljubljana">
</figure> </figure>
<h2>The gathering in Ljubljana</h2> <h2 id="section-1">The gathering in Ljubljana</h2>
<p>On March 21, the square in Ljubljana was filled with silence and candlelight. What began as an expectation of around 200 attendees grew into a gathering of more than 600 people of all ages. The program opened with a short address by the MSOS president, followed by a 16-minute silence to honor the victims, one minute for each March day leading up to the tragedy.</p> <p>On March 21, the square in Ljubljana was filled with silence and candlelight. What began as an expectation of around 200 attendees grew into a gathering of more than 600 people of all ages. The program opened with a short address by the MSOS president, followed by a 16-minute silence to honor the victims, one minute for each March day leading up to the tragedy.</p>
@ -223,7 +245,7 @@
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-3.webp" alt="A sea of candles and flowers left by attendees"> <img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-3.webp" alt="A sea of candles and flowers left by attendees">
</figure> </figure>
<h2>A message beyond borders</h2> <h2 id="section-2">A message beyond borders</h2>
<p>This gathering was a reminder that even away from home, students carry their roots, their compassion, and their voice for justice. It was not a promotional act but a human one, a sign that the new generation wants to build a future where solidarity and care define who we are.</p> <p>This gathering was a reminder that even away from home, students carry their roots, their compassion, and their voice for justice. It was not a promotional act but a human one, a sign that the new generation wants to build a future where solidarity and care define who we are.</p>
@ -233,7 +255,7 @@
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-4.webp" alt="Attendees standing together during the moment of silence"> <img width="720" height="480" loading="lazy" decoding="async" src="../../../images/kochani-4.webp" alt="Attendees standing together during the moment of silence">
</figure> </figure>
<h2>Closing words</h2> <h2 id="section-3">Closing words</h2>
<p>The tragedy in Kochani showed us how fragile life is, but also how strong we can be when we come together. In Ljubljana, the student community stood side by side, sending love and respect back home.</p> <p>The tragedy in Kochani showed us how fragile life is, but also how strong we can be when we come together. In Ljubljana, the student community stood side by side, sending love and respect back home.</p>
@ -250,6 +272,7 @@
</div> </div>
</section> </section>
</article> </article>
</div>
<section class="newsletter-cta"> <section class="newsletter-cta">
<div class="container"> <div class="container">
<div class="cta-content"> <div class="cta-content">
@ -310,6 +333,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -322,6 +352,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -404,6 +404,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -416,6 +423,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>
@ -425,6 +433,7 @@
<!-- END_FOOTER --> <!-- END_FOOTER -->
<script src="../../main.js"></script> <script src="../../main.js"></script>
<script src="../../filter-search.js"></script>
<link rel="stylesheet" href="/assistant.css"> <link rel="stylesheet" href="/assistant.css">
<script src="/assistant.js" defer></script> <script src="/assistant.js" defer></script>
</body> </body>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -219,6 +219,11 @@
<li><a href="#a-beginning">A Beginning to Remember</a></li> <li><a href="#a-beginning">A Beginning to Remember</a></li>
</ul> </ul>
</nav> </nav>
<div class="sidebar-cta">
<p class="sidebar-cta-title">Like what we do?</p>
<a class="sidebar-cta-btn" href="../../../en/become-a-member/">Become a member</a>
<p class="sidebar-cta-note">Or <a href="../../../en/support/">support MSOS</a> so we can create even more moments like this.</p>
</div>
</aside> </aside>
<article class="article-container"> <article class="article-container">
@ -331,6 +336,16 @@
</article> </article>
</div> </div>
<section class="article-support-cta">
<div class="asc-card">
<h3>Like what we do?</h3>
<p>Become a member or support MSOS so we can create even more moments like this.</p>
<div class="asc-actions">
<a class="btn btn-primary-orange" href="../../../en/become-a-member/">Become a member</a>
<a class="btn btn-secondary" href="../../../en/support/">Support MSOS</a>
</div>
</div>
</section>
<section class="newsletter-cta"> <section class="newsletter-cta">
<div class="container"> <div class="container">
<div class="cta-content"> <div class="cta-content">
@ -391,6 +406,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -403,6 +425,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -222,6 +222,11 @@
<li><a href="#see-you">See you in Slovenia!</a></li> <li><a href="#see-you">See you in Slovenia!</a></li>
</ul> </ul>
</nav> </nav>
<div class="sidebar-cta">
<p class="sidebar-cta-title">Like what we do?</p>
<a class="sidebar-cta-btn" href="../../../en/become-a-member/">Become a member</a>
<p class="sidebar-cta-note">Or <a href="../../../en/support/">support MSOS</a> so we can create even more moments like this.</p>
</div>
</aside> </aside>
<article class="article-container"> <article class="article-container">
@ -355,6 +360,16 @@
</article> </article>
</div> </div>
<section class="article-support-cta">
<div class="asc-card">
<h3>Like what we do?</h3>
<p>Become a member or support MSOS so we can create even more moments like this.</p>
<div class="asc-actions">
<a class="btn btn-primary-orange" href="../../../en/become-a-member/">Become a member</a>
<a class="btn btn-secondary" href="../../../en/support/">Support MSOS</a>
</div>
</div>
</section>
<section class="newsletter-cta"> <section class="newsletter-cta">
<div class="container"> <div class="container">
<div class="cta-content"> <div class="cta-content">
@ -415,6 +430,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -427,6 +449,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -221,6 +221,11 @@
<li><a href="#see-you">See you in Slovenia!</a></li> <li><a href="#see-you">See you in Slovenia!</a></li>
</ul> </ul>
</nav> </nav>
<div class="sidebar-cta">
<p class="sidebar-cta-title">Like what we do?</p>
<a class="sidebar-cta-btn" href="../../../en/become-a-member/">Become a member</a>
<p class="sidebar-cta-note">Or <a href="../../../en/support/">support MSOS</a> so we can create even more moments like this.</p>
</div>
</aside> </aside>
<article class="article-container"> <article class="article-container">
@ -358,6 +363,16 @@
</article> </article>
</div> </div>
<section class="article-support-cta">
<div class="asc-card">
<h3>Like what we do?</h3>
<p>Become a member or support MSOS so we can create even more moments like this.</p>
<div class="asc-actions">
<a class="btn btn-primary-orange" href="../../../en/become-a-member/">Become a member</a>
<a class="btn btn-secondary" href="../../../en/support/">Support MSOS</a>
</div>
</div>
</section>
<section class="newsletter-cta"> <section class="newsletter-cta">
<div class="container"> <div class="container">
<div class="cta-content"> <div class="cta-content">
@ -418,6 +433,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -430,6 +452,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -219,6 +219,11 @@
<li><a href="#coffee-and-burek">Coffee and Burek as motivation</a></li> <li><a href="#coffee-and-burek">Coffee and Burek as motivation</a></li>
</ul> </ul>
</nav> </nav>
<div class="sidebar-cta">
<p class="sidebar-cta-title">Like what we do?</p>
<a class="sidebar-cta-btn" href="../../../en/become-a-member/">Become a member</a>
<p class="sidebar-cta-note">Or <a href="../../../en/support/">support MSOS</a> so we can create even more moments like this.</p>
</div>
</aside> </aside>
<article class="article-container"> <article class="article-container">
@ -317,6 +322,16 @@
</article> </article>
</div> </div>
<section class="article-support-cta">
<div class="asc-card">
<h3>Like what we do?</h3>
<p>Become a member or support MSOS so we can create even more moments like this.</p>
<div class="asc-actions">
<a class="btn btn-primary-orange" href="../../../en/become-a-member/">Become a member</a>
<a class="btn btn-secondary" href="../../../en/support/">Support MSOS</a>
</div>
</div>
</section>
<section class="newsletter-cta"> <section class="newsletter-cta">
<div class="container"> <div class="container">
<div class="cta-content"> <div class="cta-content">
@ -377,6 +392,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -389,6 +411,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -193,7 +193,35 @@
<!-- END_HEADER --> <!-- END_HEADER -->
<main class="article-page"> <main class="article-page">
<article class="article-container"> <!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">Paint &amp; Wine at Sunset, Celebrating Womens Day with Art &amp; Music</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links"></ul>
</div>
</div>
<div class="article-layout-container">
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#section-1" class="active">A first for MSOS Nova Gorica</a></li>
<li><a href="#section-2">Art, music, and togetherness</a></li>
<li><a href="#section-3">Why it mattered</a></li>
<li><a href="#section-4">Looking ahead</a></li>
</ul>
</nav>
<div class="sidebar-cta">
<p class="sidebar-cta-title">Like what we do?</p>
<a class="sidebar-cta-btn" href="../../../en/become-a-member/">Become a member</a>
<p class="sidebar-cta-note">Or <a href="../../../en/support/">support MSOS</a> so we can create even more moments like this.</p>
</div>
</aside>
<article class="article-container">
<header class="article-header"> <header class="article-header">
<p class="article-publish-date">Published on March 8, 2025</p> <p class="article-publish-date">Published on March 8, 2025</p>
<h1>Paint &amp; Wine at Sunset, Celebrating Womens Day with Art &amp; Music</h1> <h1>Paint &amp; Wine at Sunset, Celebrating Womens Day with Art &amp; Music</h1>
@ -211,7 +239,7 @@
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-2.webp" alt="Students painting during the Paint &amp; Wine evening"> <img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-2.webp" alt="Students painting during the Paint &amp; Wine evening">
</figure> </figure>
<h2>A first for MSOS Nova Gorica</h2> <h2 id="section-1">A first for MSOS Nova Gorica</h2>
<p>This was more than just an event. It was the first official activity organized by our new MSOS Nova Gorica team. With support from the Macedonian Cultural Association "Ohridski Biseri", we transformed the cozy venue Etnoteca Mama Angela into a space filled with creativity and laughter.</p> <p>This was more than just an event. It was the first official activity organized by our new MSOS Nova Gorica team. With support from the Macedonian Cultural Association "Ohridski Biseri", we transformed the cozy venue Etnoteca Mama Angela into a space filled with creativity and laughter.</p>
@ -219,7 +247,7 @@
<img width="1600" height="1067" loading="lazy" decoding="async" src="../../../images/paint-wine-3.webp" alt="The cozy venue Etnoteca Mama Angela"> <img width="1600" height="1067" loading="lazy" decoding="async" src="../../../images/paint-wine-3.webp" alt="The cozy venue Etnoteca Mama Angela">
</figure> </figure>
<h2>Art, music, and togetherness</h2> <h2 id="section-2">Art, music, and togetherness</h2>
<p>The concept was simple but powerful: a Paint &amp; Wine Night where anyone could sit down with a canvas, brushes, and a glass of wine, and let inspiration take over. No prior painting experience was needed. Some chose to create symbolic pieces honoring women, others painted freely from the heart.</p> <p>The concept was simple but powerful: a Paint &amp; Wine Night where anyone could sit down with a canvas, brushes, and a glass of wine, and let inspiration take over. No prior painting experience was needed. Some chose to create symbolic pieces honoring women, others painted freely from the heart.</p>
@ -233,7 +261,7 @@
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-5.webp" alt="Students enjoying wine and music together"> <img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-5.webp" alt="Students enjoying wine and music together">
</figure> </figure>
<h2>Why it mattered</h2> <h2 id="section-3">Why it mattered</h2>
<p>Held on March 8, International Womens Day, the event carried a deeper meaning. It was a chance to celebrate and appreciate women, not only through words but through art. The paintings that came out of the night were diverse, personal, and full of color, much like the student community itself.</p> <p>Held on March 8, International Womens Day, the event carried a deeper meaning. It was a chance to celebrate and appreciate women, not only through words but through art. The paintings that came out of the night were diverse, personal, and full of color, much like the student community itself.</p>
@ -251,7 +279,7 @@
<img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-7.webp" alt="The group enjoying the celebration"> <img width="720" height="480" loading="lazy" decoding="async" src="../../../images/paint-wine-7.webp" alt="The group enjoying the celebration">
</figure> </figure>
<h2>Looking ahead</h2> <h2 id="section-4">Looking ahead</h2>
<p>Paint &amp; Wine Night showed that MSOS Nova Gorica is ready to bring fresh ideas and energy to our student family. From wine glasses clinking to canvases filling with color, the night left everyone with memories and a few paint-stained fingers, that will not be forgotten.</p> <p>Paint &amp; Wine Night showed that MSOS Nova Gorica is ready to bring fresh ideas and energy to our student family. From wine glasses clinking to canvases filling with color, the night left everyone with memories and a few paint-stained fingers, that will not be forgotten.</p>
@ -279,6 +307,17 @@
</div> </div>
</section> </section>
</article> </article>
</div>
<section class="article-support-cta">
<div class="asc-card">
<h3>Like what we do?</h3>
<p>Become a member or support MSOS so we can create even more moments like this.</p>
<div class="asc-actions">
<a class="btn btn-primary-orange" href="../../../en/become-a-member/">Become a member</a>
<a class="btn btn-secondary" href="../../../en/support/">Support MSOS</a>
</div>
</div>
</section>
<section class="newsletter-cta"> <section class="newsletter-cta">
<div class="container"> <div class="container">
<div class="cta-content"> <div class="cta-content">
@ -339,6 +378,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -351,6 +397,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -193,7 +193,34 @@
<!-- END_HEADER --> <!-- END_HEADER -->
<main class="article-page"> <main class="article-page">
<article class="article-container"> <!-- Sticky Mobile Header -->
<div class="mobile-article-header">
<span id="mobile-article-title">Cheering for Macedonia, Watching Handball Together in Slovenia</span>
<i class="fas fa-chevron-down"></i>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<div class="mobile-scrollspy-dropdown">
<ul id="mobile-scrollspy-links"></ul>
</div>
</div>
<div class="article-layout-container">
<aside class="article-sidebar">
<nav class="scrollspy-nav">
<ul>
<li><a href="#section-1" class="active">Two cities, one spirit</a></li>
<li><a href="#section-2">More than just watching the game</a></li>
<li><a href="#section-3">A new tradition in the making</a></li>
</ul>
</nav>
<div class="sidebar-cta">
<p class="sidebar-cta-title">Like what we do?</p>
<a class="sidebar-cta-btn" href="../../../en/become-a-member/">Become a member</a>
<p class="sidebar-cta-note">Or <a href="../../../en/support/">support MSOS</a> so we can create even more moments like this.</p>
</div>
</aside>
<article class="article-container">
<header class="article-header"> <header class="article-header">
<p class="article-publish-date">Published on January 25, 2025</p> <p class="article-publish-date">Published on January 25, 2025</p>
<h1>Cheering for Macedonia, Watching Handball Together in Slovenia</h1> <h1>Cheering for Macedonia, Watching Handball Together in Slovenia</h1>
@ -212,7 +239,7 @@
<figcaption>A snapshot of the fan atmosphere in Maribor.</figcaption> <figcaption>A snapshot of the fan atmosphere in Maribor.</figcaption>
</figure> </figure>
<h2>Two cities, one spirit</h2> <h2 id="section-1">Two cities, one spirit</h2>
<p>This winter, the World Handball Championship brought more than just matches on screen. It brought Macedonian students together. In Ljubljana, the initiative came from a student, Ljuben Najdovski, who suggested that MSOS host a group watch of the match against Guinea held on January 19, 2025. With quick organization and support from the local café Lepa Žoga, a space was reserved, sign-ups were collected, and soon enough 25 students filled the place with flags, chants, and laughter.</p> <p>This winter, the World Handball Championship brought more than just matches on screen. It brought Macedonian students together. In Ljubljana, the initiative came from a student, Ljuben Najdovski, who suggested that MSOS host a group watch of the match against Guinea held on January 19, 2025. With quick organization and support from the local café Lepa Žoga, a space was reserved, sign-ups were collected, and soon enough 25 students filled the place with flags, chants, and laughter.</p>
@ -228,7 +255,7 @@
<figcaption>Fans gathered at the Maribor base to cheer for Macedonia together.</figcaption> <figcaption>Fans gathered at the Maribor base to cheer for Macedonia together.</figcaption>
</figure> </figure>
<h2>More than just watching the game</h2> <h2 id="section-2">More than just watching the game</h2>
<p>What made these events special was not only the sport. It was the way students created a piece of home abroad: waving flags, sharing drinks, shouting "Ајде Македонија!" at the screen, and laughing together at missed shots or brilliant saves. For newcomers, it was a chance to instantly feel part of a community. For others, it was a reminder that even hundreds of kilometers from home, they were not cheering alone.</p> <p>What made these events special was not only the sport. It was the way students created a piece of home abroad: waving flags, sharing drinks, shouting "Ајде Македонија!" at the screen, and laughing together at missed shots or brilliant saves. For newcomers, it was a chance to instantly feel part of a community. For others, it was a reminder that even hundreds of kilometers from home, they were not cheering alone.</p>
@ -237,7 +264,7 @@
<figcaption>Two of our MSOS Maribor organizers enjoying the evening at the fan event.</figcaption> <figcaption>Two of our MSOS Maribor organizers enjoying the evening at the fan event.</figcaption>
</figure> </figure>
<h2>A new tradition in the making</h2> <h2 id="section-3">A new tradition in the making</h2>
<p>From Ljubljana to Maribor, these watch parties showed that supporting the national team can be more than sports. It is a way to build friendships, strengthen community, and carry a piece of Macedonia wherever we go. With each match, the energy grows, and one thing is certain: these gatherings will continue to be part of the MSOS story.</p> <p>From Ljubljana to Maribor, these watch parties showed that supporting the national team can be more than sports. It is a way to build friendships, strengthen community, and carry a piece of Macedonia wherever we go. With each match, the energy grows, and one thing is certain: these gatherings will continue to be part of the MSOS story.</p>
@ -265,6 +292,17 @@
</div> </div>
</section> </section>
</article> </article>
</div>
<section class="article-support-cta">
<div class="asc-card">
<h3>Like what we do?</h3>
<p>Become a member or support MSOS so we can create even more moments like this.</p>
<div class="asc-actions">
<a class="btn btn-primary-orange" href="../../../en/become-a-member/">Become a member</a>
<a class="btn btn-secondary" href="../../../en/support/">Support MSOS</a>
</div>
</div>
</section>
<section class="newsletter-cta"> <section class="newsletter-cta">
<div class="container"> <div class="container">
<div class="cta-content"> <div class="cta-content">
@ -325,6 +363,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -337,6 +382,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -337,6 +342,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -349,6 +361,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -334,6 +339,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -346,6 +358,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -335,6 +340,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -347,6 +359,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -332,6 +337,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -344,6 +356,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -350,6 +355,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -362,6 +374,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -362,6 +367,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -374,6 +386,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -353,6 +358,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -365,6 +377,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -378,6 +383,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -390,6 +402,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -327,6 +332,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -339,6 +351,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -345,6 +350,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -357,6 +369,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -388,6 +393,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -400,6 +412,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
<p>It does not assume that everyone studies in Ljubljana. The same journey may lead to Maribor, Koper, Nova Gorica, Celje, or another Slovenian study centre, and each city creates different housing, transport, and everyday-life needs.</p> <p>It does not assume that everyone studies in Ljubljana. The same journey may lead to Maribor, Koper, Nova Gorica, Celje, or another Slovenian study centre, and each city creates different housing, transport, and everyday-life needs.</p>
</section> </section>
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-section" style="margin-top:0;"> <div class="guide-section" style="margin-top:0;">
<div class="guide-route" data-lang="en"> <div class="guide-route" data-lang="en">
<h2>Build my personal route</h2> <h2>Build my personal route</h2>
@ -491,6 +496,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -503,6 +515,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -339,6 +344,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -351,6 +363,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -411,6 +416,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -423,6 +435,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -79,8 +79,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -138,8 +138,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -239,6 +239,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -251,6 +258,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -366,6 +371,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -378,6 +390,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -383,6 +388,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -395,6 +407,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -328,6 +333,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -340,6 +352,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -337,6 +342,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -349,6 +361,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -377,6 +382,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -389,6 +401,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -377,6 +382,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -389,6 +401,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -347,6 +352,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -359,6 +371,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -335,6 +340,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -347,6 +359,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -372,6 +377,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -384,6 +396,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -389,6 +394,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -401,6 +413,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -356,6 +361,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -368,6 +380,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -330,6 +335,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -342,6 +354,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -362,6 +367,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -374,6 +386,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -332,6 +337,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -344,6 +356,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -359,6 +364,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -371,6 +383,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -326,6 +331,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -338,6 +350,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -78,8 +78,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -137,8 +137,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../../en/about-us/">About Us</a></li>
<li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../../en/about-us/">Our team</a></li>
<li><a href="../../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -204,6 +204,11 @@
</figure> </figure>
<div class="article-body"> <div class="article-body">
<div class="guide-disclaimer">
<i class="fas fa-circle-info" aria-hidden="true"></i>
<div class="gd-body"><strong>Good to know</strong>This guide is put together by students, not by professionals or official bodies. It is meant to help you and your parents through enrolment and settling into life in Slovenia. Some details may change or become outdated, so always check the official sources and confirm anything important with the relevant institutions. We take no responsibility for wrong, outdated or misunderstood information &mdash; but we are always glad to help. If you spot something that is not right, please tell us in the &ldquo;Was this page helpful?&rdquo; box at the bottom of the page.</div>
</div>
<div class="guide-meta"> <div class="guide-meta">
<span class="guide-tag ">Applies to: students from Macedonia</span> <span class="guide-tag ">Applies to: students from Macedonia</span>
<span class="guide-tag ">Last checked: 30 July 2026</span> <span class="guide-tag ">Last checked: 30 July 2026</span>
@ -397,6 +402,13 @@
<a href="../../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -409,6 +421,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -74,8 +74,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -133,8 +133,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -402,6 +402,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -414,6 +421,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

View File

@ -76,8 +76,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -135,8 +135,8 @@
<li class="menu-item menu-item-has-children"> <li class="menu-item menu-item-has-children">
<a href="#">Who We Are</a> <a href="#">Who We Are</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="../../en/about-us/">About Us</a></li>
<li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li> <li><a href="../../en/timeline-and-milestones/">Timeline & Milestones</a></li>
<li><a href="../../en/about-us/">Our team</a></li>
<li><a href="../../en/msos-hub/">MSOS Hub</a></li> <li><a href="../../en/msos-hub/">MSOS Hub</a></li>
</ul> </ul>
</li> </li>
@ -482,6 +482,13 @@
<a href="../../en/timeline-and-milestones/">Timeline and milestones</a> <a href="../../en/timeline-and-milestones/">Timeline and milestones</a>
<a href="mailto:info@msosorg.com">Contact us</a> <a href="mailto:info@msosorg.com">Contact us</a>
</div> </div>
<div class="links-column">
<h4>For bots</h4>
<a href="/links-for-bots/blog/">Blog articles</a>
<a href="/links-for-bots/guide/">Student guide</a>
<a href="/links-for-bots/projects/">Events &amp; projects</a>
<a href="/links-for-bots/about-msos/">Hey AI, learn about us</a>
</div>
</div> </div>
</div> </div>
<hr> <hr>
@ -494,6 +501,7 @@
<a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a> <a href="#" class="js-manage-cookies" onclick="if(window.msosOpenConsent){msosOpenConsent();}return false;">Manage cookies</a>
</div> </div>
</div> </div>
<div class="footer-disclaimer"><p>The information on this website is shared by students for general guidance only. It may be incomplete or out of date and is not legal or professional advice — always verify important details with the relevant official institutions. MSOS accepts no liability for errors, omissions, or decisions made based on this content.</p></div>
<div class="footer-credit"> <div class="footer-credit">
<span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span> <span>Built with the help of Mark and Domen from <a href="https://www.spletnimojster.si" target="_blank" rel="noopener">Spletni Mojster</a> and Kristijan from MSOS. Big thanks to them!</span>
</div> </div>

180
filter-search.js Normal file
View File

@ -0,0 +1,180 @@
/* Category filter bar enhancement (Proxify-style).
*
* Progressively enhances the existing category chip rows on the Events &
* Projects, Blog and News pages into a single rounded pill bar with a trailing
* search button. Clicking search swaps the tabs for a search input; typing
* opens a results dropdown listing matching cards (thumbnail + category +
* title). The existing chip elements keep their classes and data-attributes,
* so the current filtering + pagination logic (main.js / blog-filter.js /
* news-filter.js) keeps working unchanged. Filtering happens against the cards
* already rendered on the page no network calls.
*/
(function () {
'use strict';
function qsa(sel, root) { return [].slice.call((root || document).querySelectorAll(sel)); }
function el(tag, cls) { var e = document.createElement(tag); if (cls) e.className = cls; return e; }
function escapeHtml(s) {
return String(s).replace(/[&<>"]/g, function (c) {
return { '&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;' }[c];
});
}
// --- Localised strings -------------------------------------------------
var lang = (document.documentElement.getAttribute('lang') || 'en').toLowerCase();
if (lang === 'sl') lang = 'si';
if (['en', 'si', 'mk'].indexOf(lang) === -1) lang = 'en';
var I18N = {
en: { ph: 'Search', none: 'No results found', count: function (n) { return n + ' result' + (n === 1 ? '' : 's') + ' found'; } },
si: { ph: 'Iskanje', none: 'Ni zadetkov', count: function (n) { return n + ' ' + (n === 1 ? 'zadetek' : 'zadetkov'); } },
mk: { ph: 'Пребарување', none: 'Нема резултати', count: function (n) { return n + ' ' + (n === 1 ? 'резултат' : 'резултати'); } }
};
var t = I18N[lang];
// --- Per-page adapters -------------------------------------------------
// Each returns, for a card element, { href, title, img, icon, cat }.
function projectItem(card, labelMap) {
var link = card.querySelector('.post-link');
var titleEl = card.querySelector('.post-title');
var img = card.querySelector('.post-image');
if (!link || !titleEl) return null;
return {
href: link.getAttribute('href'),
title: titleEl.textContent.trim(),
img: img ? img.getAttribute('src') : '',
cat: labelMap ? (labelMap[card.getAttribute('data-category')] || '') : ''
};
}
function blogItem(card) {
var titleEl = card.querySelector('h3');
var tag = card.querySelector('.blog-tag');
var thumb = card.querySelector('.blog-thumb');
if (!titleEl) return null;
return {
href: card.getAttribute('href'),
title: titleEl.textContent.trim(),
icon: thumb ? thumb.innerHTML : '',
cat: tag ? tag.textContent.trim() : ''
};
}
function newsItem(card) {
var titleLink = card.querySelector('.newshub-body h3 a') || card.querySelector('h3 a');
var media = card.querySelector('.newshub-media');
var img = card.querySelector('.newshub-media img');
var badge = card.querySelector('.news-badge');
if (!titleLink) return null;
return {
href: media ? media.getAttribute('href') : titleLink.getAttribute('href'),
title: titleLink.textContent.trim(),
img: img ? img.getAttribute('src') : '',
cat: badge ? badge.textContent.trim() : ''
};
}
var CONFIGS = [
{ tabs: '.filter-nav', cards: '.posts-grid .post-card', item: projectItem, labels: true },
{ tabs: '.blog-filters', cards: '.blog-grid .blog-card', item: blogItem },
{ tabs: '.newshub-filters', cards: '.newshub-grid .newshub-card', item: newsItem }
];
CONFIGS.forEach(function (cfg) {
var tabsEl = document.querySelector(cfg.tabs);
if (tabsEl) upgrade(tabsEl, cfg);
});
function upgrade(tabsEl, cfg) {
// Map of data-filter -> visible label (projects only; used for result category chips).
var labelMap = null;
if (cfg.labels) {
labelMap = {};
qsa('button', tabsEl).forEach(function (b) { labelMap[b.getAttribute('data-filter')] = b.textContent.trim(); });
}
// Wrap the tabs row inside the new bar.
var bar = el('div', 'filterbar');
tabsEl.parentNode.insertBefore(bar, tabsEl);
tabsEl.classList.add('filterbar-tabs');
bar.appendChild(tabsEl);
// Search icon button.
var searchBtn = el('button', 'filterbar-search-btn');
searchBtn.type = 'button';
searchBtn.setAttribute('aria-label', t.ph);
searchBtn.innerHTML = '<i class="fas fa-search" aria-hidden="true"></i>';
bar.appendChild(searchBtn);
// Search row (hidden until activated).
var firstTab = tabsEl.querySelector('button, a');
var searchRow = el('div', 'filterbar-search');
searchRow.hidden = true;
searchRow.innerHTML =
'<span class="filterbar-search-label"></span>' +
'<div class="filterbar-search-field"><i class="fas fa-search" aria-hidden="true"></i>' +
'<input type="text" aria-label="' + escapeHtml(t.ph) + '"></div>' +
'<button type="button" class="filterbar-search-close" aria-label="Close"><i class="fas fa-times" aria-hidden="true"></i></button>';
searchRow.querySelector('.filterbar-search-label').textContent = firstTab ? firstTab.textContent.trim() : '';
var input = searchRow.querySelector('input');
input.placeholder = t.ph;
bar.appendChild(searchRow);
// Results dropdown.
var results = el('div', 'filterbar-results');
results.hidden = true;
results.innerHTML = '<p class="filterbar-results-count"></p><ul class="filterbar-results-list"></ul>';
bar.appendChild(results);
var countEl = results.querySelector('.filterbar-results-count');
var listEl = results.querySelector('.filterbar-results-list');
function openSearch() {
bar.classList.add('is-searching');
tabsEl.hidden = true;
searchBtn.hidden = true;
searchRow.hidden = false;
input.value = '';
render('');
input.focus();
}
function closeSearch() {
bar.classList.remove('is-searching');
searchRow.hidden = true;
results.hidden = true;
tabsEl.hidden = false;
searchBtn.hidden = false;
}
function render(q) {
q = (q || '').trim().toLowerCase();
if (!q) { results.hidden = true; listEl.innerHTML = ''; countEl.textContent = ''; return; }
var found = qsa(cfg.cards)
.map(function (c) { return cfg.item(c, labelMap); })
.filter(function (it) { return it && it.title.toLowerCase().indexOf(q) !== -1; });
listEl.innerHTML = '';
countEl.textContent = found.length ? t.count(found.length) : t.none;
found.forEach(function (it) { listEl.appendChild(resultRow(it)); });
results.hidden = false;
}
searchBtn.addEventListener('click', openSearch);
searchRow.querySelector('.filterbar-search-close').addEventListener('click', closeSearch);
input.addEventListener('input', function () { render(input.value); });
document.addEventListener('keydown', function (e) { if (e.key === 'Escape' && !searchRow.hidden) closeSearch(); });
document.addEventListener('click', function (e) { if (!bar.contains(e.target) && !searchRow.hidden) closeSearch(); });
}
function resultRow(it) {
var li = el('li', 'filterbar-result');
var a = el('a', 'filterbar-result-link');
a.href = it.href;
var thumb = it.img
? '<img src="' + escapeHtml(it.img) + '" alt="" loading="lazy">'
: (it.icon || '');
a.innerHTML =
'<span class="filterbar-result-thumb">' + thumb + '</span>' +
'<span class="filterbar-result-body">' +
(it.cat ? '<span class="filterbar-result-cat">' + escapeHtml(it.cat) + '</span>' : '') +
'<span class="filterbar-result-title">' + escapeHtml(it.title) + '</span>' +
'</span>';
li.appendChild(a);
return li;
}
})();

BIN
images/about-hero-01.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

BIN
images/about-hero-02.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 KiB

BIN
images/about-hero-03.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 441 KiB

BIN
images/about-hero-04.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

BIN
images/about-hero-05.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

BIN
images/about-hero-06.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

BIN
images/about-hero-07.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB

Some files were not shown because too many files have changed in this diff Show More