diff --git a/blog-filter.js b/blog-filter.js new file mode 100644 index 00000000..7aafb2aa --- /dev/null +++ b/blog-filter.js @@ -0,0 +1,22 @@ +/* Blog topic filter: chips toggle which cards are shown. No dependencies. */ +(function () { + var list = document.querySelector('.blog-list'); + if (!list) return; + var chips = list.querySelectorAll('.blog-chip'); + var cards = list.querySelectorAll('.blog-card'); + + function apply(topic) { + cards.forEach(function (card) { + var show = topic === 'all' || card.getAttribute('data-topic') === topic; + card.hidden = !show; + }); + } + + chips.forEach(function (chip) { + chip.addEventListener('click', function () { + chips.forEach(function (c) { c.classList.remove('is-active'); }); + chip.classList.add('is-active'); + apply(chip.getAttribute('data-topic')); + }); + }); +})(); diff --git a/css/base/_base.css b/css/base/_base.css index fefefd36..e018f5da 100644 --- a/css/base/_base.css +++ b/css/base/_base.css @@ -23,19 +23,21 @@ html { /* - * POMEMBNO: Ta selektor naj ostane brez `overflow` pravil. - * `overflow-x: hidden` na `` ali `` elementu preprečuje - * pravilno delovanje `position: sticky`, ki ga uporablja stranska - * vrstica v člankih. + * `overflow-x: hidden` na ``/`` bi pokvaril `position: sticky` + * (stranska vrstica in mobilni TOC v člankih). Zato uporabljamo + * `overflow-x: clip`, ki obreže vodoravni preliv (npr. mobilni meni, + * ki je zunaj zaslona), NE da bi ustvaril drsni vsebnik, zato `sticky` + * še vedno deluje. */ + overflow-x: clip; } - + body { font-family: 'Inter', sans-serif; margin: 0; background-color: #FFFFFF; color: #101828; - /* `overflow-x: hidden;` je bil odstranjen, da omogoči pravilno delovanje `position: sticky`. */ + overflow-x: clip; } /* Pravilo za preprečevanje drsenja, ko je mobilni meni odprt. To je pravilno in ostane. */ diff --git a/css/components/_buttons.css b/css/components/_buttons.css index 221c6c4e..b677e0b0 100644 --- a/css/components/_buttons.css +++ b/css/components/_buttons.css @@ -27,8 +27,15 @@ display: inline-block; text-align: center; white-space: nowrap; /* KLJUČNA SPREMEMBA: Prepreči prelamljanje besedila */ + transition: transform 0.15s ease, box-shadow 0.15s ease, + background-color 0.15s ease, border-color 0.15s ease; } +/* Interaction: subtle lift on hover, press-down on click */ +.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(16, 24, 40, 0.12); } +.btn:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08); } +.btn:focus-visible { outline: 2px solid #2D738C; outline-offset: 2px; } + /* 2. Različice gumbov */ .btn-primary { @@ -36,6 +43,7 @@ color: #FFFFFF; border-color: #2D738C; } +.btn-primary:hover { background-color: #255E73; border-color: #255E73; } .btn-primary-orange { background: #FA7850; @@ -44,12 +52,14 @@ font-size: 18px; line-height: 28px; } +.btn-primary-orange:hover { background: #E8663F; } .btn-secondary { background-color: #FFFFFF; color: #344054; border: 1px solid #D0D5DD; } +.btn-secondary:hover { background-color: #F9FAFB; border-color: #98A2B3; color: #101828; } /* 3. Gumbi z ikonami */ diff --git a/css/components/_cards.css b/css/components/_cards.css index e8431a9f..14f27ff9 100644 --- a/css/components/_cards.css +++ b/css/components/_cards.css @@ -49,6 +49,45 @@ line-height: 24px; } +/* Latest-news cards: clickable media, type badge, placeholder tiles */ +.news-card-media { + position: relative; + display: block; + margin-bottom: 24px; + border-radius: 8px; + overflow: hidden; +} +.news-card-media img { height: 220px; margin-bottom: 0; display: block; } +.news-card .news-ph { + height: 220px; + display: flex; + align-items: center; + justify-content: center; + font-size: 40px; + color: rgba(255, 255, 255, 0.85); + background: rgba(255, 255, 255, 0.14); +} +.news-badge { + position: absolute; + top: 12px; + left: 12px; + display: inline-flex; + align-items: center; + gap: 6px; + font-size: 12px; + font-weight: 600; + color: #FFFFFF; + padding: 4px 10px; + border-radius: 999px; + background: #101828; +} +.news-badge i { font-size: 11px; } +.news-badge--project { background: #1F5C72; } +.news-badge--blog { background: #E8833A; } +.news-badge--news { background: #7C5CBF; } +.news-card h3 a { color: #FFFFFF; text-decoration: none; } +.news-card h3 a:hover { text-decoration: underline; } + /* 2. Kartice s pričevanji (.testimonial-card) */ .testimonial-card { diff --git a/css/layout/_footer.css b/css/layout/_footer.css index 1cb03ec2..3fe3e529 100644 --- a/css/layout/_footer.css +++ b/css/layout/_footer.css @@ -47,12 +47,28 @@ footer { object-fit: contain; } +.footer-info p.footer-legal-name { + margin: -24px 0 20px; + max-width: 302px; +} + .footer-info p { font-size: 16px; line-height: 1.5; margin-bottom: 24px; } +.footer-info p a { + color: #FFFFFF; + text-decoration: underline; + text-underline-offset: 2px; + transition: opacity 0.15s ease; +} + +.footer-info p a:hover { + opacity: 0.75; +} + .social-icons { display: flex; gap: 24px; @@ -62,6 +78,11 @@ footer { color: #FFFFFF; font-size: 24px; text-decoration: none; + transition: opacity 0.15s ease; +} + +.social-icons a:hover { + opacity: 0.75; } /* 3. Povezave v nogi */ @@ -87,6 +108,13 @@ footer { text-decoration: none; font-size: 16px; margin-bottom: 16px; + transition: opacity 0.15s ease; +} + +.links-column a:hover, +.legal-links a:hover { + opacity: 0.75; + text-decoration: underline; } /* 4. Spodnji del noge (copyright, pravne povezave) */ diff --git a/css/layout/_header.css b/css/layout/_header.css index f68a25c0..d3e271b3 100644 --- a/css/layout/_header.css +++ b/css/layout/_header.css @@ -28,6 +28,24 @@ z-index: 1000; } +/* Header spans the full page width: logo + menus flush left, buttons + + language flush right. Overrides the shared .container 1280px centering + for the header only (page content elsewhere stays centered). */ +.dropdown-header-navigation .container { + max-width: none; + padding: 0 40px; +} +@media (max-width: 768px) { + .dropdown-header-navigation .container { padding: 0 20px; } +} +/* Desktop split: the right-wrapper fills the row so the menus sit next to the + logo on the left, and the buttons + language get pushed to the far right. */ +@media (min-width: 1025px) { + .dropdown-header-navigation .header-right-wrapper { flex: 1; } + .dropdown-header-navigation .header-right-wrapper > nav { margin-left: 40px; } + .dropdown-header-navigation .navigation-actions { margin-left: auto; } +} + /* 2. Vsebina glave (logotip, navigacija) - POSODOBLJENO */ .logo-link .logo-img { height: 32px; @@ -120,17 +138,19 @@ .current-lang .fa-chevron-down { transition: transform 0.3s ease-in-out; } .lang-dropdown { - display: block; + display: flex; + flex-direction: column; + gap: 4px; position: absolute; top: calc(100% + 8px); right: 0; background-color: #FFFFFF; border: 1px solid #EAECF0; - border-radius: 8px; - box-shadow: 0 8px 16px rgba(0,0,0,0.08); + border-radius: 12px; + box-shadow: 0 20px 24px -4px rgba(16,24,40,0.10), 0 8px 8px -4px rgba(16,24,40,0.04); padding: 8px; z-index: 1001; - min-width: 180px; + min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(10px); @@ -144,16 +164,34 @@ .language-selector.active .current-lang .fa-chevron-down { transform: rotate(180deg); } .lang-dropdown a { - display: block; + display: flex; + align-items: center; + gap: 12px; padding: 10px 12px; color: #344054; text-decoration: none; - font-weight: 500; - font-size: 16px; + font-weight: 600; + font-size: 15px; white-space: nowrap; - border-radius: 6px; + border-radius: 8px; + transition: background-color 0.15s ease, color 0.15s ease; } -.lang-dropdown a:hover { background-color: #F9FAFB; } +.lang-dropdown a:hover { background-color: #F5FAFB; } +.lang-dropdown a.is-current { background-color: #F0F6F8; color: #2D738C; } + +/* Circular flags (vendored locally) used in the dropdown and the mobile modal */ +.lang-flag { + width: 24px; + height: 24px; + flex: 0 0 auto; + border-radius: 50%; + background-size: cover; + background-position: center; + box-shadow: inset 0 0 0 1px rgba(16,24,40,0.10); +} +.lang-flag-gb { background-image: url("../../images/flags/gb.svg"); } +.lang-flag-si { background-image: url("../../images/flags/si.svg"); } +.lang-flag-mk { background-image: url("../../images/flags/mk.svg"); } /* 4. Stili za namizni "dropdown" meni */ .dropdown-menu { @@ -438,20 +476,22 @@ } .language-modal-body a { - display: block; + display: flex; + align-items: center; + gap: 14px; padding: 12px 16px; - text-align: center; text-decoration: none; - font-size: 18px; - font-weight: 500; + font-size: 17px; + font-weight: 600; color: #344054; background-color: #F9FAFB; border: 1px solid #EAECF0; - border-radius: 8px; - transition: background-color 0.2s ease, border-color 0.2s ease; + border-radius: 10px; + transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; } .language-modal-body a:hover, +.language-modal-body a.is-current, .language-modal-body a.active-lang { background-color: #FFFFFF; border-color: #2D738C; diff --git a/css/main.css b/css/main.css index 5992de21..828bd23b 100644 --- a/css/main.css +++ b/css/main.css @@ -32,4 +32,8 @@ @import 'pages/_article.css'; @import 'pages/_about.css'; @import 'pages/_timeline.css'; -@import 'pages/_guide.css'; \ No newline at end of file +@import 'pages/_guide.css'; +@import 'pages/_faq.css'; +@import 'pages/_blog.css'; +@import 'pages/_news.css'; +@import 'pages/_member.css'; \ No newline at end of file diff --git a/css/pages/_article.css b/css/pages/_article.css index 69ce02c5..05ce1f66 100644 --- a/css/pages/_article.css +++ b/css/pages/_article.css @@ -526,6 +526,10 @@ .article-layout-container { flex-direction: column; + /* Reset the desktop `align-items: flex-start`: in a column flexbox it + sizes children to their content width (max-content), which makes + .article-container overflow the viewport. Stretch fits it to width. */ + align-items: stretch; padding: 0; gap: 0; } diff --git a/css/pages/_blog.css b/css/pages/_blog.css new file mode 100644 index 00000000..68670c29 --- /dev/null +++ b/css/pages/_blog.css @@ -0,0 +1,178 @@ +/* ========================================================================== + Blog page — featured strip, topic filters, masonry card wall + ========================================================================== */ +.blog-page { font-family: 'Inter', sans-serif; } + +/* Topic colours */ +.blog-page { + --t-student-life: #2D738C; + --t-study-tips: #E8833A; + --t-slovenia: #3B82C4; + --t-community: #7C5CBF; + --t-guides: #2E9E6B; +} + +/* Hero */ +.blog-hero { + background: linear-gradient(180deg, #FFF7F2 0%, #FFFFFF 100%); + padding: 112px 24px 40px; /* clears the fixed 80px header */ + text-align: center; +} +.blog-eyebrow { + display: inline-block; + color: #E8833A; + font-weight: 700; + font-size: 14px; + letter-spacing: 0.06em; + text-transform: uppercase; + margin-bottom: 12px; +} +.blog-hero h1 { max-width: 760px; margin: 0 auto 16px; font-size: 42px; line-height: 1.12; color: #101828; } +.blog-lead { max-width: 640px; margin: 0 auto; font-size: 18px; line-height: 28px; color: #475467; } + +/* Shared tag pill */ +.blog-tag { + display: inline-flex; + align-items: center; + gap: 6px; + font-size: 12px; + font-weight: 600; + letter-spacing: 0.02em; + padding: 4px 10px; + border-radius: 999px; + color: #fff; + background: #667085; + width: max-content; +} +.blog-tag i { font-size: 11px; } +.blog-tag--student-life { background: var(--t-student-life); } +.blog-tag--study-tips { background: var(--t-study-tips); } +.blog-tag--slovenia { background: var(--t-slovenia); } +.blog-tag--community { background: var(--t-community); } +.blog-tag--guides { background: var(--t-guides); } + +.blog-soon { + display: inline-block; + font-size: 12px; + font-weight: 600; + color: #98A2B3; + border: 1px dashed #D0D5DD; + border-radius: 999px; + padding: 3px 10px; +} + +.blog-section-label { + font-size: 13px; + font-weight: 700; + text-transform: uppercase; + letter-spacing: 0.06em; + color: #98A2B3; + margin: 0 0 16px; +} + +/* Featured strip: one large + two stacked */ +.blog-featured { max-width: 1120px; margin: 8px auto 8px; padding: 0 24px; } +.blog-featured-grid { + display: grid; + grid-template-columns: 1.4fr 1fr; + gap: 20px; +} +.blog-feat-side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; } + +.blog-feat { + display: flex; + flex-direction: column; + border-radius: 18px; + overflow: hidden; + background: #FFFFFF; + border: 1px solid #EAECF0; + box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05); + text-decoration: none; + transition: transform 0.18s ease, box-shadow 0.18s ease; +} +.blog-feat:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(16, 24, 40, 0.10); } +.blog-feat-thumb { + background: linear-gradient(135deg, #F2F4F7 0%, #E4E7EC 100%); + display: flex; + align-items: center; + justify-content: center; + color: #B7BDC7; + font-size: 40px; + min-height: 120px; +} +.blog-feat--lg .blog-feat-thumb { min-height: 280px; font-size: 64px; } +.blog-feat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; } +.blog-feat--lg .blog-feat-body { padding: 28px; gap: 16px; } +.blog-feat h3 { margin: 0; font-size: 18px; line-height: 1.3; color: #101828; } +.blog-feat--lg h3 { font-size: 26px; } + +/* Filters */ +.blog-list { max-width: 1120px; margin: 48px auto 72px; padding: 0 24px; } +.blog-filters { + display: flex; + flex-wrap: wrap; + gap: 10px; + margin-bottom: 28px; + padding-bottom: 24px; + border-bottom: 1px solid #EAECF0; +} +.blog-chip { + display: inline-flex; + align-items: center; + gap: 7px; + font-family: inherit; + font-size: 14px; + font-weight: 600; + color: #475467; + background: #F2F4F7; + border: 1px solid transparent; + border-radius: 999px; + padding: 9px 16px; + cursor: pointer; + transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease; +} +.blog-chip i { font-size: 12px; } +.blog-chip:hover { background: #E4E7EC; } +.blog-chip.is-active { background: #101828; color: #FFFFFF; } + +/* Masonry card wall (CSS columns) */ +.blog-grid { columns: 3 300px; column-gap: 20px; } +.blog-card { + break-inside: avoid; + display: inline-block; + width: 100%; + margin: 0 0 20px; + background: #FFFFFF; + border: 1px solid #EAECF0; + border-radius: 16px; + overflow: hidden; + box-shadow: 0 4px 12px rgba(16, 24, 40, 0.04); + transition: transform 0.18s ease, box-shadow 0.18s ease; +} +.blog-card[hidden] { display: none; } +.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(16, 24, 40, 0.10); } +.blog-thumb { + background: linear-gradient(135deg, #F2F4F7 0%, #E4E7EC 100%); + display: flex; + align-items: center; + justify-content: center; + color: #B7BDC7; + font-size: 34px; + min-height: 140px; +} +/* Vary the placeholder heights so the wall feels playful, not uniform */ +.blog-card:nth-child(3n+1) .blog-thumb { min-height: 180px; } +.blog-card:nth-child(4n+2) .blog-thumb { min-height: 120px; } +.blog-card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; } +.blog-card h3 { margin: 0; font-size: 18px; line-height: 1.3; color: #101828; } +.blog-card p { margin: 0; font-size: 14px; line-height: 22px; color: #667085; } + +@media (max-width: 860px) { + .blog-featured-grid { grid-template-columns: 1fr; } + .blog-feat--lg .blog-feat-thumb { min-height: 200px; } +} +@media (max-width: 768px) { + .blog-hero { padding: 92px 20px 32px; } + .blog-hero h1 { font-size: 30px; } + .blog-grid { columns: 1; } +} diff --git a/css/pages/_faq.css b/css/pages/_faq.css new file mode 100644 index 00000000..f9f49a0c --- /dev/null +++ b/css/pages/_faq.css @@ -0,0 +1,145 @@ +/* ========================================================================== + FAQ page + ========================================================================== */ +.faq-page { font-family: 'Inter', sans-serif; } + +.faq-hero { + background: linear-gradient(180deg, #F5FAFB 0%, #FFFFFF 100%); + padding: 112px 24px 40px; /* clears the fixed 80px header */ + text-align: center; +} +.faq-eyebrow { + display: inline-block; + color: #2D738C; + font-weight: 600; + font-size: 14px; + letter-spacing: 0.04em; + text-transform: uppercase; + margin-bottom: 12px; +} +.faq-hero h1 { + max-width: 760px; + margin: 0 auto 16px; + font-size: 40px; + line-height: 1.15; + color: #101828; +} +.faq-lead { + max-width: 680px; + margin: 0 auto; + font-size: 18px; + line-height: 28px; + color: #475467; +} + +.faq-body { + max-width: 820px; + margin: 56px auto; + padding: 0 24px; +} +.faq-cat { margin-bottom: 44px; } +.faq-cat h2 { + font-size: 22px; + color: #101828; + margin: 0 0 16px; + padding-bottom: 10px; + border-bottom: 1px solid #EAECF0; +} + +.faq-q { + border: 1px solid #EAECF0; + border-radius: 12px; + margin-bottom: 12px; + background: #FFFFFF; + transition: box-shadow 0.2s ease, border-color 0.2s ease; +} +.faq-q[open] { + border-color: #D0DEE3; + box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06); +} +.faq-q summary { + list-style: none; + cursor: pointer; + padding: 18px 20px; + font-weight: 600; + font-size: 16px; + color: #101828; + display: flex; + justify-content: space-between; + align-items: center; + gap: 16px; +} +.faq-q summary::-webkit-details-marker { display: none; } +.faq-q summary::after { + content: '\f078'; + font-family: 'Font Awesome 6 Free'; + font-weight: 900; + font-size: 13px; + color: #2D738C; + flex: 0 0 auto; + transition: transform 0.2s ease; +} +.faq-q[open] summary::after { transform: rotate(180deg); } +.faq-a { + padding: 0 20px 20px; + color: #475467; + font-size: 15px; + line-height: 26px; +} +.faq-a p { margin: 0 0 12px; } +.faq-a a { + color: #2D738C; + font-weight: 600; + text-decoration: none; + display: inline-flex; + align-items: center; + gap: 8px; +} +.faq-a a:hover { text-decoration: underline; } + +.faq-contact { + max-width: 820px; + margin: 0 auto 72px; + padding: 40px 24px; + text-align: center; + background: #F5FAFB; + border: 1px solid #EAECF0; + border-radius: 16px; +} +.faq-contact h2 { font-size: 22px; color: #101828; margin: 0 0 10px; } +.faq-contact p { + max-width: 620px; + margin: 0 auto 24px; + color: #475467; + font-size: 16px; + line-height: 26px; +} +.faq-contact-actions { + display: flex; + justify-content: center; + gap: 12px; + flex-wrap: wrap; +} +.faq-viber-btn { + display: inline-flex; + align-items: center; + gap: 10px; + padding: 12px 22px; + border-radius: 8px; + font-weight: 600; + font-size: 15px; + text-decoration: none; + color: #FFFFFF; + background: linear-gradient(135deg, #7360F2 0%, #5B45D6 100%); + transition: opacity 0.15s ease; +} +.faq-viber-btn:hover { opacity: 0.9; } + +@media (max-width: 768px) { + .faq-hero { padding: 92px 20px 32px; } + .faq-hero h1 { font-size: 30px; } + .faq-lead { font-size: 16px; } + .faq-body { margin: 40px auto; } + .faq-contact-actions .btn, + .faq-viber-btn { width: 100%; justify-content: center; text-align: center; } +} diff --git a/css/pages/_guide.css b/css/pages/_guide.css index 6e6c6ed3..90d54d25 100644 --- a/css/pages/_guide.css +++ b/css/pages/_guide.css @@ -207,8 +207,7 @@ .guide-landing { font-family: 'Inter', sans-serif; } .guide-landing-hero { background: linear-gradient(180deg, #F5FAFB 0%, #FFFFFF 100%); - border-bottom: 1px solid #EAECF0; - padding: 72px 24px 56px; + padding: 112px 24px 56px; /* clears the fixed 80px header */ text-align: center; } .guide-landing-hero .guide-eyebrow { @@ -619,10 +618,19 @@ .guide-route-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); - gap: 14px; + gap: 14px 16px; + align-items: end; +} +.guide-field { display: flex; flex-direction: column; gap: 6px; justify-content: flex-end; } +.guide-field label { + font-size: 13px; + font-weight: 600; + color: #344054; + line-height: 1.3; + min-height: calc(2 * 1.3em); + display: flex; + align-items: flex-end; } -.guide-field { display: flex; flex-direction: column; gap: 6px; } -.guide-field label { font-size: 13px; font-weight: 600; color: #344054; } .guide-field select { appearance: none; -webkit-appearance: none; @@ -859,12 +867,16 @@ /* ---------- Responsive ---------- */ @media (max-width: 768px) { - .guide-landing-hero { padding: 52px 20px 44px; } + .guide-landing-hero { padding: 92px 20px 44px; } .guide-landing-hero h1 { font-size: 32px; } .guide-hero-image { aspect-ratio: 2 / 1; } .guide-route { margin-top: 24px; padding: 22px; border-radius: 16px; } .guide-route-actions .btn { width: 100%; text-align: center; } } +/* Single-column route form: labels sit naturally, no reserved 2-line height */ +@media (max-width: 430px) { + .guide-field label { min-height: 0; } +} /* ---------- Personal route results page ---------- */ .route-report-page { max-width: 820px; margin: 56px auto 64px; padding: 0 24px; } diff --git a/css/pages/_home.css b/css/pages/_home.css index 4bc2e7dc..effc5958 100644 --- a/css/pages/_home.css +++ b/css/pages/_home.css @@ -95,22 +95,52 @@ /* 2. Partners Section */ .partners-section { background: #FFFFFF; - padding: 64px 0; + padding: 56px 0; + overflow: hidden; } -.partners-container { - max-width: 1280px; - margin: 0 auto; - padding: 0 24px; +.partners-title { + text-align: center; + color: #667085; + font-size: 13px; + font-weight: 600; + letter-spacing: 0.06em; + text-transform: uppercase; + margin: 0 0 32px; +} +/* Auto-scrolling marquee: two identical groups, translateX(-50%) loops seamlessly */ +.marquee { + overflow: hidden; + -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%); +} +.marquee-track { display: flex; - justify-content: space-between; - align-items: center; - gap: 64px; - flex-wrap: wrap; + width: max-content; + animation: partners-marquee 45s linear infinite; } -.partners-container img { - max-height: 56px; +.marquee:hover .marquee-track { + animation-play-state: paused; +} +.marquee-group { + display: flex; + align-items: center; + gap: 72px; + padding-right: 72px; + flex: 0 0 auto; +} +.marquee-group img { + height: 52px; width: auto; object-fit: contain; + -webkit-user-drag: none; + user-select: none; +} +@keyframes partners-marquee { + from { transform: translateX(0); } + to { transform: translateX(-50%); } +} +@media (prefers-reduced-motion: reduce) { + .marquee-track { animation: none; } } /* 3. Meet the Team Section */ @@ -630,15 +660,20 @@ /* Mobile Partners Section */ .partners-section { - padding: 40px 24px; + padding: 40px 0; } - .partners-container { - gap: 32px; - justify-content: center; + .partners-title { + padding: 0 24px; } - .partners-container img { - max-height: 40px; - flex-basis: 40%; + .marquee-group { + gap: 48px; + padding-right: 48px; + } + .marquee-group img { + height: 40px; + } + .marquee-track { + animation-duration: 30s; } /* Mobile Meet the Team Section */ diff --git a/css/pages/_member.css b/css/pages/_member.css new file mode 100644 index 00000000..758cccdd --- /dev/null +++ b/css/pages/_member.css @@ -0,0 +1,211 @@ +/* ========================================================================== + Become a Member page + ========================================================================== */ +.member-page { font-family: 'Inter', sans-serif; color: #101828; --mm-orange: #F2762E; --mm-teal: #2D738C; } +.mm-h2 { font-size: 32px; line-height: 1.15; text-align: center; margin: 0 0 12px; color: #101828; } +.mm-h2--light { color: #FFFFFF; } +.mm-lead { text-align: center; max-width: 640px; margin: 0 auto 36px; font-size: 18px; line-height: 28px; color: #475467; } +.mm-note { font-size: 12px; color: #98A2B3; } +.mm-note--center { text-align: center; margin-top: 20px; } +.mm-center { text-align: center; margin-top: 32px; } +.mm-section { max-width: 1120px; margin: 0 auto; padding: 72px 24px; } +.mm-section--soft { background: #F7FAFB; max-width: none; } +.mm-section--soft > * { max-width: 1120px; margin-left: auto; margin-right: auto; } + +/* ---- hero ---- */ +.mm-hero { + position: relative; + padding: 120px 24px 64px; + display: grid; + grid-template-columns: 1.05fr 0.95fr; + gap: 48px; + align-items: center; + max-width: 1200px; + margin: 0 auto; +} +/* Full-bleed gradient band behind the centred content: spans edge to edge + while the text/images stay within the 1200px column. */ +.mm-hero::before { + content: ''; + position: absolute; + top: 0; + bottom: 0; + left: 50%; + width: 100vw; + transform: translateX(-50%); + background: linear-gradient(115deg, #FFD3B8 0%, #FFE7D6 42%, #DCEBEE 100%); + z-index: -1; +} +.mm-eyebrow { display: inline-block; color: var(--mm-orange); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; } +.mm-hero h1 { font-size: 52px; line-height: 1.05; margin: 0 0 18px; letter-spacing: -0.02em; } +.mm-hero-lead { font-size: 19px; line-height: 30px; color: #475467; margin: 0 0 28px; max-width: 520px; } +.mm-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 4px; } +/* Both hero buttons share one size so they align cleanly */ +.mm-hero-cta .btn { padding: 14px 28px; font-size: 16px; line-height: 24px; border-radius: 10px; } + +.mm-hero-collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 460px; } +.mm-hero-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 16px 32px rgba(16,24,40,0.12); } +.mm-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; } +.mm-hero-photo--1 { grid-row: 1 / span 2; } +.mm-hero-photo--2 { } +.mm-hero-photo--3 { } + +/* ---- benefits ---- */ +.mm-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 32px; } +.mm-benefit { background: #FFFFFF; border: 1px solid #EAECF0; border-radius: 16px; padding: 26px; transition: transform 0.18s ease, box-shadow 0.18s ease; } +.mm-benefit:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(16,24,40,0.08); } +.mm-benefit-ico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--mm-orange); background: #FFF1E8; margin-bottom: 16px; } +.mm-benefit h3 { font-size: 18px; margin: 0 0 8px; } +.mm-benefit p { font-size: 15px; line-height: 23px; color: #667085; margin: 0; } + +/* ---- numbers ---- */ +.mm-numbers-section { background: var(--mm-teal); padding: 64px 24px; text-align: center; } +.mm-numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; max-width: 960px; margin: 28px auto 0; } +.mm-num { color: #FFFFFF; } +.mm-num-value { display: block; font-size: 46px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; } +.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; } + +/* ---- ways ---- */ +.mm-ways { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; } +.mm-way { border: 1px solid #EAECF0; border-radius: 16px; padding: 24px; background: #FFFFFF; transition: border-color 0.18s ease, box-shadow 0.18s ease; } +.mm-way:hover { border-color: #F6C9A8; box-shadow: 0 10px 22px rgba(242,118,46,0.10); } +.mm-way-ico { font-size: 22px; color: var(--mm-teal); margin-bottom: 12px; } +.mm-way h3 { font-size: 17px; margin: 0 0 6px; } +.mm-way p { font-size: 14px; line-height: 22px; color: #667085; margin: 0; } + +/* ---- membership in real life ---- */ +.mm-reals { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } +.mm-real { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; border: 1px solid #EAECF0; background: #FFFFFF; text-decoration: none; color: inherit; transition: transform 0.18s ease, box-shadow 0.18s ease; } +.mm-real:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(16,24,40,0.10); } +.mm-real-media { height: 170px; background: #F2F4F7; } +.mm-real-media img { width: 100%; height: 100%; object-fit: cover; display: block; } +.mm-real-body { padding: 18px; } +.mm-real-body h3 { font-size: 17px; margin: 0 0 6px; } +.mm-real-body p { font-size: 14px; line-height: 21px; color: #667085; margin: 0 0 10px; } +.mm-real-link { font-size: 14px; font-weight: 600; color: var(--mm-orange); display: inline-flex; align-items: center; gap: 6px; } + +/* ---- testimonials ---- */ +.mm-tests { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; } +.mm-test { margin: 0; background: #FFFFFF; border: 1px solid #EAECF0; border-radius: 16px; padding: 26px; box-shadow: 0 6px 16px rgba(16,24,40,0.04); } +.mm-test blockquote { margin: 0 0 18px; font-size: 17px; line-height: 27px; color: #101828; } +.mm-test blockquote::before { content: '\201C'; color: var(--mm-orange); font-size: 40px; line-height: 0; vertical-align: -18px; margin-right: 4px; } +.mm-test figcaption strong { display: block; font-size: 15px; } +.mm-test figcaption span { font-size: 13px; color: #98A2B3; } + +/* ---- projects showcase ---- */ +.mm-shows { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; } +.mm-show { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; border: 1px solid #EAECF0; text-decoration: none; color: inherit; background: #FFFFFF; transition: transform 0.18s ease, box-shadow 0.18s ease; } +.mm-show:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(16,24,40,0.10); } +.mm-show-media { height: 180px; background: #F2F4F7; } +.mm-show-media img { width: 100%; height: 100%; object-fit: cover; display: block; } +.mm-show h3 { font-size: 16px; margin: 0; padding: 16px 18px; line-height: 1.3; } + +/* ---- who can join ---- */ +.mm-who { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } +.mm-who-card { border: 1px solid #EAECF0; border-radius: 18px; padding: 30px; background: #FFFFFF; } +.mm-who-card:first-child { border-color: #F6C9A8; background: linear-gradient(180deg, #FFF7F1 0%, #FFFFFF 100%); } +.mm-who-ico { font-size: 26px; color: var(--mm-orange); margin-bottom: 14px; } +.mm-who-card h3 { font-size: 20px; margin: 0 0 8px; } +.mm-who-card p { font-size: 15px; line-height: 23px; color: #667085; margin: 0 0 16px; } +.mm-who-link { font-weight: 600; color: var(--mm-teal); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; } + +/* ---- multi-step form ---- */ +.ms-section { max-width: 760px; margin: 0 auto; padding: 72px 24px; } +.ms-head { text-align: center; margin-bottom: 28px; } +.ms-eyebrow { display: inline-block; color: var(--mm-orange); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; } +.ms-head h2 { font-size: 30px; margin: 0 0 8px; } +.ms-head p { color: #667085; font-size: 16px; margin: 0; } +.ms-form { background: #FFFFFF; border: 1px solid #EAECF0; border-radius: 20px; box-shadow: 0 16px 40px rgba(16,24,40,0.06); padding: 28px; } +.ms-progress { margin-bottom: 22px; } +.ms-progress[hidden] { display: none; } +.ms-progress-track { height: 6px; background: #F2F4F7; border-radius: 999px; overflow: hidden; } +.ms-progress-bar { height: 100%; width: 0; background: var(--mm-orange); border-radius: 999px; transition: width 0.3s ease; } +.ms-progress-text { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; color: #98A2B3; } +.ms-alert { background: #FEF3F2; color: #B42318; border: 1px solid #FECDCA; border-radius: 10px; padding: 10px 14px; font-size: 14px; margin-bottom: 16px; } +.ms-alert[hidden] { display: none; } +/* honeypot: off-screen, hidden from users and assistive tech, visible to naive bots */ +.ms-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; } +.ms-step[hidden] { display: none; } +.ms-step h3 { font-size: 20px; margin: 0 0 6px; } +.ms-hint { font-size: 14px; color: #98A2B3; margin: 0 0 16px; } + +.ms-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; } +.ms-path { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 28px 16px; border: 2px solid #EAECF0; border-radius: 16px; background: #FFFFFF; cursor: pointer; font-family: inherit; transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease; } +.ms-path i { font-size: 26px; color: var(--mm-orange); } +.ms-path strong { font-size: 16px; color: #101828; } +.ms-path:hover { border-color: #F6C9A8; transform: translateY(-2px); } +.ms-path.is-selected { border-color: var(--mm-orange); background: #FFF7F1; } + +.ms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 6px; } +.ms-field { display: flex; flex-direction: column; gap: 6px; } +.ms-field span { font-size: 13px; font-weight: 600; color: #344054; } +.ms-field input, .ms-field select, .ms-form textarea { + font-family: inherit; font-size: 15px; color: #101828; + padding: 11px 14px; border: 1px solid #D0D5DD; border-radius: 10px; background: #FFFFFF; width: 100%; +} +.ms-field input:focus, .ms-field select:focus, .ms-form textarea:focus { outline: none; border-color: var(--mm-orange); box-shadow: 0 0 0 3px rgba(242,118,46,0.12); } +.ms-form textarea { margin-top: 6px; resize: vertical; } +.ms-cond { margin-top: 16px; } +.ms-cond[hidden] { display: none; } + +.ms-radios { display: grid; gap: 10px; margin-top: 6px; } +.ms-radio { text-align: left; padding: 14px 16px; border: 1px solid #D0D5DD; border-radius: 12px; background: #FFFFFF; font-family: inherit; font-size: 15px; color: #344054; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; } +.ms-radio:hover { border-color: #F6C9A8; } +.ms-radio.is-selected { border-color: var(--mm-orange); background: #FFF7F1; color: #101828; font-weight: 600; } + +.ms-multi { display: flex; flex-wrap: wrap; gap: 10px; } +.ms-chip { padding: 10px 16px; border-radius: 999px; border: 1px solid #D0D5DD; background: #FFFFFF; font-family: inherit; font-size: 14px; font-weight: 500; color: #475467; cursor: pointer; transition: all 0.15s ease; } +.ms-chip:hover { border-color: #F6C9A8; } +.ms-chip.is-selected { border-color: var(--mm-orange); background: var(--mm-orange); color: #FFFFFF; } +.ms-msg { margin: 16px 0 0; padding: 12px 16px; background: #F0F6F8; border-left: 3px solid var(--mm-teal); border-radius: 8px; font-size: 14px; line-height: 21px; color: #344054; } +.ms-msg[hidden] { display: none; } + +.ms-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; line-height: 21px; color: #344054; cursor: pointer; } +.ms-check input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--mm-orange); flex: 0 0 auto; } +.ms-check a { color: var(--mm-teal); } + +.ms-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; } +.ms-nav .ms-back { margin-right: auto; } +.ms-nav [hidden] { display: none; } + +/* success */ +.ms-success { text-align: center; background: #FFFFFF; border: 1px solid #EAECF0; border-radius: 20px; box-shadow: 0 16px 40px rgba(16,24,40,0.06); padding: 44px 28px; } +.ms-success[hidden] { display: none; } +.ms-success-icon { font-size: 48px; color: #2E9E6B; margin-bottom: 14px; } +.ms-success-title { font-size: 26px; margin: 0 0 10px; } +.ms-success-text { color: #667085; font-size: 16px; line-height: 25px; max-width: 520px; margin: 0 auto 24px; } +.ms-success-next { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #98A2B3; margin: 0 0 14px; } +.ms-success-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; } + +/* ---- faq ---- */ +.mm-faqs { max-width: 780px; margin: 32px auto 0; } +.mm-faq { border: 1px solid #EAECF0; border-radius: 12px; margin-bottom: 12px; background: #FFFFFF; } +.mm-faq summary { list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; } +.mm-faq summary::-webkit-details-marker { display: none; } +.mm-faq summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 13px; color: var(--mm-orange); transition: transform 0.2s ease; } +.mm-faq[open] summary::after { transform: rotate(180deg); } +.mm-faq-a { padding: 0 20px 20px; color: #667085; font-size: 15px; line-height: 24px; } +.mm-faq-a p { margin: 0; } + +/* ---- final cta ---- */ +.mm-final { text-align: center; padding: 80px 24px; background: linear-gradient(135deg, #F2762E 0%, #E85D2A 100%); color: #FFFFFF; } +.mm-final h2 { font-size: 32px; margin: 0 auto 12px; max-width: 720px; } +.mm-final p { font-size: 18px; line-height: 28px; margin: 0 auto 28px; max-width: 640px; color: rgba(255,255,255,0.92); } +.mm-final .btn { background: #FFFFFF; color: #E85D2A; border: none; } +.mm-final .btn:hover { background: #FFF3EC; } + +/* ---- responsive ---- */ +@media (max-width: 900px) { + .mm-hero { grid-template-columns: 1fr; padding: 100px 20px 48px; } + .mm-hero h1 { font-size: 38px; } + .mm-hero-collage { height: 340px; } + .mm-who { grid-template-columns: 1fr; } +} +@media (max-width: 600px) { + .mm-h2 { font-size: 26px; } + .ms-grid, .ms-paths { grid-template-columns: 1fr; } + .ms-form { padding: 20px; } + .mm-num-value { font-size: 38px; } + .ms-success-links .btn { width: 100%; } +} diff --git a/css/pages/_news.css b/css/pages/_news.css new file mode 100644 index 00000000..8810a4f1 --- /dev/null +++ b/css/pages/_news.css @@ -0,0 +1,142 @@ +/* ========================================================================== + News hub (//news/) — filterable feed of projects, blog and news + ========================================================================== */ +.news-hub { font-family: 'Inter', sans-serif; } + +.newshub-hero { + background: linear-gradient(180deg, #F5FAFB 0%, #FFFFFF 100%); + padding: 112px 24px 40px; /* clears the fixed 80px header */ + text-align: center; +} +.newshub-eyebrow { + display: inline-block; + color: #2D738C; + font-weight: 700; + font-size: 14px; + letter-spacing: 0.06em; + text-transform: uppercase; + margin-bottom: 12px; +} +.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-list { max-width: 1120px; margin: 40px auto 72px; padding: 0 24px; } +.newshub-filters { + display: flex; + flex-wrap: wrap; + gap: 10px; + margin-bottom: 28px; + padding-bottom: 24px; + border-bottom: 1px solid #EAECF0; +} +.newshub-chip { + font-family: inherit; + font-size: 14px; + font-weight: 600; + color: #475467; + background: #F2F4F7; + border: 1px solid transparent; + border-radius: 999px; + padding: 9px 16px; + cursor: pointer; + transition: background 0.15s ease, color 0.15s ease; +} +.newshub-chip:hover { background: #E4E7EC; } +.newshub-chip.is-active { background: #101828; color: #FFFFFF; } + +.newshub-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); + gap: 24px; +} +.newshub-card { + display: flex; + flex-direction: column; + background: #FFFFFF; + border: 1px solid #EAECF0; + border-radius: 16px; + overflow: hidden; + box-shadow: 0 4px 12px rgba(16, 24, 40, 0.04); + transition: transform 0.18s ease, box-shadow 0.18s ease; +} +.newshub-card[hidden] { display: none; } +.newshub-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(16, 24, 40, 0.10); } +.newshub-media { position: relative; display: block; } +.newshub-media img { width: 100%; height: 190px; object-fit: cover; display: block; } +.newshub-media .news-ph { + height: 190px; + display: flex; + align-items: center; + justify-content: center; + font-size: 38px; + color: #B7BDC7; + background: linear-gradient(135deg, #F2F4F7 0%, #E4E7EC 100%); +} +.newshub-media .news-badge { + position: absolute; + top: 12px; + left: 12px; + display: inline-flex; + align-items: center; + gap: 6px; + font-size: 12px; + font-weight: 600; + color: #FFFFFF; + padding: 4px 10px; + border-radius: 999px; + background: #101828; +} +.newshub-media .news-badge i { font-size: 11px; } +.newshub-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; } +.newshub-date { font-size: 13px; font-weight: 600; color: #98A2B3; margin: 0; } +.newshub-card h3 { margin: 0; font-size: 19px; line-height: 1.3; } +.newshub-card h3 a { color: #101828; text-decoration: none; } +.newshub-card h3 a:hover { color: #2D738C; } +.newshub-excerpt { margin: 0; font-size: 14px; line-height: 22px; color: #667085; } + +/* Pagination reuses the shared .pagination look; reset button chrome */ +.newshub-pagination { margin-top: 44px; } +.newshub-pagination .pagination-arrow, +.newshub-pagination .page-number { + background: transparent; + border: none; + font-family: inherit; +} + +@media (max-width: 768px) { + .newshub-hero { padding: 92px 20px 32px; } + .newshub-hero h1 { font-size: 30px; } +} + +/* ========================================================================== + Standalone announcement article (/lang/news//) + ========================================================================== */ +.news-article { font-family: 'Inter', sans-serif; padding: 112px 24px 72px; /* clears the fixed 80px header */ } +.news-article-inner { max-width: 720px; margin: 0 auto; } +.news-back { + display: inline-flex; align-items: center; gap: 8px; + color: #2D738C; font-weight: 600; font-size: 15px; text-decoration: none; margin-bottom: 24px; +} +.news-back:hover { text-decoration: underline; } +.news-article .newshub-eyebrow { display: block; text-align: left; } +.news-article h1 { font-size: 38px; line-height: 1.15; color: #101828; margin: 0 0 12px; } +.news-article-date { color: #667085; font-size: 15px; margin: 0 0 24px; } +.news-article-hero { margin: 0 0 28px; } +.news-article-hero img { width: 100%; height: auto; border-radius: 14px; display: block; } +.news-article-hero figcaption { margin-top: 8px; font-size: 13px; color: #98A2B3; } +.news-article-hero figcaption a { color: #667085; text-decoration: underline; } +.news-article-body p { font-size: 18px; line-height: 30px; color: #344054; margin: 0 0 18px; } +.news-source { + display: flex; flex-direction: column; gap: 6px; + margin: 28px 0; padding: 18px 20px; + background: #F5FAFB; border: 1px solid #E4EEF1; border-left: 4px solid #2D738C; border-radius: 10px; +} +.news-source-label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #2D738C; } +.news-source a { color: #175163; font-weight: 600; font-size: 16px; word-break: break-word; } +.news-article-cta { display: inline-block; margin-top: 12px; } + +@media (max-width: 768px) { + .news-article { padding: 92px 20px 48px; } + .news-article h1 { font-size: 28px; } + .news-article-body p { font-size: 17px; line-height: 28px; } +} diff --git a/en/about-us/index.html b/en/about-us/index.html index 429d9b3f..c7132a3e 100644 --- a/en/about-us/index.html +++ b/en/about-us/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -349,54 +333,57 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- + diff --git a/en/become-a-member/index.html b/en/become-a-member/index.html new file mode 100644 index 00000000..3515a815 --- /dev/null +++ b/en/become-a-member/index.html @@ -0,0 +1,564 @@ + + + + + + Become a member - MSOS + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Select Language

+ +
+ +
+
+ + +
+
+
+ Become a member +

Find your people in Slovenia

+

Meet people, join events, get support, create projects and become part of the Macedonian student community across Slovenia.

+ +
+
Meet Student Slovenia 2024
Macedonian Student Night in Ljubljana
Cheering for Macedonia, Watching Handball Together in Slovenia
+
+ +
+

Why become a member?

+
+
+
+

Find your people

Meet Macedonian students across Slovenia and build friendships outside the classroom.

+
+
+
+

Feel supported

Get practical help, local knowledge and a community that understands studying abroad.

+
+
+
+

Join memorable events

Social evenings, cultural events, sports, trips, workshops and student gatherings.

+
+
+
+

Build experience

Develop skills through volunteering, communication, project work and event organisation.

+
+
+
+

Create something meaningful

Bring ideas, join projects and help shape activities for the community.

+
+
+
+

Grow your network

Meet students, alumni, professionals, institutions and partners.

+
+
+
+

Feel at home away from home

Belong to a community where you never have to explain where you come from.

+
+
+
+ +
+

MSOS in numbers

+
+
0active members
+
0events and activities
+
0participants
+
0partners
+
+

Figures to confirm before launch.

+
+ +
+

There is more than one way to be part of MSOS

+

You do not need to organise events or lead to belong. Join in the way that fits you.

+
+
+
+

Stay connected

Receive updates and know what is happening.

+
+
+
+

Join the community

Come to events, meet people and take part when it suits you.

+
+
+
+

Volunteer sometimes

Help with selected activities without a long-term commitment.

+
+
+
+

Join projects

Contribute to specific initiatives, campaigns, guides or collaborations.

+
+
+
+

Organise events

Help plan, coordinate, promote and deliver activities.

+
+
+
+

Take responsibility

Explore leadership, governance, representation or local team roles.

+
+
+
+ +
+

What being part of MSOS actually looks like

+ +
+ +
+

Why students joined, and why they stayed

+
+
+
I joined because I wanted to meet people. I stayed because MSOS became part of my life in Slovenia.
+
AnaStudent, Ljubljana
+
+
+
When I moved to Slovenia, I did not know where to begin. Through MSOS I found support, friends and opportunities.
+
MarkoStudent, Maribor
+
+
+
Being part of the team taught me more than any classroom. I organised events, met partners and grew a lot.
+
ElenaVolunteer, Koper
+
+
+

Sample quotes to replace with real testimonials.

+
+ +
+

See MSOS in action

+ + +
+ +
+

There is a place for you here

+
+

For students

Current students, future students, bachelor and master students, in every Slovenian study city.

I am a student
+

For supporters

You do not need to be a student to support the community. Contribute through knowledge, partnerships, mentorship, volunteering, sponsorships, media or useful connections.

I want to support MSOS
+
+
+ +
+
+ Membership form +

Join in a couple of minutes

+

A few friendly questions. You do not need to decide now how active you want to be.

+
+
+ + + + +
+

How would you like to connect with MSOS?

+
+ + +
+
+ +
+

Tell us who you are

+
+
+
+

Where are you in your student journey?

+
+ + + + +
+
+
+
+
+
+
+
+
+
+
+
+

What sounds most like you?

+

Choose as many as you like.

+
+ + + + + + + + + + +
+ + + +
+
+

What would you like to be part of?

+

Choose as many as you like.

+
+ + + + + + + + + + + + +
+
+
+

Where should we connect you?

+
+ + + + + + + +
+ +
+
+

What would make MSOS valuable to you? (optional)

+ +
+
+ + + +
+ +
+

Tell us who you are

+
+
+
+

How would you like to support MSOS?

+

Choose as many as you like.

+
+ + + + + + + + + + +
+
+
+

Tell us how you would like to contribute (optional)

+ +
+
+ + +
+ +
+ + + +
+
+ + +
+ +
+

Good to know

+
+
Is membership only for students in Ljubljana?

No. MSOS is for Macedonian students across Slovenia, including Maribor, Koper, Nova Gorica, Celje and other study cities.

+
Can I join before moving to Slovenia?

Yes. Future students can join, receive updates and connect with people before arriving.

+
Do I need to be highly active?

No. You can join events, stay informed, volunteer occasionally, or take on a larger role later.

+
Is there a membership fee?

Yes, membership is €10 per year, which helps us organise events and support students across Slovenia.

+
Can non-students support MSOS?

Yes. Parents, alumni, professionals, companies and other supporters can contribute through mentorship, partnerships, sponsorships, expertise, volunteering or useful connections.

+
What happens after I submit the form?

The MSOS team reviews your information and contacts you with the next step.

+
Can I change how involved I am later?

Yes. Members can become more or less active depending on their interests and availability.

+
+
+ +
+

Your student story in Slovenia can start here

+

Whether you are looking for support, friendship, opportunities or a place to belong, MSOS is ready to welcome you.

+ Become a member +
+
+ + + + + + + + + diff --git a/en/blog/index.html b/en/blog/index.html new file mode 100644 index 00000000..410f1315 --- /dev/null +++ b/en/blog/index.html @@ -0,0 +1,345 @@ + + + + + + Blog - MSOS + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Select Language

+ +
+ +
+
+ + +
+
+ Blog +

Stories, tips and student life

+

Real experiences and practical advice from Macedonian students in Slovenia. New stories are on the way.

+
+ +
+
+ + + + + + +
+
+
+
+
+ Living in Slovenia +

Weekend trips from your study city

+

This story is on the way. We are preparing helpful, first-hand tips for Macedonian students in Slovenia.

+ Coming soon +
+
+
+
+
+ Community +

Meet the MSOS team

+

This story is on the way. We are preparing helpful, first-hand tips for Macedonian students in Slovenia.

+ Coming soon +
+
+
+
+
+ Study tips +

Choosing the right faculty

+

This story is on the way. We are preparing helpful, first-hand tips for Macedonian students in Slovenia.

+ Coming soon +
+
+
+
+
+ Student life +

Budgeting on a student stipend

+

This story is on the way. We are preparing helpful, first-hand tips for Macedonian students in Slovenia.

+ Coming soon +
+
+
+
+
+ Guides +

Registering your residence, step by step

+

This story is on the way. We are preparing helpful, first-hand tips for Macedonian students in Slovenia.

+ Coming soon +
+
+
+
+
+ Living in Slovenia +

Where Macedonians meet in Slovenia

+

This story is on the way. We are preparing helpful, first-hand tips for Macedonian students in Slovenia.

+ Coming soon +
+
+
+
+
+ Community +

How to volunteer with MSOS

+

This story is on the way. We are preparing helpful, first-hand tips for Macedonian students in Slovenia.

+ Coming soon +
+
+
+
+
+ Study tips +

Learning Slovene: where to start

+

This story is on the way. We are preparing helpful, first-hand tips for Macedonian students in Slovenia.

+ Coming soon +
+
+
+
+
+ + + + + + + + + diff --git a/en/cookie-policy/index.html b/en/cookie-policy/index.html index 0cced852..4fc5a402 100644 --- a/en/cookie-policy/index.html +++ b/en/cookie-policy/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -239,52 +223,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/faq/index.html b/en/faq/index.html new file mode 100644 index 00000000..b30d1890 --- /dev/null +++ b/en/faq/index.html @@ -0,0 +1,496 @@ + + + + + + Frequently asked questions - MSOS + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Select Language

+ +
+ +
+
+ + +
+
+ Support +

Frequently asked questions

+

Short answers to the questions Macedonian students ask most about studying and living in Slovenia. Full detail and official sources live in the Student Welcome Guide.

+
+
+
+

Admission and enrolment

+
+ How do I apply to a faculty through the eVŠ portal? +
+

You submit your application online on the national eVŠ portal, in the round and with the login method that apply to foreign applicants.

+ Read more in the guide +
+
+
+ What are the application deadlines and rounds for 2026/2027? +
+

Foreign applicants apply in their own rounds, bachelor’s usually opens in spring and master’s deadlines are set by each faculty, so always confirm the current dates for your programme.

+ Read more in the guide +
+
+
+ As a Macedonian applicant, which round and conditions apply to me? +
+

You apply as a non-EU (third-country) applicant, usually competing for a limited number of foreign-student places rather than in the general Slovenian round.

+ Read more in the guide +
+
+
+ How many non-EU places does my programme have? +
+

Some programmes reserve only a handful of places for non-EU students (competitive fields like dentistry may take just one or two), so check your programme and keep a backup option.

+ Read more in the guide +
+
+
+ Is there an entrance or aptitude exam for my field? +
+

Most programmes have no entrance exam, the exceptions are fields like art, architecture, sport and dental prosthetics.

+ Read more in the guide +
+
+
+ Do I need a B2 Slovenian language certificate? +
+

Only a few programmes require a B2 Slovene certificate, medicine, dentistry, pharmacy, psychology, film/directing and journalism, while most others do not.

+ Read more in the guide +
+
+
+
+

Recognition and documents

+
+ Does my Macedonian diploma need recognition before I can enrol? +
+

Yes, the university you apply to assesses your previous Macedonian education as part of admission, so you submit your diplomas and transcripts with your application.

+ Read more in the guide +
+
+
+ Do my documents need an apostille and a certified (sodni) translation? +
+

Your key documents usually need an apostille from Macedonia and a certified court (sodni) translation into Slovene, arrange both before you leave.

+ Read more in the guide +
+
+
+ Which documents should I prepare and translate before I leave Macedonia? +
+

Prepare and translate your diploma, transcripts, birth certificate and criminal-record certificate in advance, because it is much harder to obtain and legalise them once you are in Slovenia.

+ Read more in the guide +
+
+
+
+

Tuition and scholarships

+
+ Is study free for me as a Macedonian, or do I pay tuition? +
+

Under the Slovenia and Macedonia bilateral agreement, full-time bachelor’s and master’s study at public universities is tuition-free for Macedonian citizens (self-funded or second programmes may still be charged).

+ Read more in the guide +
+
+
+ Can I get a scholarship? +
+

Yes, you can look into state scholarships, Ad Futura, CEEPUS and faculty scholarships, each with its own conditions and deadlines.

+ Read more in the guide +
+
+
+
+

Residence permit and visa

+
+ Do I need a visa to enter Slovenia, or is the residence permit enough? +
+

As a Macedonian citizen you can enter visa-free for short stays, but to study you need a temporary residence permit for study, which you normally arrange before you move.

+ Read more in the guide +
+
+
+ How do I get the residence permit, and where do I apply? +
+

You usually apply at the Slovenian embassy in Skopje before you arrive, or at the local administrative unit (upravna enota) once you are in Slovenia.

+ Read more in the guide +
+
+
+ Which documents do I need for the permit? +
+

You typically need your enrolment certificate, a valid passport, proof of sufficient means, health insurance, a criminal-record certificate and the required fees.

+ Read more in the guide +
+
+
+ How much must I prove as "sufficient means", and does a parent’s statement count? +
+

You must show around €507,43 per month, the Slovenian basic minimum income from 1 April 2026 (check the current amount), and a parent’s notarised statement of support is the usual, durable way to prove it.

+ Read more in the guide +
+
+
+ How long is the permit valid and how do I renew it each year? +
+

The permit is issued for your study year and must be renewed annually, submit the renewal by 30 September (you can apply up to about 60 days before it expires), because missing that turns it into a brand-new application.

+ Read more in the guide +
+
+
+ Do I have to register my address after I move in? +
+

Yes, you must register your temporary address at the administrative unit within 8 days of moving in.

+ Read more in the guide +
+
+
+
+

Health insurance

+
+ What is RM/SI 3 and do I need it for health cover? +
+

RM/SI 3 is the certificate from the two-country procedure that gives you basic health cover in Slovenia based on your Macedonian insurance, and yes, you need it.

+ Read more in the guide +
+
+
+ Am I insured from day one, and what insurance do I need for the permit? +
+

You need valid health insurance in place for your residence permit, so arrange the RM/SI 3 cover (and optional complementary insurance) before or right after you arrive.

+ Read more in the guide +
+
+
+ How do I register a personal doctor? +
+

Once insured, you choose and register a personal doctor (for the duration of your studies) at a health centre in your study city.

+ Read more in the guide +
+
+
+
+

Accommodation

+
+ Can I get a subsidised student-dorm room as a foreign degree student? +
+

Usually no, subsidised dormitory places are reserved for Slovenian and EU students, so self-funded foreign degree students normally rent privately.

+ Read more in the guide +
+
+
+ Where will I live and what are my housing options? +
+

Most students rent a private room or a shared flat, and some use student-housing brokers or private halls of residence in their study city.

+ Read more in the guide +
+
+
+ How much does housing cost and what do I pay upfront? +
+

Private rooms run roughly €200 to €400 a month (studios more), and you usually pay a deposit plus the first month’s rent when you move in.

+ Read more in the guide +
+
+
+
+

Meals and transport

+
+ How do I register for subsidised student meals, and am I eligible? +
+

Yes, students with valid status (including foreign students) can use subsidised meals (boni), you register once online with your student data and a phone or chip card.

+ Read more in the guide +
+
+
+ How do I get the subsidised public-transport ticket, and am I eligible? +
+

Students can buy the subsidised IJPP intercity ticket regardless of how far you live from your faculty, you apply with your student status, and city transport (like Urbana in Ljubljana) is added on top.

+ Read more in the guide +
+
+
+
+

Work and admin basics

+
+ Can I work while studying on a student residence permit? +
+

Yes, student work through a napotnica (referral) is allowed on a student residence permit; a full employment contract is different and needs a change of permit.

+ Read more in the guide +
+
+
+ What do I need to start working through a student service? +
+

You register with a student service and need a Slovenian tax number, an EMŠO and usually a bank account, plus a napotnica before each job starts.

+ Read more in the guide +
+
+
+ How do I get an EMŠO and a Slovenian tax number, and why do I need them? +
+

You obtain an EMŠO (personal ID number) and a tax number from the administrative unit and the financial office (FURS); you need them to open a bank account, work and handle most admin.

+ Read more in the guide +
+
+
+ What is the difference between student work and full employment? +
+

Student work via napotnica is flexible and allowed on your study permit, while regular employment is a formal job that generally requires changing your permit from study to work.

+ Read more in the guide +
+
+
+
+

Money, status and after graduation

+
+ What must I sort out in my first week after arriving? +
+

In your first days you register your address, sort out health insurance, get your EMŠO and tax number, open a bank account and activate meals and transport.

+ Read more in the guide +
+
+
+ How much money do I realistically need per month? +
+

Most students budget roughly €455 to €850 a month depending on the city, with a higher first month for the deposit and setup costs.

+ Read more in the guide +
+
+
+ What is student status and what rights does it give me? +
+

Student status is your active enrolment as a student, and it is what unlocks subsidised meals, transport, student work and other benefits.

+ Read more in the guide +
+
+
+ Can I stay in Slovenia to look for work after I graduate? +
+

Yes, after graduating you can apply for a residence permit for job-seeking (about nine months) to stay and look for work.

+ Read more in the guide +
+
+
+
+
+

Still have a question?

+

Write to us and we will help you find the right institution or answer. You can also join our Viber community of Macedonian students already living in Slovenia.

+ +
+
+ + + + + + + diff --git a/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html b/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html index c6061471..9eb9be61 100644 --- a/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html +++ b/en/get-to-know-macedonia/a-table-full-of-macedonia/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -316,52 +300,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html b/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html index 3950971b..2cc55bfc 100644 --- a/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html +++ b/en/get-to-know-macedonia/history-you-can-still-walk-through/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -322,52 +306,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-macedonia/index.html b/en/get-to-know-macedonia/index.html index da693a1c..8e3920e0 100644 --- a/en/get-to-know-macedonia/index.html +++ b/en/get-to-know-macedonia/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -291,52 +275,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html b/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html index c7565c16..e4045d4c 100644 --- a/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html +++ b/en/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -322,52 +306,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html b/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html index 2317fa89..34ab6fee 100644 --- a/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html +++ b/en/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -314,52 +298,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html b/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html index d2552706..e885ea96 100644 --- a/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html +++ b/en/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -304,52 +288,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-macedonia/welcome-to-macedonia/index.html b/en/get-to-know-macedonia/welcome-to-macedonia/index.html index 7edb41e2..e5d5be05 100644 --- a/en/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/en/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -301,52 +285,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html b/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html index 308ae58c..cff2658f 100644 --- a/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html +++ b/en/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -306,52 +290,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-slovenia/index.html b/en/get-to-know-slovenia/index.html index e5c3f250..7374b3ab 100644 --- a/en/get-to-know-slovenia/index.html +++ b/en/get-to-know-slovenia/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -291,52 +275,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html b/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html index f33a0f45..db9c1d62 100644 --- a/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html +++ b/en/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -302,52 +286,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html b/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html index 19f29c49..f23830fc 100644 --- a/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html +++ b/en/get-to-know-slovenia/ljubljana-through-our-eyes/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -296,52 +280,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html b/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html index 80be6da5..486886c8 100644 --- a/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html +++ b/en/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -323,52 +307,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html b/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html index 6d1d2912..efdc83bd 100644 --- a/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html +++ b/en/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -308,52 +292,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/get-to-know-slovenia/welcome-to-slovenia/index.html b/en/get-to-know-slovenia/welcome-to-slovenia/index.html index 963e9b81..3db9abf5 100644 --- a/en/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/en/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -279,52 +263,54 @@ +

Masarykova cesta 24
1000 Ljubljana, Slovenia
- +389 02 123 4567
- info.msosorg@gmail.com + info@msosorg.com


- diff --git a/en/index.html b/en/index.html index e64417bc..47ad47a8 100644 --- a/en/index.html +++ b/en/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -187,16 +171,43 @@

Empowering young people with skills to change the world

Be part of our exciting journey; Become a part of our student organization today!

- + Become a member
-
- Slovenian Embassy in Skopje logo - University of Ljubljana School of Economics and Business logo - NLB Banka logo - Embassy of North Macedonia in Slovenia logo +

Our partners and supporters

+
+
+
+ Embassy of the Republic of Slovenia in Skopje + NLB Banka + Central Technological Library (CTK), University of Ljubljana + Association of Slovenian and Macedonian Entrepreneurs (DSMP) + Kampus + Povezani + + + + + + +
+ +
@@ -207,8 +218,8 @@
-

Every Student Has a Story – Here’s Ours

-

Curious about what MSOS is all about? This video tells our story—fast, fun, and from the heart. See what makes MSOS special in our video—and hit “Learn more” to be part of the story.

+

Every Student Has a Story, Here’s Ours

+

Curious about what MSOS is all about? This video tells our story, fast, fun, and from the heart. See what makes MSOS special in our video, and hit “Learn more” to be part of the story.

Learn more
@@ -216,7 +227,7 @@

Activities

-

Our philosophy is simple — hire a team of diverse, passionate people and foster a culture that empowers you to do you best work.

+

Our philosophy is simple, hire a team of diverse, passionate people and foster a culture that empowers you to do you best work.

@@ -226,7 +237,7 @@
  • Education & Culture
  • Student Representation
  • - + Become a member

    We know moving to a new country can feel overwhelming, so we’re here to make it easier. From helping you with university applications to finding your way around student life in Slovenia, you can always count on us. We offer free consultations, answer your questions on Instagram and Facebook (yes, even late at night), and host events where you can meet others and hear real experiences first-hand. With mentorship, info sessions, and a friendly community by your side, you’ll never have to go through the journey alone.

    @@ -235,38 +246,44 @@
    -
    +

    Latest news

    -

    Dignissim senectus ut senectus curabitur condimentum gravida cras nibh ac. Lorem scelerisque tortor rhoncus viverra pharet.

    +

    What is new at MSOS, from events and projects to blog stories and announcements.

    -
    - Pink and blue tinted image of a snowy mountain peak + -
    - See all + See all
    @@ -376,7 +393,7 @@

    Frequently asked questions

    -

    Everything you wanted to know about studying and living in Slovenia — in one place.

    +

    Everything you wanted to know about studying and living in Slovenia, in one place.

    @@ -392,7 +409,7 @@

    Can I study in English, or do I need Slovene language?

    -

    Find out which programs are in English—and when learning Slovene helps.

    +

    Find out which programs are in English, and when learning Slovene helps.

    @@ -418,7 +435,7 @@

    Still have questions?

    Can’t find the answer you’re looking for? Please chat to our friendly team.

    - + See all FAQs
    @@ -432,54 +449,57 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/en/news/index.html b/en/news/index.html new file mode 100644 index 00000000..09cc002b --- /dev/null +++ b/en/news/index.html @@ -0,0 +1,420 @@ + + + + + + News and updates - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Select Language

    + +
    + +
    +
    + + +
    +
    + News +

    News and updates

    +

    Everything new at MSOS in one place: events and projects, blog stories and announcements.

    +
    +
    +
    + + + + +
    +
    + + + + + + + + + + + + + + + + +
    + +
    +
    + + + + + + + + diff --git a/en/news/proof-of-means-updated-2026/index.html b/en/news/proof-of-means-updated-2026/index.html new file mode 100644 index 00000000..f435ff77 --- /dev/null +++ b/en/news/proof-of-means-updated-2026/index.html @@ -0,0 +1,245 @@ + + + + + + Proof-of-means amount updated to €507,43 per month - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Select Language

    + +
    + +
    +
    + + +
    +
    + Back to news + News +

    Proof-of-means amount updated to €507,43 per month

    + +
    + A cash box filled with euro coins and banknotes +
    Image by Alexa from Pixabay
    +
    +
    +

    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 Slovenia’s basic minimum income (osnovni znesek minimalnega dohodka).

    +

    From 1 April 2026 this basic minimum income is €507,43 per month. This is the amount you should be ready to show for the whole academic year, most commonly through a parent’s written statement of support, or through other accepted proof such as a scholarship, bank funds, or student-work earnings.

    +

    Because the figure follows the minimum income, it can change again. Always confirm the current official amount with your upravna enota (administrative unit) before you submit, and ask how they calculate the period and which evidence they accept.

    +
    + + Read the residence permit guide +
    +
    + + + + + + + + + diff --git a/en/privacy-policy/index.html b/en/privacy-policy/index.html index e0b5d485..fb9c9be4 100644 --- a/en/privacy-policy/index.html +++ b/en/privacy-policy/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -284,52 +268,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/projects/humanitarian-tournament-in-maribor/index.html b/en/projects/humanitarian-tournament-in-maribor/index.html index 50b30820..4e7a528a 100644 --- a/en/projects/humanitarian-tournament-in-maribor/index.html +++ b/en/projects/humanitarian-tournament-in-maribor/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -178,7 +162,7 @@

    Published on April 5, 2025

    Humanitarian Sports Tournament: Playing with Heart, Together for Kočani

    -

    Over 200 students gathered in Maribor, raising €1,000 through sport to support families hit by the Kočani tragedy.

    +

    Over 200 students gathered in Maribor, raising €1.000 through sport to support families hit by the Kočani tragedy.

    @@ -227,7 +211,7 @@

    The humanitarian impact

    -

    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.

    +

    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.

    High-fives, trophies, and smiles, celebrating victory on and off the court. @@ -272,52 +256,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/projects/in-memory-of-frosina-kulakova/index.html b/en/projects/in-memory-of-frosina-kulakova/index.html index 62bd4b4a..a665499c 100644 --- a/en/projects/in-memory-of-frosina-kulakova/index.html +++ b/en/projects/in-memory-of-frosina-kulakova/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -221,52 +205,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/projects/in-memory-of-the-kochani-victims/index.html b/en/projects/in-memory-of-the-kochani-victims/index.html index cab4351b..c67b9451 100644 --- a/en/projects/in-memory-of-the-kochani-victims/index.html +++ b/en/projects/in-memory-of-the-kochani-victims/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -231,52 +215,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/projects/index.html b/en/projects/index.html index ecd35db5..356d3b50 100644 --- a/en/projects/index.html +++ b/en/projects/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -277,13 +261,13 @@ - + @@ -340,54 +324,57 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/en/projects/macedonian-student-night-in-ljubljana/index.html b/en/projects/macedonian-student-night-in-ljubljana/index.html index 4ed03809..9ea372b0 100644 --- a/en/projects/macedonian-student-night-in-ljubljana/index.html +++ b/en/projects/macedonian-student-night-in-ljubljana/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -206,7 +190,7 @@

    Published on October 8, 2022

    Macedonian Student Night in Ljubljana

    -

    From an idea to a party with 500 students – that's how our story began!

    +

    From an idea to a party with 500 students, that's how our story began!

    @@ -214,18 +198,18 @@
    -

    On October 8, 2022, in the heart of the Student Campus in Ljubljana, the first Macedonian Student Night in Slovenia took place. Under the motto #FeelsLikeHome, more than 500 young people enjoyed Macedonian music, delicious traditional food, and an atmosphere that felt like home. This event was not just a party – it was the beginning of a new story, which would later grow into the Macedonian Student Organization in Slovenia (MSOS).

    +

    On October 8, 2022, in the heart of the Student Campus in Ljubljana, the first Macedonian Student Night in Slovenia took place. Under the motto #FeelsLikeHome, more than 500 young people enjoyed Macedonian music, delicious traditional food, and an atmosphere that felt like home. This event was not just a party, it was the beginning of a new story, which would later grow into the Macedonian Student Organization in Slovenia (MSOS).

    How an idea for socializing became the start of a movement

    -

    It all began with a simple wish – to gather, get to know each other, and feel Macedonia, even though we were far from it. Kristijan Popovski, then a student at the School of Economics and Business in Ljubljana, shared his idea with a few colleagues, and the response was incredible. In less than two weeks, over 40 students joined the organizing team. Everyone contributed their enthusiasm and time, and the shared spirit and desire to connect turned this spontaneous initiative into an event we would remember for a long time.

    +

    It all began with a simple wish, to gather, get to know each other, and feel Macedonia, even though we were far from it. Kristijan Popovski, then a student at the School of Economics and Business in Ljubljana, shared his idea with a few colleagues, and the response was incredible. In less than two weeks, over 40 students joined the organizing team. Everyone contributed their enthusiasm and time, and the shared spirit and desire to connect turned this spontaneous initiative into an event we would remember for a long time.

    Preparations and meetings for the Macedonian Student Night
    Photos from the preparations and meetings for organizing the Macedonian Student Night.
    -

    From that moment on, we spent every free moment in the offices of the student organization Povezani, which gave us great support in organizing. Days and nights were spent planning, holding meetings, and writing social media posts – all with the goal of creating an event that we initially thought would attract, if we were lucky, about 100 visitors.

    -

    A week before the event, we posted interesting facts about Macedonia every day – its national treasures, music, and culture. Slowly but surely, we built the atmosphere and excitement, not only among Macedonian students but also among many others who wanted to feel our energy.

    +

    From that moment on, we spent every free moment in the offices of the student organization Povezani, which gave us great support in organizing. Days and nights were spent planning, holding meetings, and writing social media posts, all with the goal of creating an event that we initially thought would attract, if we were lucky, about 100 visitors.

    +

    A week before the event, we posted interesting facts about Macedonia every day, its national treasures, music, and culture. Slowly but surely, we built the atmosphere and excitement, not only among Macedonian students but also among many others who wanted to feel our energy.

    Poster where Slovenians learn the Macedonian alphabet @@ -233,8 +217,8 @@
    -

    “Organizing the first MSOS party was a one-of-a-kind experience – sleepless, ambitious, and involved in everything from logistics to mopping the floor... Thank goodness for Red Bull 😉 (P.S. We drank the entire fridge supply!)”

    -
    — Marko - first-year student (at the time)
    +

    “Organizing the first MSOS party was a one-of-a-kind experience, sleepless, ambitious, and involved in everything from logistics to mopping the floor... Thank goodness for Red Bull 😉 (P.S. We drank the entire fridge supply!)”

    +
    , Marko - first-year student (at the time)

    The taste and smell of Macedonia in the heart of Ljubljana

    @@ -245,7 +229,7 @@
    Photos of the stands with Macedonian symbols, traditional food, and drinks.
    -

    In addition to the food, visitors could explore interesting facts about the country, photos of famous Macedonian figures and cultural landmarks, and see traditional costumes and a gaida up close. The atmosphere was warm and full of curiosity – like a small exhibition within a large student party.

    +

    In addition to the food, visitors could explore interesting facts about the country, photos of famous Macedonian figures and cultural landmarks, and see traditional costumes and a gaida up close. The atmosphere was warm and full of curiosity, like a small exhibition within a large student party.

    Mini quiz about Macedonia @@ -261,16 +245,16 @@

    We were especially honored to welcome the Ambassador of North Macedonia to Slovenia, Mrs. Suzana Zelenkovska, who gave warm words of encouragement and support to the youth. Her presence and interest in the event were an additional motivation to continue our mission of connecting and promoting the Macedonian student community.

    -

    The party had great energy spreading everywhere – at one point there was a small but controlled chaos. Even though the event ended slightly earlier than planned, the students kept singing together for another hour while we were cleaning up the place. Truly, a night to remember!

    +

    The party had great energy spreading everywhere, at one point there was a small but controlled chaos. Even though the event ended slightly earlier than planned, the students kept singing together for another hour while we were cleaning up the place. Truly, a night to remember!

    -

    “I was part of the organizing team and was supposed to maintain order among the students, but when they played the song 'Biser Balkanski,' I couldn't resist – so I joined in as well... That was my special moment that night!”

    -
    — Hristijan - second-year student (at the time)
    +

    “I was part of the organizing team and was supposed to maintain order among the students, but when they played the song 'Biser Balkanski,' I couldn't resist, so I joined in as well... That was my special moment that night!”

    +
    , Hristijan - second-year student (at the time)

    A beginning to remember

    -

    That night wasn't just another student party – it was the moment we realized we had started something bigger. Instead of the expected 100 guests, about 500 students came to the club, and the energy was incredible. New friendships were made, songs were sung from the heart, and Macedonian culture and tradition took center stage for the entire evening.

    -

    This night laid the foundation for the Macedonian Student Organization in Slovenia and showed us that with enthusiasm, unity, and a bit of courage, it's possible to create something that brings people together and gives them a sense of home – even when they are far away from it.

    +

    That night wasn't just another student party, it was the moment we realized we had started something bigger. Instead of the expected 100 guests, about 500 students came to the club, and the energy was incredible. New friendships were made, songs were sung from the heart, and Macedonian culture and tradition took center stage for the entire evening.

    +

    This night laid the foundation for the Macedonian Student Organization in Slovenia and showed us that with enthusiasm, unity, and a bit of courage, it's possible to create something that brings people together and gives them a sense of home, even when they are far away from it.

    The dedicated team of volunteers after cleaning up the venue @@ -324,54 +308,57 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html b/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html index b0ac1e30..628c9455 100644 --- a/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html +++ b/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -178,7 +162,7 @@

    Објавено на 8 октомври 2022

    Македонска студентска вечер во Љубљана

    -

    Од идеја до журка со 500 студенти – вака започна нашата приказна!

    +

    Од идеја до журка со 500 студенти, вака започна нашата приказна!

    @@ -186,17 +170,17 @@
    -

    На 8 октомври 2022 година, во срцето на Студентскиот кампус во Љубљана, се одржа првата македонска студентска вечер во Словенија. Под мотото #FeelsLikeHome, повеќе од 500 млади уживаа во македонска музика, вкусна традиционална храна и атмосфера која потсетуваше на дома. Овој настан не беше само журка – беше почеток на една нова приказна, која подоцна ќе прерасне во Македонска студентска организација во Словенија (МСОС).

    +

    На 8 октомври 2022 година, во срцето на Студентскиот кампус во Љубљана, се одржа првата македонска студентска вечер во Словенија. Под мотото #FeelsLikeHome, повеќе од 500 млади уживаа во македонска музика, вкусна традиционална храна и атмосфера која потсетуваше на дома. Овој настан не беше само журка, беше почеток на една нова приказна, која подоцна ќе прерасне во Македонска студентска организација во Словенија (МСОС).

    Како една идеја за дружење стана почеток на движење

    -

    Сè започна со едноставна желба – да се собереме, да се запознаеме и да ја почувствуваме Македонија, иако сме далеку од неа. Кристијан Поповски, тогаш студент на Економскиот факултет во Љубљана, ја сподели својата идеја со неколку колеги, а одговорот беше неверојатен. За помалку од две недели, преку 40 студенти се пријавија во организацискиот тим. Секој понесе дел од својот ентузијазам и време, а заедничкиот дух и желбата за поврзување ја претворија оваа спонтана иницијатива во настан што долго ќе го паметиме.

    +

    Сè започна со едноставна желба, да се собереме, да се запознаеме и да ја почувствуваме Македонија, иако сме далеку од неа. Кристијан Поповски, тогаш студент на Економскиот факултет во Љубљана, ја сподели својата идеја со неколку колеги, а одговорот беше неверојатен. За помалку од две недели, преку 40 студенти се пријавија во организацискиот тим. Секој понесе дел од својот ентузијазам и време, а заедничкиот дух и желбата за поврзување ја претворија оваа спонтана иницијатива во настан што долго ќе го паметиме.

    Подготовки и состаноци за македонската студентска вечер
    Фотографии од подготовките и состаноците за организирање на македонската студентска вечер
    -

    Од тој момент, секој слободен миг го поминувавме во канцелариите на студентската организација „Повезани“, кои ни дадоа голема поддршка во организирањето. Денови и ноќи правевме планови, одржувавме состаноци, пишувавме објави на социјалните мрежи – сè со цел да создадеме настан кој првично мислевме дека ќе привлече, ако имаме среќа, околу 100 посетители.

    +

    Од тој момент, секој слободен миг го поминувавме во канцелариите на студентската организација „Повезани“, кои ни дадоа голема поддршка во организирањето. Денови и ноќи правевме планови, одржувавме состаноци, пишувавме објави на социјалните мрежи, сè со цел да создадеме настан кој првично мислевме дека ќе привлече, ако имаме среќа, околу 100 посетители.

    Една недела пред настанот, секој ден објавувавме интересни факти за Македонија, нејзините национални богатства, музика и култура. Полека, но сигурно, ја градевме атмосферата и ентузијазмот, не само кај македонските студенти, туку и кај многу други кои сакаа да ја почувствуваат нашата енергија.

    @@ -205,8 +189,8 @@
    -

    „Организирањето на првата МСОС журка беше уникатно искуство – без сон, амбициозни и вклучени во сè, од логистика до бришење на подот... Среќа што постои Red Bull 😉 (П.с. целиот фрижидер го испивме!)“

    -
    — Марко – студент во прва година
    +

    „Организирањето на првата МСОС журка беше уникатно искуство, без сон, амбициозни и вклучени во сè, од логистика до бришење на подот... Среќа што постои Red Bull 😉 (П.с. целиот фрижидер го испивме!)“

    +
    , Марко, студент во прва година

    Вкусот и мирисот на Македонија во срцето на Љубљана

    @@ -217,7 +201,7 @@
    Фотографии од штандовите со македонски обележја, традиционална храна и пијалаци.
    -

    Покрај храната, посетителите можеа да разгледаат интересни факти за државата, фотографии од познати македонски дејци и културни знаменитости, како и да видат традиционални носии и гајда одблиску. Атмосферата беше топла и полна со љубопитност – како мала изложба во рамките на една голема студентска забава.

    +

    Покрај храната, посетителите можеа да разгледаат интересни факти за државата, фотографии од познати македонски дејци и културни знаменитости, како и да видат традиционални носии и гајда одблиску. Атмосферата беше топла и полна со љубопитност, како мала изложба во рамките на една голема студентска забава.

    Мини квиз со прашања за Македонија @@ -233,16 +217,16 @@

    Посебна чест ни беше да ја пречекаме и амбасадорката на Северна Македонија во Словенија, г-ѓа Сузана Зеленковска, која упати топли зборови на охрабрување и поддршка за младите. Нејзиното присуство и интерес за настанот беа дополнителен мотив да продолжиме со нашата мисија за поврзување и афирмација на македонската студентска заедница.

    -

    Журката беше одлична, со супер енергија што се шири насекаде. Студенти на сите страни и во еден момент владееше мал, но контролиран хаос – вистинско место каде што успеавме да се избориме и да направиме еден навистина одличен настан. Иако ја завршивме журката малку порано, студентите не престанаа уште еден час да пеат заедно со нас, како што го расчистувавме местото. Навистина, ноќ за паметење!

    +

    Журката беше одлична, со супер енергија што се шири насекаде. Студенти на сите страни и во еден момент владееше мал, но контролиран хаос, вистинско место каде што успеавме да се избориме и да направиме еден навистина одличен настан. Иако ја завршивме журката малку порано, студентите не престанаа уште еден час да пеат заедно со нас, како што го расчистувавме местото. Навистина, ноќ за паметење!

    -

    „Бев дел од тимот за организација и требаше да одржувам ред и мир меѓу студентите, ама кога ми ја пуштија песната ‘Бисер Балкански’ не издржав – па им се приклучив и јас... Тоа беше мојот специјален момент таа вечер!“

    -
    — Христијан – студент во втора година
    +

    „Бев дел од тимот за организација и требаше да одржувам ред и мир меѓу студентите, ама кога ми ја пуштија песната ‘Бисер Балкански’ не издржав, па им се приклучив и јас... Тоа беше мојот специјален момент таа вечер!“

    +
    , Христијан, студент во втора година

    Почеток што ќе го паметиме

    -

    Таа вечер не беше само уште една студентска забава – беше моментот кога сфативме дека сме започнале нешто поголемо. Наместо очекуваните 100 гости, во клубот влегоа околу 500 студенти, а енергијата беше неверојатна. Се создадоа нови пријателства, се слушаа песни што ги пеевме од срце, а македонската култура и традиција беа во прв план цела вечер.

    -

    Оваа ноќ го постави темелот за Македонската студентска организација во Словенија и ни покажа дека со ентузијазам, заедништво и малку храброст, може да се создаде нешто што ќе ги обедини луѓето и ќе им даде чувство на дом – дури и кога се далеку од него.

    +

    Таа вечер не беше само уште една студентска забава, беше моментот кога сфативме дека сме започнале нешто поголемо. Наместо очекуваните 100 гости, во клубот влегоа околу 500 студенти, а енергијата беше неверојатна. Се создадоа нови пријателства, се слушаа песни што ги пеевме од срце, а македонската култура и традиција беа во прв план цела вечер.

    +

    Оваа ноќ го постави темелот за Македонската студентска организација во Словенија и ни покажа дека со ентузијазам, заедништво и малку храброст, може да се создаде нешто што ќе ги обедини луѓето и ќе им даде чувство на дом, дури и кога се далеку од него.

    Посветениот тим на волонтери по завршувањето на настанот @@ -295,55 +279,58 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/en/projects/meet-student-slovenia-2023/index.html b/en/projects/meet-student-slovenia-2023/index.html index 25725fc5..7ae2c95e 100644 --- a/en/projects/meet-student-slovenia-2023/index.html +++ b/en/projects/meet-student-slovenia-2023/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -196,7 +180,7 @@
    -

    What does the first step towards student life in Slovenia look like? We tried to answer this question through the event "Meet Student Slovenia," which we organized on September 18, 2023, at the NLB Gallery in Skopje. The atmosphere was full of excitement – more than 100 future students and their families came with the same feeling: a desire to discover what awaits them where they will start their new chapter.

    +

    What does the first step towards student life in Slovenia look like? We tried to answer this question through the event "Meet Student Slovenia," which we organized on September 18, 2023, at the NLB Gallery in Skopje. The atmosphere was full of excitement, more than 100 future students and their families came with the same feeling: a desire to discover what awaits them where they will start their new chapter.

    What lies behind student life in Slovenia?

    -

    Instead of dry information, students had the opportunity to hear real stories – from those who are already walking the same path. Students from Ljubljana, Maribor, and Koper talked about their challenges, first impressions, funny situations, and moments when community support was crucial. And the audience? They absorbed everything with great attention, because exactly those questions that are never written in brochures – here they received honest answers.

    +

    Instead of dry information, students had the opportunity to hear real stories, from those who are already walking the same path. Students from Ljubljana, Maribor, and Koper talked about their challenges, first impressions, funny situations, and moments when community support was crucial. And the audience? They absorbed everything with great attention, because exactly those questions that are never written in brochures, here they received honest answers.

    Participants of the panel discussion @@ -228,7 +212,7 @@

    Voices that inspire

    -

    Our members Kiara Lazić, Angel Naumov, Klimentina Čapovska, and Igor Arsov appeared on stage – each with their own story, their own faculty, their own city. Together with moderator Leon Šumanski and host Vasil Hanџiski, they transformed the panel into a real conversation that felt more like a friendly get-together than a formal discussion. They talked about exams, new friendships, life in student dorms, and how important it is not to give up even when things seem hardest.

    +

    Our members Kiara Lazić, Angel Naumov, Klimentina Čapovska, and Igor Arsov appeared on stage, each with their own story, their own faculty, their own city. Together with moderator Leon Šumanski and host Vasil Hanџiski, they transformed the panel into a real conversation that felt more like a friendly get-together than a formal discussion. They talked about exams, new friendships, life in student dorms, and how important it is not to give up even when things seem hardest.

    Vasil Hanџiski at the opening of the event @@ -240,7 +224,7 @@
    Photograph of the event participants. We were a little surprised by the interest, but somehow we managed to fit everyone!♡
    -

    Behind the scenes – our supporters

    +

    Behind the scenes, our supporters

    The event would not have been possible without the support of the Embassy of the Republic of Slovenia in North Macedonia, NLB Bank Skopje, Capital Financial Center, Dijag, and Radio MOF. But the real strength came from MSOS members in preparing the event and the students with their questions, their energy, and their curiosity.

    At the event, we received significant support and assistance from Melita Sekulovska in organizing the space and Aleksandar Popovski in designing the organization's website. We sincerely thanked them for their dedicated work, as well as the event coordinator, Lea Janačkovska, who made this event extraordinary.

    @@ -258,7 +242,7 @@

    Why was it special?

    -

    Because this event was not just another presentation. It was a hand extended to future students – a message that they are not alone, that a community is already waiting for them. Some left with new friends, others with concrete answers to questions that had bothered them for months. But everyone left with the same feeling: that Slovenia is no longer an unknown place, but a new home where they will be part of something bigger.

    +

    Because this event was not just another presentation. It was a hand extended to future students, a message that they are not alone, that a community is already waiting for them. Some left with new friends, others with concrete answers to questions that had bothered them for months. But everyone left with the same feeling: that Slovenia is no longer an unknown place, but a new home where they will be part of something bigger.

    Attendees at the event @@ -266,12 +250,12 @@
    -

    “The event was a 'game changer' for me because I finally got information that really helped me get to know student Slovenia instead of just another pile of brochures. The panel was great, relaxed, with talks about the best places to go out, days stuck in the library, life in student dorms, and the classic 'I overslept before the exam' story... P.S. And the networking, the networking was top – no awkward silence.”

    -
    — Borjan Jovanovski, future student and event participant
    +

    “The event was a 'game changer' for me because I finally got information that really helped me get to know student Slovenia instead of just another pile of brochures. The panel was great, relaxed, with talks about the best places to go out, days stuck in the library, life in student dorms, and the classic 'I overslept before the exam' story... P.S. And the networking, the networking was top, no awkward silence.”

    +
    , Borjan Jovanovski, future student and event participant

    Practical advice first-hand

    -

    A special moment of the event was the address by the Consul of the Embassy of the Republic of Slovenia in North Macedonia, Mr. Martin Glazar. He briefly presented the most important steps of the process for obtaining a temporary residence permit – one of the biggest concerns and challenges for all foreign students in Slovenia. In this way, future students gained a clearer picture of what awaits them and how to more easily deal with administrative procedures.

    +

    A special moment of the event was the address by the Consul of the Embassy of the Republic of Slovenia in North Macedonia, Mr. Martin Glazar. He briefly presented the most important steps of the process for obtaining a temporary residence permit, one of the biggest concerns and challenges for all foreign students in Slovenia. In this way, future students gained a clearer picture of what awaits them and how to more easily deal with administrative procedures.

    The Consul introducing students to the process of obtaining a temporary residence permit @@ -287,7 +271,7 @@

    See you in Slovenia!

    -

    With "Meet Student Slovenia 2023," we managed to extend a hand to new students and show them that an exciting journey full of new friendships, challenges, and successes awaits them. We sincerely hope that next time we will meet right there – in the lecture halls, student dorms, and on the streets of Ljubljana, Maribor, and Koper.

    +

    With "Meet Student Slovenia 2023," we managed to extend a hand to new students and show them that an exciting journey full of new friendships, challenges, and successes awaits them. We sincerely hope that next time we will meet right there, in the lecture halls, student dorms, and on the streets of Ljubljana, Maribor, and Koper.

    This event would not have been possible without the support of our partners and friends, to whom we extend our immense gratitude:

    1. Embassy of the Republic of Slovenia in North Macedonia (partner)
    2. @@ -296,7 +280,7 @@
    3. Dijag doo (sponsor)
    4. Radio MOF (media partner)
    -

    Thanks to everyone who was part of this event – and to future students, we say: your story in Slovenia is just beginning, and we are here to be a part of it.

    +

    Thanks to everyone who was part of this event, and to future students, we say: your story in Slovenia is just beginning, and we are here to be a part of it.

    A small part of the MSOS team @@ -350,54 +334,57 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/en/projects/meet-student-slovenia-2024/index.html b/en/projects/meet-student-slovenia-2024/index.html index ff0fe951..88adbdb3 100644 --- a/en/projects/meet-student-slovenia-2024/index.html +++ b/en/projects/meet-student-slovenia-2024/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -216,10 +200,10 @@
    -

    Following the success in 2023, "Meet Student Slovenia" returned this year with even greater energy. On September 16, 2024, at the NLB Gallery in Skopje, we held the second edition of the event, which has become a true tradition. The interest was enormous – we had twice as many applications as the capacity of the venue. The atmosphere was full of excitement, questions, and a desire for new beginnings.

    +

    Following the success in 2023, "Meet Student Slovenia" returned this year with even greater energy. On September 16, 2024, at the NLB Gallery in Skopje, we held the second edition of the event, which has become a true tradition. The interest was enormous, we had twice as many applications as the capacity of the venue. The atmosphere was full of excitement, questions, and a desire for new beginnings.

    "Coffee chat" with future colleagues, but on a panel discussion

    -

    Our goal was never to create "dry presentations." Instead, we organized a panel – a real conversation with four students who are already living the Slovenian student life. Marija Koštrevska from the University of Ljubljana, Vasil Hanџiski from the University of Maribor, Sofija Matovska from the University of Nova Gorica, and Igor Arsov from the University of Primorska spoke about everything: the first days away from home, how to find accommodation, what student "boni" (subsidized meals) are, and what it's like to build a new circle of friends. Everyone shared something of their own, and the audience asked questions and participated – just like a coffee chat.

    +

    Our goal was never to create "dry presentations." Instead, we organized a panel, a real conversation with four students who are already living the Slovenian student life. Marija Koštrevska from the University of Ljubljana, Vasil Hanџiski from the University of Maribor, Sofija Matovska from the University of Nova Gorica, and Igor Arsov from the University of Primorska spoke about everything: the first days away from home, how to find accommodation, what student "boni" (subsidized meals) are, and what it's like to build a new circle of friends. Everyone shared something of their own, and the audience asked questions and participated, just like a coffee chat.

    Panel discussion with speakers @@ -256,7 +240,7 @@
    Photograph from the handing over of flowers as a sign of gratitude to the Embassy, Capital Financial Center, and NLB Bank Skopje.
    -

    Special thanks go to the MSOS team, who worked tirelessly for weeks on preparations – from the initial idea to the last detail of the evening. Above all, great recognition goes to Lea Janačkovska, the event coordinator, who with her energy, patience, and organizational skills ensured that every piece fell into place.

    +

    Special thanks go to the MSOS team, who worked tirelessly for weeks on preparations, from the initial idea to the last detail of the evening. Above all, great recognition goes to Lea Janačkovska, the event coordinator, who with her energy, patience, and organizational skills ensured that every piece fell into place.

    This time, the memories of the evening are thanks to Hristina Trakovska, who was the photographer and made sure all those moments were captured so we can relive them again through photographs.

    @@ -265,7 +249,7 @@

    Why was it special?

    -

    Because this event was not just another presentation. It was a hand extended to future students – a message that they are not alone, that a community is already waiting for them. Some left with new friends, others with concrete answers to questions that had bothered them for months. But everyone left with the same feeling: that Slovenia is no longer an unknown place, but a new home where they will be part of something bigger.

    +

    Because this event was not just another presentation. It was a hand extended to future students, a message that they are not alone, that a community is already waiting for them. Some left with new friends, others with concrete answers to questions that had bothered them for months. But everyone left with the same feeling: that Slovenia is no longer an unknown place, but a new home where they will be part of something bigger.

    Attendees asking questions to the panelists @@ -285,7 +269,7 @@

    See you in Slovenia!

    -

    "Meet Student Slovenia" is not just an event. It is a place where future students take their first step – with support, with first-hand advice, and with the feeling that they are not alone. And this year we managed to create that feeling, and that is the greatest victory.

    +

    "Meet Student Slovenia" is not just an event. It is a place where future students take their first step, with support, with first-hand advice, and with the feeling that they are not alone. And this year we managed to create that feeling, and that is the greatest victory.

    See you again next year!

    P.S. Every year after a successfully organized event, the MSOS team traditionally heads to the nearest tavern, for an evening full of socializing, singing, and emotions! 😊 That's why it's worth being part of our team! Join us.

    @@ -346,54 +330,57 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/en/projects/morning-coffee-in-front-of-ctk/index.html b/en/projects/morning-coffee-in-front-of-ctk/index.html index ae82f12b..bbe394a1 100644 --- a/en/projects/morning-coffee-in-front-of-ctk/index.html +++ b/en/projects/morning-coffee-in-front-of-ctk/index.html @@ -3,7 +3,7 @@ - Morning Coffee in front of CTK – 2024: Coffee, burek, and lots of smiles + Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -176,7 +160,7 @@
    - Morning Coffee in front of CTK – 2024 + Morning Coffee in front of CTK, 2024
    @@ -205,7 +189,7 @@

    Published on June 8, 2024

    -

    Morning Coffee in front of CTK – 2024: Coffee, burek, and lots of smiles

    +

    Morning Coffee in front of CTK, 2024: Coffee, burek, and lots of smiles

    When exams somehow become easier with Saturday morning coffee, burek, and good company in at CTK!

    @@ -214,21 +198,21 @@
    -

    On June 8, 2024, from 9 to 12 AM, at the Central Technical Library of the University of Ljubljana (CTK), we organized our already traditional student break – Morning Coffee in at CTK together with the team from Skupina Povezani and CTK. This was the second year in a row that we gathered at the same place, but each time brings new moments to remember.

    +

    On June 8, 2024, from 9 to 12 AM, at the Central Technical Library of the University of Ljubljana (CTK), we organized our already traditional student break, Morning Coffee in at CTK together with the team from Skupina Povezani and CTK. This was the second year in a row that we gathered at the same place, but each time brings new moments to remember.

    Beating Exam Stress with Coffee

    -

    The exam session always brings stress – hours and hours of studying, conversations revolving only around exams, first and second attempts, passed or not, some taking the exam for the first time, and some for the fifth time. That's why we decided to take a short break to catch our breath: to relax, to laugh, and to remind ourselves that we're in this study stress together.

    +

    The exam session always brings stress, hours and hours of studying, conversations revolving only around exams, first and second attempts, passed or not, some taking the exam for the first time, and some for the fifth time. That's why we decided to take a short break to catch our breath: to relax, to laugh, and to remind ourselves that we're in this study stress together.

    Students lining up in front of the CTK library building.
    Hundreds of students lined up in front of CTK, waiting even before opening to secure a spot in the library on time.
    -

    With a cup of hot coffee in hand, and thanks to Burek Olimpija, we enjoyed delicious burek with meat and with cheese. We also tried to bring in a bit of fun – we invited students to bring their own cups, and there was a prize for the most creative ones.

    +

    With a cup of hot coffee in hand, and thanks to Burek Olimpija, we enjoyed delicious burek with meat and with cheese. We also tried to bring in a bit of fun, we invited students to bring their own cups, and there was a prize for the most creative ones.

    A student smiling while eating a piece of burek. -
    Free warm burek – the secret formula for solving even the toughest mathematical problems 😉
    +
    Free warm burek, the secret formula for solving even the toughest mathematical problems 😉
    @@ -238,7 +222,7 @@

    We asked two questions that revealed a whole palette of student emotions

    For an extra dose of interaction, we set up two big boards with questions that simply make you want to answer: “How do I survive the exam session?" and "Kako bi opisal počutje med izpitnem obdobjem?” (“How would you describe your feelings during the exam period?" in Slovenian).

    -

    The reactions were instant – students rushed to write, and the answers were everything but boring: from "chaotic" and “We want to sleep! (not in CTK)!" to "chill", "stressed", "exhausted", "happy" and "sleepy". In other words – a whole spectrum of student emotions, honestly poured into just a few words.

    +

    The reactions were instant, students rushed to write, and the answers were everything but boring: from "chaotic" and “We want to sleep! (not in CTK)!" to "chill", "stressed", "exhausted", "happy" and "sleepy". In other words, a whole spectrum of student emotions, honestly poured into just a few words.

    A white board with handwritten student answers about their feelings during the exam period. @@ -246,17 +230,17 @@

    How we went from coffee to a flight simulator and 3D printing machines

    -

    As a bonus for students, in cooperation with the university's technical library, the program was enriched with a CTK exhibition, where a flight simulator, 3D printers, and other interesting equipment were presented. Students could try them out and then rent them for free at the CTK Creative Studio – part of their educational program.

    +

    As a bonus for students, in cooperation with the university's technical library, the program was enriched with a CTK exhibition, where a flight simulator, 3D printers, and other interesting equipment were presented. Students could try them out and then rent them for free at the CTK Creative Studio, part of their educational program.

    Coffee and burek = motivation to get up every day and study for 12 hours

    -

    Around 150 people visited the joint stand of MSOS, Skupina Povezani, and CTK to hang out, have coffee, grab a snack, and exchange stories among books and deadlines. The event took place in an excellent atmosphere – lots of smiles, new acquaintances, and a small reminder that even in the most stressful periods, there's always time for coffee and good company.

    +

    Around 150 people visited the joint stand of MSOS, Skupina Povezani, and CTK to hang out, have coffee, grab a snack, and exchange stories among books and deadlines. The event took place in an excellent atmosphere, lots of smiles, new acquaintances, and a small reminder that even in the most stressful periods, there's always time for coffee and good company.

    Students gathered at the joint stand during the event.
    Part of the atmosphere at the joint stand
    -

    See you again next year – even more relaxed and with even more coffee!

    +

    See you again next year, even more relaxed and with even more coffee!

    A collage of photos showing students, coffee cups, and burek. @@ -310,54 +294,57 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/en/projects/paint-and-wine-at-sunset/index.html b/en/projects/paint-and-wine-at-sunset/index.html index 0d3e8489..40ed4fa0 100644 --- a/en/projects/paint-and-wine-at-sunset/index.html +++ b/en/projects/paint-and-wine-at-sunset/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -255,52 +239,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/projects/watching-handball-together-in-slovenia/index.html b/en/projects/watching-handball-together-in-slovenia/index.html index fabdefd8..cd12be5e 100644 --- a/en/projects/watching-handball-together-in-slovenia/index.html +++ b/en/projects/watching-handball-together-in-slovenia/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -243,52 +227,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/academic-life/index.html b/en/student-welcome-guide/academic-life/index.html index 5bfca7b4..06eae627 100644 --- a/en/student-welcome-guide/academic-life/index.html +++ b/en/student-welcome-guide/academic-life/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -282,52 +266,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/administrative-basics/index.html b/en/student-welcome-guide/administrative-basics/index.html index b6fc87a1..378d848c 100644 --- a/en/student-welcome-guide/administrative-basics/index.html +++ b/en/student-welcome-guide/administrative-basics/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -279,52 +263,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/admission-and-enrolment/index.html b/en/student-welcome-guide/admission-and-enrolment/index.html index 974a5249..f1237b11 100644 --- a/en/student-welcome-guide/admission-and-enrolment/index.html +++ b/en/student-welcome-guide/admission-and-enrolment/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -280,52 +264,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/application-deadlines/index.html b/en/student-welcome-guide/application-deadlines/index.html index b4f6374b..59f91b83 100644 --- a/en/student-welcome-guide/application-deadlines/index.html +++ b/en/student-welcome-guide/application-deadlines/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -277,52 +261,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/arrival-checklist/index.html b/en/student-welcome-guide/arrival-checklist/index.html index f3e6c995..9bf40d03 100644 --- a/en/student-welcome-guide/arrival-checklist/index.html +++ b/en/student-welcome-guide/arrival-checklist/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -295,52 +279,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/bachelor-application/index.html b/en/student-welcome-guide/bachelor-application/index.html index 2a20b0a5..a24260bf 100644 --- a/en/student-welcome-guide/bachelor-application/index.html +++ b/en/student-welcome-guide/bachelor-application/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -307,52 +291,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/choose-a-programme/index.html b/en/student-welcome-guide/choose-a-programme/index.html index 66872bc0..49d66d79 100644 --- a/en/student-welcome-guide/choose-a-programme/index.html +++ b/en/student-welcome-guide/choose-a-programme/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -298,52 +282,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/complete-student-journey/index.html b/en/student-welcome-guide/complete-student-journey/index.html index 0435fe1d..d97d21e2 100644 --- a/en/student-welcome-guide/complete-student-journey/index.html +++ b/en/student-welcome-guide/complete-student-journey/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -323,52 +307,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/document-preparation/index.html b/en/student-welcome-guide/document-preparation/index.html index 5e595eaf..d8ce3c8e 100644 --- a/en/student-welcome-guide/document-preparation/index.html +++ b/en/student-welcome-guide/document-preparation/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -272,52 +256,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/evs-application-guide/index.html b/en/student-welcome-guide/evs-application-guide/index.html index 3aa8eec9..158b5822 100644 --- a/en/student-welcome-guide/evs-application-guide/index.html +++ b/en/student-welcome-guide/evs-application-guide/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -290,52 +274,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/healthcare-in-slovenia/index.html b/en/student-welcome-guide/healthcare-in-slovenia/index.html index 9bcf4d5d..8cfffd17 100644 --- a/en/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/en/student-welcome-guide/healthcare-in-slovenia/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -333,52 +317,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/index.html b/en/student-welcome-guide/index.html index d9233233..d74c6339 100644 --- a/en/student-welcome-guide/index.html +++ b/en/student-welcome-guide/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -438,52 +422,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/master-application/index.html b/en/student-welcome-guide/master-application/index.html index ea44e6ba..41f80448 100644 --- a/en/student-welcome-guide/master-application/index.html +++ b/en/student-welcome-guide/master-application/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -284,52 +268,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/means-accommodation-address/index.html b/en/student-welcome-guide/means-accommodation-address/index.html index 21e20c23..1bfcb9ed 100644 --- a/en/student-welcome-guide/means-accommodation-address/index.html +++ b/en/student-welcome-guide/means-accommodation-address/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -208,7 +192,7 @@
  • Other recognised income or assets
  • -

    The required amount is tied to the current Slovenian basic minimum income. The reference figure the MSOS residence guide used, checked on 1 September 2024, is €484.88 per month for the whole academic year. Because this tracks the minimum income, it can change, so confirm the current official amount with the responsible upravna enota and ask how it calculates the period and which evidence it accepts.

    +

    The required amount is tied to the current Slovenian basic minimum income (osnovni znesek minimalnega dohodka). From 1 April 2026 this basic minimum income is €507,43 per month, and the proof of means is calculated on it for the whole academic year. Because this tracks the minimum income, it can change, so confirm the current official amount with the responsible upravna enota and ask how it calculates the period and which evidence it accepts.

    Parent support

    @@ -278,7 +262,7 @@

    The statement does not need a special form and one parent signing is enough. It must be written in English, Slovenian, or a former Yugoslav language in Latin script. A simple version reads:

    -
    I, [parent full name], born [date] and residing at [address], parent of [student full name], born [date], declare that I will financially support my child during their studies in Slovenia in the academic year 2026/2027 with at least €484.88 per month for the whole academic year. Place, date, and my signature.
    +
    I, [parent full name], born [date] and residing at [address], parent of [student full name], born [date], declare that I will financially support my child during their studies in Slovenia in the academic year 2026/2027 with at least €507,43 per month for the whole academic year. Place, date, and my signature.

    Attach proof of the parent-child relationship and, where requested, proof of the parent income or bank funds. Confirm the exact expected wording with your upravna enota, because some offices prefer their own template.

    @@ -287,9 +271,9 @@

    Research sources for this revision listed approximately:

      -
    • €4.50 application fee
    • +
    • €4,50 application fee
    • €50 permit fee
    • -
    • €15.47 card-production cost
    • +
    • €15,47 card-production cost

    These amounts can change and do not include translation, certification, photograph, postage, or travel costs. Verify the current tariff before the appointment.

    @@ -356,52 +340,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/my-route/index.html b/en/student-welcome-guide/my-route/index.html index f5bdc3a4..5a2d5d04 100644 --- a/en/student-welcome-guide/my-route/index.html +++ b/en/student-welcome-guide/my-route/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -184,52 +168,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/official-sources-and-checklists/index.html b/en/student-welcome-guide/official-sources-and-checklists/index.html index 2830d457..e09879f6 100644 --- a/en/student-welcome-guide/official-sources-and-checklists/index.html +++ b/en/student-welcome-guide/official-sources-and-checklists/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -311,52 +295,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/prepare-to-move/index.html b/en/student-welcome-guide/prepare-to-move/index.html index c1ffdf31..3099cf4d 100644 --- a/en/student-welcome-guide/prepare-to-move/index.html +++ b/en/student-welcome-guide/prepare-to-move/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -328,52 +312,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/recognition-of-education/index.html b/en/student-welcome-guide/recognition-of-education/index.html index 399d61f7..f58ea97d 100644 --- a/en/student-welcome-guide/recognition-of-education/index.html +++ b/en/student-welcome-guide/recognition-of-education/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -273,52 +257,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/renew-change-graduate/index.html b/en/student-welcome-guide/renew-change-graduate/index.html index 2eafb48e..26c19dff 100644 --- a/en/student-welcome-guide/renew-change-graduate/index.html +++ b/en/student-welcome-guide/renew-change-graduate/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -282,52 +266,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/rm-si-3-health-insurance/index.html b/en/student-welcome-guide/rm-si-3-health-insurance/index.html index b8be9df9..ee5a92f5 100644 --- a/en/student-welcome-guide/rm-si-3-health-insurance/index.html +++ b/en/student-welcome-guide/rm-si-3-health-insurance/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -322,52 +306,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/student-accommodation/index.html b/en/student-welcome-guide/student-accommodation/index.html index 51e050d8..55b47f4b 100644 --- a/en/student-welcome-guide/student-accommodation/index.html +++ b/en/student-welcome-guide/student-accommodation/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -213,7 +197,7 @@

    Some universities or dormitories may offer rooms to foreign students at a market or economic rate. Examples for 2026:

    @@ -113,23 +105,16 @@ What We Do - + @@ -228,7 +212,7 @@ -

    Note that the residence-permit means requirement (around €484.88 per month at the last check) sits near the lower end of this range, so it is a legal minimum to prove, not a comfortable living budget. Plan above it.

    +

    Note that the residence-permit means requirement (around €507,43 per month from 1 April 2026) sits near the lower end of this range, so it is a legal minimum to prove, not a comfortable living budget. Plan above it.

    First-month budget

    @@ -292,52 +276,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/student-meals/index.html b/en/student-welcome-guide/student-meals/index.html index a6a51d52..dee90291 100644 --- a/en/student-welcome-guide/student-meals/index.html +++ b/en/student-welcome-guide/student-meals/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -201,7 +185,7 @@

    Current amount

    -

    From 1 March 2026, the state meal subsidy is €5.19 per meal. This is not the final price of every meal. The student pays the difference between the restaurant price and the subsidy.

    +

    From 1 March 2026, the state meal subsidy is €5,19 per meal. This is not the final price of every meal. The student pays the difference between the restaurant price and the subsidy.

    First registration

    @@ -280,52 +264,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html index a5d57254..93493983 100644 --- a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -317,52 +301,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/student-residence-permit/index.html b/en/student-welcome-guide/student-residence-permit/index.html index f9331b97..9a6fcfff 100644 --- a/en/student-welcome-guide/student-residence-permit/index.html +++ b/en/student-welcome-guide/student-residence-permit/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -236,7 +220,7 @@

    Proof of sufficient means

    -

    You must show you can support yourself. The most common route is a written statement from a parent or guardian, who is legally obliged to support you, declaring that they will support you (name, surname, date of birth) with at least €484.88 per month for the whole academic year. One parent signing is enough. Special notarisation is not required, but the statement must be written in English, Slovenian, or one of the former Yugoslav languages in Latin script. This €484.88 figure is tied to the Slovenian minimum-income basis and can change, so check the current amount. See the means and address page for other accepted proof such as student-work earnings, a scholarship, bank funds, or grants.

    +

    You must show you can support yourself. The most common route is a written statement from a parent or guardian, who is legally obliged to support you, declaring that they will support you (name, surname, date of birth) with at least €507,43 per month for the whole academic year. One parent signing is enough. Special notarisation is not required, but the statement must be written in English, Slovenian, or one of the former Yugoslav languages in Latin script. This €507,43 figure is tied to the Slovenian minimum-income basis and can change, so check the current amount. See the means and address page for other accepted proof such as student-work earnings, a scholarship, bank funds, or grants.

    Document with your handwritten signature

    @@ -334,52 +318,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/student-transport/index.html b/en/student-welcome-guide/student-transport/index.html index 142475f4..37f63dca 100644 --- a/en/student-welcome-guide/student-transport/index.html +++ b/en/student-welcome-guide/student-transport/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -246,7 +230,7 @@
    • BicikeLJ (Ljubljana): €3 yearly or €1 weekly, unlimited trips with the first 60 minutes of each trip free. Dock within 60 minutes to keep riding for free.
    • MBajk (Maribor): the same platform and pricing as BicikeLJ, €3 yearly or €1 weekly, first 60 minutes free.
    • -
    • Nomago Bikes (Ljubljana e-bikes): €30 student annual subscription, or €25 with an ISIC card. The first 30 minutes of each rental are free, then about €1.30 per further 30 minutes. Register in the app, add a payment method, and enter the coupon NAZAJVSOLO to buy the student subscription.
    • +
    • Nomago Bikes (Ljubljana e-bikes): €30 student annual subscription, or €25 with an ISIC card. The first 30 minutes of each rental are free, then about €1,30 per further 30 minutes. Register in the app, add a payment method, and enter the coupon NAZAJVSOLO to buy the student subscription.

    An ISIC student card unlocks the cheaper Nomago rate and many other discounts, so it is worth having. Treat all prices and promotion codes as check-current information.

    @@ -301,52 +285,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/student-work/index.html b/en/student-welcome-guide/student-work/index.html index 5b02c39c..00199ef1 100644 --- a/en/student-welcome-guide/student-work/index.html +++ b/en/student-welcome-guide/student-work/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -207,7 +191,7 @@

    Minimum rate and deductions

    -

    From 5 February 2026, the minimum gross hourly rate is €8.98, and the reference resident net rate after the standard pension contribution is €7.73. A tax non-resident may initially have a 13.95% pension and disability contribution and a 22.5% income-tax advance. The exact net amount depends on tax residence, treaty relief, payment size, and approved claims.

    +

    From 5 February 2026, the minimum gross hourly rate is €8,98, and the reference resident net rate after the standard pension contribution is €7,73. A tax non-resident may initially have a 13.95% pension and disability contribution and a 22.5% income-tax advance. The exact net amount depends on tax residence, treaty relief, payment size, and approved claims.

    Treaty relief for Macedonian tax residents

    @@ -275,52 +259,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/study-cities/index.html b/en/student-welcome-guide/study-cities/index.html index 32518020..2820d297 100644 --- a/en/student-welcome-guide/study-cities/index.html +++ b/en/student-welcome-guide/study-cities/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -307,52 +291,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/tuition-and-scholarships/index.html b/en/student-welcome-guide/tuition-and-scholarships/index.html index 5d1200a9..89591f9d 100644 --- a/en/student-welcome-guide/tuition-and-scholarships/index.html +++ b/en/student-welcome-guide/tuition-and-scholarships/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -222,7 +206,7 @@

    Western Balkan master scholarship example

    -

    The 380th public call for 2026/2027 supports citizens of selected Western Balkan countries, including North Macedonia, in selected master fields. The published support is €9,600 per study year for living expenses, with an application deadline of 2 September 2026. Eligible fields include selected natural sciences, mathematics and statistics, information and communication technologies, engineering and manufacturing, civil engineering, agriculture and related fields, veterinary studies, and health or social-security fields. Link the exact call; it does not mean that all master programmes are eligible.

    +

    The 380th public call for 2026/2027 supports citizens of selected Western Balkan countries, including North Macedonia, in selected master fields. The published support is €9.600 per study year for living expenses, with an application deadline of 2 September 2026. Eligible fields include selected natural sciences, mathematics and statistics, information and communication technologies, engineering and manufacturing, civil engineering, agriculture and related fields, veterinary studies, and health or social-security fields. Link the exact call; it does not mean that all master programmes are eligible.

    Other funding and residence

    @@ -277,52 +261,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/visa-and-residence-explained/index.html b/en/student-welcome-guide/visa-and-residence-explained/index.html index bf0d49cd..d1d7e3dc 100644 --- a/en/student-welcome-guide/visa-and-residence-explained/index.html +++ b/en/student-welcome-guide/visa-and-residence-explained/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -304,52 +288,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/wellbeing-and-community/index.html b/en/student-welcome-guide/wellbeing-and-community/index.html index 80e9f28e..17616cf5 100644 --- a/en/student-welcome-guide/wellbeing-and-community/index.html +++ b/en/student-welcome-guide/wellbeing-and-community/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -271,52 +255,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/student-welcome-guide/where-to-apply-for-residence/index.html b/en/student-welcome-guide/where-to-apply-for-residence/index.html index acec859a..412d70a6 100644 --- a/en/student-welcome-guide/where-to-apply-for-residence/index.html +++ b/en/student-welcome-guide/where-to-apply-for-residence/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -342,52 +326,54 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/en/timeline-and-milestones/index.html b/en/timeline-and-milestones/index.html index bf65dc83..a0d7d539 100644 --- a/en/timeline-and-milestones/index.html +++ b/en/timeline-and-milestones/index.html @@ -41,23 +41,16 @@ What We Do - + @@ -113,23 +105,16 @@ What We Do - + @@ -209,7 +193,7 @@

    August 2022

    The Spark of an Idea

    It all started at a wine tasting event in the heart of Ljubljana. Among friends and good conversation, our founder Kristijan Popovski was encouraged by his Slovenian peers to organize something truly Macedonian. Inspired, he posted in a Facebook group of Macedonians living in Slovenia, calling for volunteers to help bring the idea to life.

    -

    Around 40 volunteers responded — a group of students who, without even realizing it, were laying the foundations of what would later become MSOS. Day after day, we worked side by side, sharing the same air, fueled by excitement and the desire to create something new. At that point, we weren't thinking about “founding an organization" — we were just a group of people trying to make one unforgettable event happen.

    +

    Around 40 volunteers responded, a group of students who, without even realizing it, were laying the foundations of what would later become MSOS. Day after day, we worked side by side, sharing the same air, fueled by excitement and the desire to create something new. At that point, we weren't thinking about “founding an organization", we were just a group of people trying to make one unforgettable event happen.

    Two weeks later, the first Macedonian Student Party in Ljubljana came to life. Expectations were exceeded: sponsors and donors joined in, volunteers gave their all, and more than 500 people showed up.

    That night made one thing very clear: Macedonian students in Slovenia needed a space to connect, celebrate, and support one another. And from that realization, MSOS was born.

    @@ -222,8 +206,8 @@

    October 2022

    From One Event to a Bigger Vision

    After the success of the first Macedonian Student Party in Ljubljana, something changed. What began as a one-time event sparked a new energy among us. The group of volunteers who had worked side by side suddenly felt there was more to be done.

    -

    We started holding regular meetings and brainstorming sessions, often lasting late into the evening. In those small rooms, surrounded by notes and ideas scribbled on paper, we began to shape a bigger vision. We talked about what Macedonian students in Slovenia truly needed — not just parties, but support, connection, and a community they could rely on.

    -

    Those early sessions gave birth to our mission and vision. We didn't yet call ourselves an “organization," but we were slowly becoming one. What kept us going was the same spirit that created the first party — the belief that, together, we could make student life in Slovenia easier, warmer, and more meaningful.

    +

    We started holding regular meetings and brainstorming sessions, often lasting late into the evening. In those small rooms, surrounded by notes and ideas scribbled on paper, we began to shape a bigger vision. We talked about what Macedonian students in Slovenia truly needed, not just parties, but support, connection, and a community they could rely on.

    +

    Those early sessions gave birth to our mission and vision. We didn't yet call ourselves an “organization," but we were slowly becoming one. What kept us going was the same spirit that created the first party, the belief that, together, we could make student life in Slovenia easier, warmer, and more meaningful.

    @@ -233,9 +217,9 @@

    November 2022

    The Founding Team

    -

    From the energy of the first events, a smaller circle of the most dedicated volunteers decided to take things further. They realized that for MSOS to grow, it needed structure, direction, and continuity. That was the moment when the first coordinating body was born — the group that would soon become the founding team of the organization.

    -

    This first team was made up of: Kristijan Popovski, Bisera Nikoloska, Marko Arsov, Ksenija Kraljevska, Aleksandar Balkoski, Kiara Lazić, Evgenija Kolovska, Dijana Dimkovska, Hristijan Bogdanovski, and Stefan Gjurovski. Each one brought something unique to the table — from leadership and creativity to organizational skills and dedication.

    -

    Together, they laid down the mission and vision, drafted the first structure, and set the foundations of what would grow into the official Macedonian Student Organization in Slovenia. At that time, no one could have imagined how quickly MSOS would evolve, but this team ensured that the idea would not remain just one successful party — it would become a movement.

    +

    From the energy of the first events, a smaller circle of the most dedicated volunteers decided to take things further. They realized that for MSOS to grow, it needed structure, direction, and continuity. That was the moment when the first coordinating body was born, the group that would soon become the founding team of the organization.

    +

    This first team was made up of: Kristijan Popovski, Bisera Nikoloska, Marko Arsov, Ksenija Kraljevska, Aleksandar Balkoski, Kiara Lazić, Evgenija Kolovska, Dijana Dimkovska, Hristijan Bogdanovski, and Stefan Gjurovski. Each one brought something unique to the table, from leadership and creativity to organizational skills and dedication.

    +

    Together, they laid down the mission and vision, drafted the first structure, and set the foundations of what would grow into the official Macedonian Student Organization in Slovenia. At that time, no one could have imagined how quickly MSOS would evolve, but this team ensured that the idea would not remain just one successful party, it would become a movement.

    @@ -257,9 +241,9 @@

    March 2023

    Going Public

    -

    On March 5, 2023, we officially introduced MSOS to the public as a student initiative. What had begun as an idea and a few events was now ready to be presented as something bigger — a movement with a clear mission and vision.

    +

    On March 5, 2023, we officially introduced MSOS to the public as a student initiative. What had begun as an idea and a few events was now ready to be presented as something bigger, a movement with a clear mission and vision.

    The launch was more than just an announcement. It was the moment when Macedonian students in Slovenia realized they had their own platform, their own voice, and a community they could call home. Through social media, word of mouth, and our first public activities, we reached students who until then felt scattered and disconnected.

    -

    For us as organizers, this was a defining step: MSOS was no longer just an idea among friends, but a name and a promise that other students could recognize and join. From that day on, everything became more serious — new projects, structured communication, and the understanding that we had a responsibility to represent and support our community.

    +

    For us as organizers, this was a defining step: MSOS was no longer just an idea among friends, but a name and a promise that other students could recognize and join. From that day on, everything became more serious, new projects, structured communication, and the understanding that we had a responsibility to represent and support our community.

    @@ -269,7 +253,7 @@

    March 2023

    Growing Beyond Ljubljana

    -

    The public launch of MSOS in March 2023 did more than just make us visible — it sparked a wave of interest across Slovenia. Very quickly, students from Maribor and Koper reached out, asking how they could get involved. What began as individual messages soon grew into local teams, ready to bring the MSOS spirit to their own cities.

    +

    The public launch of MSOS in March 2023 did more than just make us visible, it sparked a wave of interest across Slovenia. Very quickly, students from Maribor and Koper reached out, asking how they could get involved. What began as individual messages soon grew into local teams, ready to bring the MSOS spirit to their own cities.

    This moment showed us that the need for community wasn't limited to Ljubljana. Macedonian students everywhere were looking for connection, support, and a network they could trust. With Maribor and Koper on board, MSOS transformed from a local initiative into a nationwide student presence, active across Slovenia's major university centers.

    @@ -280,7 +264,7 @@

    September 2023

    "Meet Student Slovenia 2023"

    -

    In September 2023, MSOS took a bold step — for the first time, we organized a panel event outside Slovenia, in Skopje. The idea was simple but powerful: bring together future students and their parents, and connect them directly with those already living and studying in Slovenia.

    +

    In September 2023, MSOS took a bold step, for the first time, we organized a panel event outside Slovenia, in Skopje. The idea was simple but powerful: bring together future students and their parents, and connect them directly with those already living and studying in Slovenia.

    The turnout exceeded all expectations. More than 100 participants filled the NLB Gallery, eager to hear real stories; not from brochures or officials, but from students themselves. They spoke about everyday challenges, from housing and paperwork to making friends and building a new life far from home. The honesty of their experiences created an atmosphere that felt more like a family gathering than a formal event.

    For many of the attendees, this was the first time they realized they were not alone in their worries. Questions that had been weighing on them for months found clear answers, and fears were replaced with excitement. For us as organizers, it was proof that MSOS was fulfilling its mission: to be the bridge between Macedonia and Slovenia, offering support even before students set foot in their new city.

    @@ -304,7 +288,7 @@

    May 2024

    Expanding to Nova Gorica

    -

    By the spring of 2024, MSOS had already built a strong presence in Ljubljana, Maribor, and Koper. But one important piece was still missing: Nova Gorica. In May, we officially welcomed our first members from the University of Nova Gorica — students full of energy, motivation, and new perspectives.

    +

    By the spring of 2024, MSOS had already built a strong presence in Ljubljana, Maribor, and Koper. But one important piece was still missing: Nova Gorica. In May, we officially welcomed our first members from the University of Nova Gorica, students full of energy, motivation, and new perspectives.

    For us, this expansion was more than just adding another city to the map. It symbolized the fact that MSOS was now present in all four major university centers in Slovenia. It meant that no matter where Macedonian students chose to study; from Ljubljana to the western border of the country, they could count on support, community, and a familiar face.

    The arrival of the Nova Gorica team brought fresh energy and ideas into our organization, reminding us once again that MSOS is not only about structure, but about people who are ready to help each other and grow together.

    @@ -317,7 +301,7 @@

    September 2024

    Official Registration

    On September 9, 2024, MSOS was officially registered in the Slovenian register of associations. This milestone marked a historic moment for us: from a student initiative built on enthusiasm and volunteer spirit, we became a legally recognized organization.

    -

    The registration gave us legitimacy to act as an institution, to run projects with legal backing, and to collaborate formally with universities, government bodies, and other organizations. For our team, it was more than a piece of paper — it was the confirmation that all the effort, countless volunteer hours, and shared vision had grown into something real and lasting.

    +

    The registration gave us legitimacy to act as an institution, to run projects with legal backing, and to collaborate formally with universities, government bodies, and other organizations. For our team, it was more than a piece of paper, it was the confirmation that all the effort, countless volunteer hours, and shared vision had grown into something real and lasting.

    That day we celebrated not just a legal status, but a sense of pride. MSOS was no longer just "our idea;" it became an organization that belongs to every Macedonian student in Slovenia.

    @@ -328,12 +312,12 @@

    First MSOS Conference

    Only a few weeks after our official registration, on September 25, 2024, MSOS took another bold step, organizing its first official conference in Skopje: "From Slovenia to North Macedonia: Synergy of Education and Business."

    -

    The event brought together three different worlds — students, government, and the business sector, around one shared question: How can young people educated abroad be motivated to return and contribute at home?

    +

    The event brought together three different worlds, students, government, and the business sector, around one shared question: How can young people educated abroad be motivated to return and contribute at home?

    The program was divided into three panels:

      -
    • Youth Panel – where students educated in Slovenia shared their hopes, challenges, and perspectives on returning to Macedonia.
    • -
    • Government Panel – discussing policies for brain gain and the role of institutions in supporting young professionals.
    • -
    • Business Panel – focusing on how companies can create opportunities and incentives for returning graduates.
    • +
    • Youth Panel, where students educated in Slovenia shared their hopes, challenges, and perspectives on returning to Macedonia.
    • +
    • Government Panel, discussing policies for brain gain and the role of institutions in supporting young professionals.
    • +
    • Business Panel, focusing on how companies can create opportunities and incentives for returning graduates.

    The discussions touched on education, career opportunities, fair pay, and quality of life, the very factors that shape whether young people see a future in their home country.

    For MSOS, this conference was more than an event. It was proof that our organization can go beyond student parties and support groups, and become a credible voice in debates about youth, education, and the future of Macedonia. It was a moment when we showed that student initiatives can grow into platforms that connect countries, generations, and sectors.

    @@ -346,9 +330,9 @@

    October 2024

    Tour de Maribor

    -

    On October 12, 2024, our Maribor team organized its first event — Tour de Maribor. The idea was to welcome new students by turning the entire city into a playground. Teams of participants received maps with 10 checkpoints, each offering a fun challenge: solving quizzes, making TikToks, trading random items, or snapping creative photos with Maribor's landmarks.

    -

    The adventure lasted for more than five hours and ended with prizes, music, and new friendships. But what mattered most wasn't the competition — it was the atmosphere. Strangers became teammates, teammates became friends, and Maribor students felt the spirit of MSOS as their own.

    -

    That day, something bigger was born: the MSOS spirit in Maribor. A new strength and initiative emerged, showing once again that MSOS isn't just about one city — it's about students everywhere who want to build a community together.

    +

    On October 12, 2024, our Maribor team organized its first event, Tour de Maribor. The idea was to welcome new students by turning the entire city into a playground. Teams of participants received maps with 10 checkpoints, each offering a fun challenge: solving quizzes, making TikToks, trading random items, or snapping creative photos with Maribor's landmarks.

    +

    The adventure lasted for more than five hours and ended with prizes, music, and new friendships. But what mattered most wasn't the competition, it was the atmosphere. Strangers became teammates, teammates became friends, and Maribor students felt the spirit of MSOS as their own.

    +

    That day, something bigger was born: the MSOS spirit in Maribor. A new strength and initiative emerged, showing once again that MSOS isn't just about one city, it's about students everywhere who want to build a community together.

    @@ -360,7 +344,7 @@

    Memorandum of Cooperation

    On International Students' Day, November 17, 2024, MSOS and the University Student Assembly at Ss. Cyril and Methodius University in Skopje signed a Memorandum of Cooperation.

    With this step, we confirmed our joint commitment to improving student standards, strengthening regional cooperation, and creating a bridge for sharing best practices between Macedonia and Slovenia.

    -

    The memorandum symbolized more than a formal agreement — it was a recognition that Macedonian students abroad and at home share the same challenges and hopes. By working together, we opened a path for stronger collaboration, exchange of experiences, and building a student voice that crosses borders.

    +

    The memorandum symbolized more than a formal agreement, it was a recognition that Macedonian students abroad and at home share the same challenges and hopes. By working together, we opened a path for stronger collaboration, exchange of experiences, and building a student voice that crosses borders.

    @@ -382,7 +366,7 @@

    March 2025

    Paint & Wine in Nova Gorica

    -

    On International Women's Day, March 8, 2025, our team in Nova Gorica organized its very first independent event — a creative and vibrant Paint & Wine evening. With canvases, brushes, and a glass of wine in hand, students painted while enjoying the sunset accompanied by a live DJ set.

    +

    On International Women's Day, March 8, 2025, our team in Nova Gorica organized its very first independent event, a creative and vibrant Paint & Wine evening. With canvases, brushes, and a glass of wine in hand, students painted while enjoying the sunset accompanied by a live DJ set.

    The event was more than just art and music. It was a celebration of creativity, diversity, and the energy of young people coming together in a relaxed and inspiring setting. For MSOS, it was also a proud milestone: proof that our local teams are not only active, but able to design and carry out unique events that reflect their own spirit and community.

    @@ -391,7 +375,7 @@
    -

    MSOS Koper's First Event – Handball Fan Zone

    +

    MSOS Koper's First Event, Handball Fan Zone

    On March 16, 2025, our MSOS Koper team organized its first event, a Fan Zone for the European Handball Championship qualification match between Macedonia and Slovenia. In cooperation with the Macedonian Handball Federation, we brought students together with face paints, red and yellow flags, Macedonian beer, and even arranged two buses from Ljubljana to Koper to cheer as one.

    Sadly the event sadly stopped by the tragic news from Kochani. Despite this, the event showed the strength of our community and the passion of MSOS Koper in creating spaces where students unite and celebrate their identity.

    @@ -403,7 +387,7 @@

    March-April 2025

    Solidarity for Kočani in difficult times

    -

    In March and April 2025, MSOS stood together with the Macedonian community after the tragic events in Kočani. In Ljubljana, more than 700 people gathered in a peaceful vigil, filling the city square with candles and compassion. Soon after, our team in Maribor organized a charity basketball and football tournament, raising over €1,000 to support the families whose children were receiving treatment in Slovenia.

    +

    In March and April 2025, MSOS stood together with the Macedonian community after the tragic events in Kočani. In Ljubljana, more than 700 people gathered in a peaceful vigil, filling the city square with candles and compassion. Soon after, our team in Maribor organized a charity basketball and football tournament, raising over €1.000 to support the families whose children were receiving treatment in Slovenia.

    These moments reminded us that MSOS is not only about projects and events, but also about solidarity, empathy, and standing by our people in difficult times.

    @@ -413,8 +397,8 @@

    October 2025

    -

    Coming Soon – MSOS Student Hub in Ljubljana

    -

    The next big step for MSOS is the opening of our first Student Hub in Ljubljana this October. It will be a space for students to meet, work on projects, socialize, and create new ideas together. The Hub is envisioned as the new heart of our organization — a symbol of the community we have built and continue to grow.

    +

    Coming Soon, MSOS Student Hub in Ljubljana

    +

    The next big step for MSOS is the opening of our first Student Hub in Ljubljana this October. It will be a space for students to meet, work on projects, socialize, and create new ideas together. The Hub is envisioned as the new heart of our organization, a symbol of the community we have built and continue to grow.

    @@ -430,54 +414,57 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenia
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/images/flags/gb.svg b/images/flags/gb.svg new file mode 100644 index 00000000..ce4d1e00 --- /dev/null +++ b/images/flags/gb.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/images/flags/mk.svg b/images/flags/mk.svg new file mode 100644 index 00000000..0ee923a3 --- /dev/null +++ b/images/flags/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/images/flags/si.svg b/images/flags/si.svg new file mode 100644 index 00000000..33a03c62 --- /dev/null +++ b/images/flags/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/images/news-proof-of-means.jpg b/images/news-proof-of-means.jpg new file mode 100644 index 00000000..a8a58cf9 Binary files /dev/null and b/images/news-proof-of-means.jpg differ diff --git a/images/partners/ambasada-slo.png b/images/partners/ambasada-slo.png new file mode 100644 index 00000000..ce49722a Binary files /dev/null and b/images/partners/ambasada-slo.png differ diff --git a/images/partners/ctk.png b/images/partners/ctk.png new file mode 100644 index 00000000..84c9ca9b Binary files /dev/null and b/images/partners/ctk.png differ diff --git a/images/partners/dsmp.png b/images/partners/dsmp.png new file mode 100644 index 00000000..bd373370 Binary files /dev/null and b/images/partners/dsmp.png differ diff --git a/images/partners/kampus.png b/images/partners/kampus.png new file mode 100644 index 00000000..98329ac1 Binary files /dev/null and b/images/partners/kampus.png differ diff --git a/images/partners/nlb.png b/images/partners/nlb.png new file mode 100644 index 00000000..6a47181f Binary files /dev/null and b/images/partners/nlb.png differ diff --git a/images/partners/povezani.png b/images/partners/povezani.png new file mode 100644 index 00000000..b17607bc Binary files /dev/null and b/images/partners/povezani.png differ diff --git a/main.js b/main.js index 2bfce6fa..a4524bcd 100644 --- a/main.js +++ b/main.js @@ -122,10 +122,12 @@ document.addEventListener('DOMContentLoaded', function() { pathWithoutLang = path; } + const docLang = (document.documentElement.getAttribute('lang') || 'en').toLowerCase(); document.querySelectorAll('a[data-lang]').forEach(link => { const targetLang = link.getAttribute('data-lang'); const newUrl = `/${targetLang}${pathWithoutLang}`; link.setAttribute('href', newUrl.replace(/\/{2,}/g, '/')); + link.classList.toggle('is-current', targetLang === docLang); }); const desktopSelectors = document.querySelectorAll('.header-right-wrapper .language-selector'); diff --git a/member-form.js b/member-form.js new file mode 100644 index 00000000..f171fedf --- /dev/null +++ b/member-form.js @@ -0,0 +1,224 @@ +/* ========================================================================== + Become a Member — multi-step form logic + animated counters. + No dependencies. Submission posts to a Google Form once wired (GOOGLE_FORM + below); until then it logs the payload and still shows the success screen. + ========================================================================== */ +(function () { + /* ---- animated counters ---- */ + var nums = [].slice.call(document.querySelectorAll('.mm-num-value[data-count]')); + if (nums.length && 'IntersectionObserver' in window) { + var io = new IntersectionObserver(function (entries) { + entries.forEach(function (en) { + if (!en.isIntersecting) return; + io.unobserve(en.target); + var el = en.target, target = parseInt(el.getAttribute('data-count'), 10) || 0, suf = el.getAttribute('data-suffix') || ''; + var start = null, dur = 1400; + function tick(ts) { + if (!start) start = ts; + var p = Math.min((ts - start) / dur, 1); + el.textContent = Math.floor(p * target).toLocaleString() + (p === 1 ? suf : ''); + if (p < 1) requestAnimationFrame(tick); + } + requestAnimationFrame(tick); + }); + }, { threshold: 0.4 }); + nums.forEach(function (n) { io.observe(n); }); + } + + /* ---- multi-step form ---- */ + var form = document.querySelector('.ms-form'); + if (!form) return; + var section = form.closest('.ms-section'); + var success = section.querySelector('.ms-success'); + var progress = form.querySelector('.ms-progress'); + var bar = form.querySelector('.ms-progress-bar'); + var ptext = form.querySelector('.ms-progress-text'); + var alertBox = form.querySelector('.ms-alert'); + var back = form.querySelector('.ms-back'); + var next = form.querySelector('.ms-next'); + var submit = form.querySelector('.ms-submit'); + var STEP = progress.getAttribute('data-step'), OF = progress.getAttribute('data-of'); + + var steps = {}; + [].slice.call(form.querySelectorAll('.ms-step')).forEach(function (s) { steps[s.getAttribute('data-step')] = s; }); + var FLOWS = { + student: ['path', 's-basic', 's-status', 's-intention', 's-interests', 's-city', 's-personal', 's-consent'], + supporter: ['path', 'p-basic', 'p-support', 'p-message', 'p-consent'] + }; + var state = { path: null, order: ['path'], idx: 0 }; + + // single-select radio groups (status, city) + [].slice.call(form.querySelectorAll('.ms-radios')).forEach(function (group) { + [].slice.call(group.querySelectorAll('.ms-radio')).forEach(function (btn) { + btn.addEventListener('click', function () { + [].slice.call(group.querySelectorAll('.ms-radio')).forEach(function (b) { b.classList.remove('is-selected'); }); + btn.classList.add('is-selected'); + var step = group.closest('.ms-step'), val = btn.getAttribute('data-value'); + [].slice.call(step.querySelectorAll('.ms-cond')).forEach(function (c) { c.hidden = c.getAttribute('data-when') !== val; }); + [].slice.call(step.querySelectorAll('.ms-msg')).forEach(function (m) { + var w = m.getAttribute('data-when'); + m.hidden = !(w === '*any' || w === val); + }); + }); + }); + }); + + // multi-select chip groups (intention, interests, support) + [].slice.call(form.querySelectorAll('.ms-multi')).forEach(function (group) { + [].slice.call(group.querySelectorAll('.ms-chip')).forEach(function (chip) { + chip.addEventListener('click', function () { + chip.classList.toggle('is-selected'); + var step = group.closest('.ms-step'); + [].slice.call(step.querySelectorAll('.ms-msg')).forEach(function (m) { + var sel = group.querySelector('.ms-chip[data-value="' + m.getAttribute('data-when') + '"]'); + if (sel) m.hidden = !sel.classList.contains('is-selected'); + }); + }); + }); + }); + + // path choice + [].slice.call(form.querySelectorAll('.ms-path')).forEach(function (p) { + p.addEventListener('click', function () { + state.path = p.getAttribute('data-path'); + [].slice.call(form.querySelectorAll('.ms-path')).forEach(function (x) { x.classList.remove('is-selected'); }); + p.classList.add('is-selected'); + state.order = FLOWS[state.path]; + state.idx = 1; + progress.hidden = false; + render(); + }); + }); + + function render() { + Object.keys(steps).forEach(function (k) { steps[k].hidden = (k !== state.order[state.idx]); }); + var total = state.order.length; + bar.style.width = ((state.idx + 1) / total * 100) + '%'; + ptext.textContent = STEP + ' ' + (state.idx + 1) + ' ' + OF + ' ' + total; + back.hidden = state.idx === 0; + var last = state.idx === total - 1; + var onPath = state.order[state.idx] === 'path'; + next.hidden = last || onPath; + submit.hidden = !last; + if (last) submit.textContent = state.path === 'student' ? submit.getAttribute('data-student') : submit.getAttribute('data-supporter'); + alertBox.hidden = true; + } + + function validate() { + var step = steps[state.order[state.idx]], ok = true; + [].slice.call(step.querySelectorAll('[data-required="1"]')).forEach(function (el) { + if (el.closest('.ms-cond') && el.closest('.ms-cond').hidden) return; + if (el.classList.contains('ms-radios')) { if (!el.querySelector('.ms-radio.is-selected')) ok = false; } + else if (el.type === 'checkbox') { if (!el.checked) ok = false; } + else if (el.type === 'email') { if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(el.value)) ok = false; } + else { if (!el.value || !el.value.trim()) ok = false; } + }); + return ok; + } + + next.addEventListener('click', function () { + if (!validate()) { alertBox.textContent = alertBox.getAttribute('data-required-msg') || alertBox.textContent; alertBox.hidden = false; return; } + if (state.idx < state.order.length - 1) { state.idx++; render(); form.scrollIntoView({ behavior: 'smooth', block: 'start' }); } + }); + back.addEventListener('click', function () { + if (state.idx > 0) { state.idx--; render(); } + }); + + function collect() { + var d = { type: state.path }; + [].slice.call(form.querySelectorAll('[data-name]')).forEach(function (el) { + if (el.closest('.ms-cond') && el.closest('.ms-cond').hidden) return; + var name = el.getAttribute('data-name'); + if (el.classList.contains('ms-radios')) { var s = el.querySelector('.ms-radio.is-selected'); if (s) d[name] = s.getAttribute('data-value'); } + else if (el.classList.contains('ms-multi')) { var sel = [].slice.call(el.querySelectorAll('.ms-chip.is-selected')).map(function (c) { return c.getAttribute('data-value'); }); if (sel.length) d[name] = sel.join(', '); } + else if (el.type === 'checkbox') { d[name] = el.checked ? 'yes' : 'no'; } + else if (el.value && el.value.trim()) { d[name] = el.value.trim(); } + }); + return d; + } + + // Google Form (membership). "city"/"membership" are derived; "summary" holds everything. + var GOOGLE_FORM = { + action: 'https://docs.google.com/forms/d/e/1FAIpQLSeaNQr05ba9TpJUfMHkj_FExcc4DVCGor0GZvV0PMMNWsW7lg/formResponse', + fields: { + type: 'entry.206257317', + firstName: 'entry.1213078413', + lastName: 'entry.845432178', + email: 'entry.858040424', + phone: 'entry.1768532046', + city: 'entry.120922456', + university: 'entry.1976875358', + membership: 'entry.1099851320', + consent: 'entry.867370083', + summary: 'entry.627782554' + } + }; + function sendToForm(d) { + if (!GOOGLE_FORM.action) { console.log('[MSOS membership] not wired yet, payload:', d); return; } + var m = { + type: d.type || '', + firstName: d.firstName || '', + lastName: d.lastName || '', + email: d.email || '', + phone: d.phone || '', + city: d.connectCity || d.cityNow || '', + university: d.university || '', + membership: d.type === 'supporter' ? (d.support || '') : (d.intention || ''), + consent: (d.consentContact === 'yes' && d.consentPrivacy === 'yes') ? 'yes' : 'no', + summary: Object.keys(d).map(function (k) { return k + ': ' + d[k]; }).join('\n') + }; + var params = new URLSearchParams(); + Object.keys(GOOGLE_FORM.fields).forEach(function (k) { if (m[k]) params.append(GOOGLE_FORM.fields[k], m[k]); }); + try { fetch(GOOGLE_FORM.action, { method: 'POST', mode: 'no-cors', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, body: params.toString() }); } catch (e) { } + } + + /* ---- soft anti-abuse: honeypot + localStorage cooldown/cap ---- + A static site cannot rate-limit by IP (no backend). These are client-side + soft limits that stop casual flooding and bots; the Apps Script adds a + server-side per-email dedupe and daily cap as the real safety net. */ + var hp = form.querySelector('.ms-hp input'); + var LS_KEY = 'msos_member_submits'; + var MIN_GAP_MS = 30 * 1000; // at least 30s between submissions + var WINDOW_MS = 24 * 60 * 60 * 1000; // rolling 24h window + var MAX_IN_WINDOW = 3; // max 3 submissions / 24h from this browser + function recentSubmits() { + var now = Date.now(), arr; + try { arr = JSON.parse(localStorage.getItem(LS_KEY) || '[]'); } catch (e) { arr = []; } + if (!Array.isArray(arr)) arr = []; + return arr.filter(function (t) { return typeof t === 'number' && (now - t) < WINDOW_MS; }); + } + function coolingDown() { + var arr = recentSubmits(), now = Date.now(); + if (arr.length >= MAX_IN_WINDOW) return true; + if (arr.length && (now - Math.max.apply(null, arr)) < MIN_GAP_MS) return true; + return false; + } + function recordSubmit() { + var arr = recentSubmits(); arr.push(Date.now()); + try { localStorage.setItem(LS_KEY, JSON.stringify(arr)); } catch (e) { } + } + function showAlert(kind) { + var msg = alertBox.getAttribute(kind === 'cooldown' ? 'data-cooldown-msg' : 'data-required-msg'); + if (msg) alertBox.textContent = msg; + alertBox.hidden = false; + } + + submit.addEventListener('click', function () { + // Bot trap: honeypot must stay empty. Silently succeed (no feedback for bots). + if (hp && hp.value) { form.hidden = true; success.hidden = false; return; } + if (!validate()) { showAlert('required'); return; } + if (coolingDown()) { showAlert('cooldown'); return; } + submit.disabled = true; + var d = collect(); + sendToForm(d); + recordSubmit(); + form.hidden = true; + var t = success.querySelector('.ms-success-title'), p = success.querySelector('.ms-success-text'); + t.textContent = d.type === 'student' ? t.getAttribute('data-student-title') : t.getAttribute('data-supporter-title'); + p.textContent = d.type === 'student' ? p.getAttribute('data-student-text') : p.getAttribute('data-supporter-text'); + success.hidden = false; + success.scrollIntoView({ behavior: 'smooth', block: 'center' }); + }); + + render(); +})(); diff --git a/mk/become-a-member/index.html b/mk/become-a-member/index.html new file mode 100644 index 00000000..3c778327 --- /dev/null +++ b/mk/become-a-member/index.html @@ -0,0 +1,562 @@ + + + + + + Стани член - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Избери јазик

    + +
    + +
    +
    + + +
    +
    +
    + Стани член +

    Најди ги своите луѓе во Словенија

    +

    Запознај луѓе, доаѓај на настани, добиј поддршка, создавај проекти и стани дел од македонската студентска заедница низ Словенија.

    + +
    +
    Запознај ја студентска Словенија 2024
    Македонска студентска вечер во Љубљана
    Навивање за Македонија, заедничко гледање ракомет во Словенија
    +
    + +
    +

    Зошто да станеш член?

    +
    +
    +
    +

    Најди ги своите луѓе

    Запознај македонски студенти низ Словенија и создади пријателства надвор од предавалната.

    +
    +
    +
    +

    Почувствувај поддршка

    Добиј практична помош, локално знаење и заедница што разбира што значи студирање во странство.

    +
    +
    +
    +

    Доаѓај на незаборавни настани

    Друженија, културни настани, спорт, излети, работилници и студентски собири.

    +
    +
    +
    +

    Стекни искуство

    Развивај вештини преку волонтирање, комуникација, проектна работа и организација на настани.

    +
    +
    +
    +

    Создади нешто значајно

    Донеси идеи, приклучи се на проекти и помогни да се обликуваат активностите за заедницата.

    +
    +
    +
    +

    Прошири ја својата мрежа

    Запознај студенти, алумни, професионалци, институции и партнери.

    +
    +
    +
    +

    Почувствувај се како дома

    Припаѓај на заедница каде никогаш не мораш да објаснуваш од каде доаѓаш.

    +
    +
    +
    + +
    +

    МСОС во бројки

    +
    +
    0активни членови
    +
    0настани и активности
    +
    0учесници
    +
    0партнери
    +
    +

    Бројки за потврда пред објава.

    +
    + +
    +

    Има повеќе начини да бидеш дел од МСОС

    +

    Не мора да организираш настани или да водиш за да припаѓаш. Приклучи се на начин што ти одговара.

    +
    +
    +
    +

    Остани поврзан

    Примај новости и знај што се случува.

    +
    +
    +
    +

    Приклучи се на заедницата

    Доаѓај на настани, запознавај луѓе и учествувај кога ти одговара.

    +
    +
    +
    +

    Волонтирај повремено

    Помагај на избрани активности без долгорочна обврска.

    +
    +
    +
    +

    Приклучи се на проекти

    Придонеси на конкретни иницијативи, кампањи, водичи или соработки.

    +
    +
    +
    +

    Организирај настани

    Помагај да се планираат, координираат, промовираат и реализираат активности.

    +
    +
    +
    +

    Преземи одговорност

    Истражи лидерство, управување, застапување или улоги во локален тим.

    +
    +
    +
    + +
    +

    Како всушност изгледа да си дел од МСОС

    + +
    + +
    +

    Зошто студентите се приклучија и зошто останаа

    +
    +
    +
    Се приклучив затоа што сакав да запознаам луѓе. Останав затоа што МСОС стана дел од мојот живот во Словенија.
    +
    AnaСтудентка, Љубљана
    +
    +
    +
    Кога се преселив во Словенија, не знаев од каде да почнам. Преку МСОС најдов поддршка, пријатели и можности.
    +
    MarkoСтудент, Марибор
    +
    +
    +
    Тимската работа ме научи повеќе од која било предавална. Организирав настани, запознав партнери и многу пораснав.
    +
    ElenaВолонтерка, Копер
    +
    +
    +

    Примерни цитати за замена со вистински.

    +
    + +
    +

    Види го МСОС во акција

    + + +
    + +
    +

    Тука има место за тебе

    +
    +

    За студенти

    Сегашни и идни студенти, додипломски и магистерски, во секој словенечки студентски град.

    Јас сум студент
    +

    За поддржувачи

    Не мора да си студент за да ја поддржиш заедницата. Придонеси со знаење, партнерства, менторство, волонтирање, спонзорства, медиуми или корисни врски.

    Сакам да го поддржам МСОС
    +
    +
    + +
    +
    + Формулар за членство +

    Приклучи се за неколку минути

    +

    Неколку пријателски прашања. Не мора сега да одлучиш колку активен сакаш да бидеш.

    +
    +
    + + + + +
    +

    Како сакаш да се поврзеш со МСОС?

    +
    + + +
    +
    + +
    +

    Кажи ни кој си

    +
    +
    +
    +

    Каде си на твоето студентско патување?

    +
    + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Што најмногу ти личи?

    +

    Избери колку сакаш.

    +
    + + + + + + + + + + +
    + + + +
    +
    +

    Во што би сакал да учествуваш?

    +

    Избери колку сакаш.

    +
    + + + + + + + + + + + + +
    +
    +
    +

    Каде да те поврземе?

    +
    + + + + + + + +
    + +
    +
    +

    Што би го направило МСОС вредно за тебе? (изборно)

    + +
    +
    + + + +
    + +
    +

    Кажи ни кој си

    +
    +
    +
    +

    Како сакаш да го поддржиш МСОС?

    +

    Избери колку сакаш.

    +
    + + + + + + + + + + +
    +
    +
    +

    Кажи ни како сакаш да придонесеш (изборно)

    + +
    +
    + + +
    + +
    + + + +
    +
    + + +
    + +
    +

    Добро е да се знае

    +
    +
    Дали членството е само за студенти во Љубљана?

    Не. МСОС е за македонски студенти низ Словенија, вклучувајќи Марибор, Копер, Нова Горица, Целје и други градови.

    +
    Дали можам да се приклучам пред да се преселам во Словенија?

    Да. Идните студенти може да се приклучат, да примаат новости и да се поврзат со луѓе пред пристигнувањето.

    +
    Дали морам да бидам многу активен?

    Не. Може да доаѓаш на настани, да си информиран, повремено да волонтираш или подоцна да преземеш поголема улога.

    +
    Дали има членарина?

    Да, членарината е 10 € годишно, што ни помага да организираме настани и да ги поддржуваме студентите низ Словенија.

    +
    Дали не-студенти можат да го поддржат МСОС?

    Да. Родители, алумни, професионалци, компании и други поддржувачи можат да придонесат со менторство, партнерства, спонзорства, знаење, волонтирање или корисни врски.

    +
    Што се случува откако ќе го испратам формуларот?

    Тимот на МСОС ги прегледува твоите податоци и те контактира со следниот чекор.

    +
    Дали можам подоцна да сменам колку сум активен?

    Да. Членовите можат да бидат повеќе или помалку активни според интересите и достапноста.

    +
    +
    + +
    +

    Твојата студентска приказна во Словенија може да почне тука

    +

    Без разлика дали бараш поддршка, пријателства, можности или чувство на припадност, МСОС со радост те прифаќа.

    + Стани член +
    +
    + + + + + + + + + diff --git a/mk/blog/index.html b/mk/blog/index.html new file mode 100644 index 00000000..86b6a44f --- /dev/null +++ b/mk/blog/index.html @@ -0,0 +1,343 @@ + + + + + + Блог - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Избери јазик

    + +
    + +
    +
    + + +
    +
    + Блог +

    Приказни, совети и студентски живот

    +

    Вистински искуства и практични совети од македонски студенти во Словенија. Нови приказни се на пат.

    +
    + +
    +
    + + + + + + +
    +
    +
    +
    +
    + Живот во Словенија +

    Викенд излети од вашиот студентски град

    +

    Оваа приказна наскоро следува. Подготвуваме корисни совети од прва рака за македонските студенти во Словенија.

    + Наскоро +
    +
    +
    +
    +
    + Заедница +

    Запознај го тимот на МСОС

    +

    Оваа приказна наскоро следува. Подготвуваме корисни совети од прва рака за македонските студенти во Словенија.

    + Наскоро +
    +
    +
    +
    +
    + Совети за студии +

    Како да го изберете вистинскиот факултет

    +

    Оваа приказна наскоро следува. Подготвуваме корисни совети од прва рака за македонските студенти во Словенија.

    + Наскоро +
    +
    +
    +
    +
    + Студентски живот +

    Како да планирате студентски буџет

    +

    Оваа приказна наскоро следува. Подготвуваме корисни совети од прва рака за македонските студенти во Словенија.

    + Наскоро +
    +
    +
    +
    +
    + Водичи +

    Пријава на престој, чекор по чекор

    +

    Оваа приказна наскоро следува. Подготвуваме корисни совети од прва рака за македонските студенти во Словенија.

    + Наскоро +
    +
    +
    +
    +
    + Живот во Словенија +

    Каде се среќаваат Македонците во Словенија

    +

    Оваа приказна наскоро следува. Подготвуваме корисни совети од прва рака за македонските студенти во Словенија.

    + Наскоро +
    +
    +
    +
    +
    + Заедница +

    Како да волонтирате во МСОС

    +

    Оваа приказна наскоро следува. Подготвуваме корисни совети од прва рака за македонските студенти во Словенија.

    + Наскоро +
    +
    +
    +
    +
    + Совети за студии +

    Учење словенечки: од каде да почнете

    +

    Оваа приказна наскоро следува. Подготвуваме корисни совети од прва рака за македонските студенти во Словенија.

    + Наскоро +
    +
    +
    +
    +
    + + + + + + + + + diff --git a/mk/cookie-policy/index.html b/mk/cookie-policy/index.html index e48dea6b..5644f374 100644 --- a/mk/cookie-policy/index.html +++ b/mk/cookie-policy/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -237,38 +221,40 @@ - diff --git a/mk/faq/index.html b/mk/faq/index.html new file mode 100644 index 00000000..0c32d110 --- /dev/null +++ b/mk/faq/index.html @@ -0,0 +1,494 @@ + + + + + + Често поставувани прашања - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Избери јазик

    + +
    + +
    +
    + + +
    +
    + Поддршка +

    Често поставувани прашања

    +

    Кратки одговори на прашањата што македонските студенти најчесто ги поставуваат за студирањето и животот во Словенија. Сите детали и официјални извори се во Студентскиот водич.

    +
    +
    +
    +

    Пријава и запишување

    +
    + Како да се пријавам на факултет преку порталот eVŠ? +
    +

    Пријавата ја поднесувате преку националниот портал eVŠ, во рокот и со начинот на најава што важат за странските кандидати.

    + Повеќе во водичот +
    +
    +
    + Кои се роковите и круговите за пријава за 2026/2027? +
    +

    Странските кандидати се пријавуваат во свои рокови, додипломскиот обично почнува напролет, а роковите за магистерски ги определува секој факултет, па секогаш проверувајте ги актуелните датуми за вашата програма.

    + Повеќе во водичот +
    +
    +
    + Како македонски кандидат, кој рок и услови важат за мене? +
    +

    Се пријавувате како кандидат од трета земја (не-ЕУ), обично за ограничен број места за странски студенти, а не во општиот словенечки рок.

    + Повеќе во водичот +
    +
    +
    + Колку места за студенти од трети земји има мојата програма? +
    +

    Некои програми имаат само неколку места за студенти од трети земји (кај конкурентните, како стоматологија, понекогаш само едно или две), па проверете ја вашата програма и имајте резервна опција.

    + Повеќе во водичот +
    +
    +
    + Дали има приемен испит или испит за способности за моето поле? +
    +

    Повеќето програми немаат приемен испит, исклучоци се области како уметност, архитектура, спорт и забна протетика.

    + Повеќе во водичот +
    +
    +
    + Дали ми треба сертификат за словенечки на ниво Б2? +
    +

    Само неколку програми бараат сертификат за словенечки на ниво Б2, медицина, стоматологија, фармација, психологија, филм/режија и новинарство, а повеќето други не.

    + Повеќе во водичот +
    +
    +
    +
    +

    Признавање и документи

    +
    + Дали мојата македонска диплома треба да се признае пред да се запишам? +
    +

    Да, универзитетот на кој се пријавувате го оценува вашето претходно македонско образование во рамки на приемот, па дипломите и уверенијата ги доставувате со пријавата.

    + Повеќе во водичот +
    +
    +
    + Дали моите документи бараат апостил и заверен судски превод? +
    +

    Клучните документи обично бараат апостил од Македонија и заверен судски превод на словенечки, обете средете ги пред заминување.

    + Повеќе во водичот +
    +
    +
    + Кои документи да ги подготвам и преведам пред да ја напуштам Македонија? +
    +

    Однапред подгответе и преведете ги дипломата, уверенијата за оценки, изводот од матична книга на родени и уверението од казнена евиденција, бидејќи во Словенија многу потешко се добиваат и заверуваат.

    + Повеќе во водичот +
    +
    +
    +
    +

    Школарина и стипендии

    +
    + Дали студирањето за мене како Македонец е бесплатно или плаќам школарина? +
    +

    Според билатералниот договор меѓу Словенија и Македонија, редовните додипломски и магистерски студии на јавните универзитети се бесплатни за македонските граѓани (самофинансирачките или вторите програми може да се плаќаат).

    + Повеќе во водичот +
    +
    +
    + Дали можам да добијам стипендија? +
    +

    Да, може да проверите државни стипендии, Ad Futura, CEEPUS и факултетски стипендии, секоја со свои услови и рокови.

    + Повеќе во водичот +
    +
    +
    +
    +

    Дозвола за престој и виза

    +
    + Дали ми треба виза за влез во Словенија или е доволна дозволата за престој? +
    +

    Како македонски државјанин можете да влезете без виза за краток престој, но за студирање ви треба дозвола за привремен престој заради студии, која обично ја средувате пред преселбата.

    + Повеќе во водичот +
    +
    +
    + Како ја добивам дозволата за престој и каде барам? +
    +

    Обично барате во словенечката амбасада во Скопје пред пристигнување или во локалната управна единица (upravna enota) кога сте веќе во Словенија.

    + Повеќе во водичот +
    +
    +
    + Кои документи ми се потребни за дозволата? +
    +

    Обично ви требаат потврда за запишување, важечки пасош, доказ за доволни средства, здравствено осигурување, уверение од казнена евиденција и пропишаните такси.

    + Повеќе во водичот +
    +
    +
    + Колку морам да докажам како „доволни средства“ и дали важи изјава од родител? +
    +

    Треба да докажете околу 507,43 € месечно, што е словенечкиот основен износ на минимален доход од 1 април 2026 (проверете го актуелниот износ), а заверена изјава од родител за издршка е вообичаениот и траен доказ.

    + Повеќе во водичот +
    +
    +
    + Колку долго важи дозволата и како ја обновувам секоја година? +
    +

    Дозволата се издава за студиската година и мора да се обновува секоја година, барањето поднесете го најдоцна до 30 септември (може да барате околу 60 дена пред истекот), бидејќи ако го пропуштите станува сосема ново барање.

    + Повеќе во водичот +
    +
    +
    + Дали морам да ја пријавам адресата по вселувањето? +
    +

    Да, привремената адреса мора да ја пријавите во управната единица во рок од 8 дена по вселувањето.

    + Повеќе во водичот +
    +
    +
    +
    +

    Здравствено осигурување

    +
    + Што е RM/SI 3 и дали ми треба за здравствено покритие? +
    +

    RM/SI 3 е потврдата од постапката меѓу двете држави што ви овозможува основно здравствено покритие во Словенија врз основа на вашето македонско осигурување, и да, ви е потребна.

    + Повеќе во водичот +
    +
    +
    + Дали сум осигурен од првиот ден и какво осигурување ми треба за дозволата? +
    +

    За дозволата за престој ви треба важечко здравствено осигурување, па покритието RM/SI 3 (и по избор дополнително осигурување) средете го пред или веднаш по пристигнувањето.

    + Повеќе во водичот +
    +
    +
    + Како да регистрирам матичен лекар? +
    +

    Кога сте осигурени, во здравствен дом во вашиот студиски град избирате и регистрирате матичен лекар (за времето на студиите).

    + Повеќе во водичот +
    +
    +
    +
    +

    Сместување

    +
    + Дали како странски студент можам да добијам субвенционирана соба во студентски дом? +
    +

    Обично не, субвенционираните места во домовите се наменети за словенечки и ЕУ студенти, па самофинансирачките странски студенти по правило изнајмуваат приватно.

    + Повеќе во водичот +
    +
    +
    + Каде ќе живеам и кои се моите опции за сместување? +
    +

    Повеќето студенти изнајмуваат приватна соба или заеднички стан, а некои користат посредници за студентско сместување или приватни домови во својот град.

    + Повеќе во водичот +
    +
    +
    + Колку чини сместувањето и што плаќам однапред? +
    +

    Приватните соби чинат околу 200 to 400 € месечно (гарсоњерите повеќе), а при вселување обично плаќате депозит плус киријата за првиот месец.

    + Повеќе во водичот +
    +
    +
    +
    +

    Исхрана и превоз

    +
    + Како да се регистрирам за субвенционирана студентска исхрана и дали имам право? +
    +

    Да, студентите со важечки статус (вклучувајќи странски) може да користат субвенционирана исхрана (бони), се регистрирате еднаш преку интернет со вашите студентски податоци и телефон или чип-картичка.

    + Повеќе во водичот +
    +
    +
    + Како да го добијам субвенционираниот билет за јавен превоз и дали имам право? +
    +

    Студентите може да купат субвенциониран меѓуградски билет IJPP без оглед на оддалеченоста од факултетот, барате со студентски статус, а градскиот превоз (на пр. Urbana во Љубљана) се додава посебно.

    + Повеќе во водичот +
    +
    +
    +
    +

    Работа и административни основи

    +
    + Дали можам да работам додека студирам со дозвола за престој заради студии? +
    +

    Да, студентската работа преку напатница (напотница) е дозволена со дозвола за престој заради студии; редовниот работен однос е нешто друго и бара промена на дозволата.

    + Повеќе во водичот +
    +
    +
    + Што ми треба за да почнам да работам преку студентски сервис? +
    +

    Се зачленувате во студентски сервис и ви требаат словенечки даночен број, ЕМШО и обично банкарска сметка, а пред секоја работа и напатница.

    + Повеќе во водичот +
    +
    +
    + Како да добијам ЕМШО и словенечки даночен број и зошто ми се потребни? +
    +

    ЕМШО и даночен број добивате во управната единица и финансиската управа (FURS); ви требаат за отворање банкарска сметка, работа и повеќето административни работи.

    + Повеќе во водичот +
    +
    +
    + Која е разликата меѓу студентска работа и редовно вработување? +
    +

    Студентската работа преку напатница е флексибилна и дозволена со дозволата за студии, додека редовниот работен однос е формална работа што обично бара промена на дозволата од студии во работа.

    + Повеќе во водичот +
    +
    +
    +
    +

    Пари, статус и по дипломирање

    +
    + Што морам да средам во првата недела по пристигнувањето? +
    +

    Во првите денови ја пријавувате адресата, средувате здравствено осигурување, добивате ЕМШО и даночен број, отворате банкарска сметка и активирате исхрана и превоз.

    + Повеќе во водичот +
    +
    +
    + Колку пари реално ми требаат месечно? +
    +

    Повеќето студенти планираат околу 455 to 850 € месечно во зависност од градот, при што првиот месец е поскап поради депозитот и трошоците за уредување.

    + Повеќе во водичот +
    +
    +
    + Што е студентски статус и какви права ми дава? +
    +

    Студентскиот статус е вашиот активен запис како студент и токму тој ги овозможува субвенционираната исхрана, превозот, студентската работа и другите поволности.

    + Повеќе во водичот +
    +
    +
    + Дали можам да останам во Словенија да барам работа по дипломирањето? +
    +

    Да, по дипломирањето може да барате дозвола за престој заради барање работа (околу девет месеци) за да останете и да барате работа.

    + Повеќе во водичот +
    +
    +
    +
    +
    +

    Сè уште имате прашање?

    +

    Пишете ни и ќе ви помогнеме да ја најдете вистинската институција или одговор. Може да се придружите и на нашата Viber заедница на македонски студенти што веќе живеат во Словенија.

    + +
    +
    + + + + + + + diff --git a/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html b/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html index 45f615ae..8b82783f 100644 --- a/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html +++ b/mk/get-to-know-macedonia/a-table-full-of-macedonia/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -314,38 +298,40 @@ - diff --git a/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html b/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html index fe3ece17..41a70fc2 100644 --- a/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html +++ b/mk/get-to-know-macedonia/history-you-can-still-walk-through/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -320,38 +304,40 @@ - diff --git a/mk/get-to-know-macedonia/index.html b/mk/get-to-know-macedonia/index.html index 7decc09f..bb9d23b4 100644 --- a/mk/get-to-know-macedonia/index.html +++ b/mk/get-to-know-macedonia/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -289,38 +273,40 @@ - diff --git a/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html b/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html index fda34e4e..ac8e98b5 100644 --- a/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html +++ b/mk/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -320,38 +304,40 @@ - diff --git a/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html b/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html index 4460fa92..97d3eb77 100644 --- a/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html +++ b/mk/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -312,38 +296,40 @@ - diff --git a/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html b/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html index f56269c3..3f20dbe3 100644 --- a/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html +++ b/mk/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -302,38 +286,40 @@ - diff --git a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html index bbc9d851..7dcf76d9 100644 --- a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -299,38 +283,40 @@ - diff --git a/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html b/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html index dbd30e0a..906eea3d 100644 --- a/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html +++ b/mk/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -304,38 +288,40 @@ - diff --git a/mk/get-to-know-slovenia/index.html b/mk/get-to-know-slovenia/index.html index 19b3eac4..bc7c18e5 100644 --- a/mk/get-to-know-slovenia/index.html +++ b/mk/get-to-know-slovenia/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -289,38 +273,40 @@ - diff --git a/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html b/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html index 4a998b39..6699e69a 100644 --- a/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html +++ b/mk/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -300,38 +284,40 @@ - diff --git a/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html b/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html index 46e2800e..cc31c682 100644 --- a/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html +++ b/mk/get-to-know-slovenia/ljubljana-through-our-eyes/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -290,38 +274,40 @@ - diff --git a/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html b/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html index f444251c..577f2a44 100644 --- a/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html +++ b/mk/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -321,38 +305,40 @@ - diff --git a/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html b/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html index c8415b10..5e6ae0bc 100644 --- a/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html +++ b/mk/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -306,38 +290,40 @@ - diff --git a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html index bf3e54d2..bfbec0f8 100644 --- a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -277,38 +261,40 @@ - diff --git a/mk/index.html b/mk/index.html index 17db18c1..c7013e92 100644 --- a/mk/index.html +++ b/mk/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -190,7 +174,43 @@

    Ги зајакнуваме младите со вештини за да го променат светот

    Без разлика дали имате тим од 2 или 200 луѓе, нашите заеднички тимски сандачиња ги одржуваат сите на иста страна и во тек со случувањата.

    - + Стани член + +
    + +
    +

    Наши партнери и поддржувачи

    +
    +
    +
    + Embassy of the Republic of Slovenia in Skopje + NLB Banka + Central Technological Library (CTK), University of Ljubljana + Association of Slovenian and Macedonian Entrepreneurs (DSMP) + Kampus + Povezani + + + + + + +
    + +
    @@ -202,7 +222,7 @@

    Запознајте го нашиот неверојатен тим!

    -

    Нашата филозофија е едноставна — да вработиме тим од разновидни, страсни луѓе и да поттикнеме култура која ве овластува да ја вршите својата најдобра работа.

    +

    Нашата филозофија е едноставна, да вработиме тим од разновидни, страсни луѓе и да поттикнеме култура која ве овластува да ја вршите својата најдобра работа.

    @@ -210,7 +230,7 @@

    Активности

    -

    Нашата филозофија е едноставна — да вработиме тим од разновидни, страсни луѓе и да поттикнеме култура која ве овластува да ја вршите својата најдобра работа.

    +

    Нашата филозофија е едноставна, да вработиме тим од разновидни, страсни луѓе и да поттикнеме култура која ве овластува да ја вршите својата најдобра работа.

    @@ -220,7 +240,7 @@
  • Забава и дружење
  • Студентска поддршка
  • - + Стани член

    Sed molestie penatibus sit bibendum pharetra purus faucibus fames aliquet. Morbi morbi ac sed tempor porta. Dui iaculis vitae fames sapien. Pellentesque urna eget habitasse arcu sed ornare. Dignissim lobortis ultrices maecenas magna ac habitant donec etiam at.

    @@ -229,38 +249,44 @@
    -
    +

    Најнови вести

    -

    Don’t miss what’s happening! Here you’ll find all our updates — from student news to upcoming activities and community highlights.

    +

    Што е ново кај МСОС, од настани и проекти до блог приказни и објави.

    -
    - Слика на снежен планински врв во розови и сини нијанси + -
    - Жена презентира пред табла со лепливи белешки на тим + -
    - + Види ги сите
    @@ -412,7 +438,7 @@

    Сè уште имате прашања?

    Не можете да го најдете одговорот што го барате? Ве молиме разговарајте со нашиот пријателски тим.

    - + Види ги сите ЧПП
    @@ -424,38 +450,40 @@ - + \ No newline at end of file diff --git a/mk/news/index.html b/mk/news/index.html new file mode 100644 index 00000000..83e2cf6d --- /dev/null +++ b/mk/news/index.html @@ -0,0 +1,418 @@ + + + + + + Вести и новости - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Избери јазик

    + +
    + +
    +
    + + +
    +
    + Вести +

    Вести и новости

    +

    Сè ново кај МСОС на едно место: настани и проекти, блог приказни и објави.

    +
    +
    +
    + + + + +
    +
    + + + + + + + + + + + + + + + + +
    + +
    +
    + + + + + + + + diff --git a/mk/news/proof-of-means-updated-2026/index.html b/mk/news/proof-of-means-updated-2026/index.html new file mode 100644 index 00000000..d1dd6848 --- /dev/null +++ b/mk/news/proof-of-means-updated-2026/index.html @@ -0,0 +1,243 @@ + + + + + + Износот за доказ за средства ажуриран на 507,43 € месечно - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Избери јазик

    + +
    + +
    +
    + + +
    +
    + Назад кон вести + Вести +

    Износот за доказ за средства ажуриран на 507,43 € месечно

    + +
    + Каса полна со евра, монети и банкноти +
    Image by Alexa from Pixabay
    +
    +
    +

    Ако аплицирате за студентска дозвола за престој во Словенија или ја продолжувате, мора да докажете дека имате доволно средства за издршка. Тој услов е врзан за словенечкиот основен износ на минимален доход (osnovni znesek minimalnega dohodka).

    +

    Од 1 април 2026 овој основен износ на минимален доход изнесува 507,43 € месечно. Тоа е износот што треба да бидете подготвени да го докажете за целата академска година, најчесто преку писмена изјава од родител за поддршка, или преку други прифатени докази како стипендија, банкарски средства или заработка од студентска работа.

    +

    Бидејќи износот го следи минималниот доход, може повторно да се промени. Пред да поднесете, секогаш потврдете го тековниот официјален износ кај вашата управна единица и прашајте како го пресметуваат периодот и кои докази ги прифаќаат.

    +
    +
    + Официјален извор + gov.si — Парична социјална помош +
    + Прочитај го водичот за дозвола за престој +
    +
    + + + + + + + + + diff --git a/mk/privacy-policy/index.html b/mk/privacy-policy/index.html index 99177793..a634d61e 100644 --- a/mk/privacy-policy/index.html +++ b/mk/privacy-policy/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -282,38 +266,40 @@ - diff --git a/mk/projects/humanitarian-tournament-in-maribor/index.html b/mk/projects/humanitarian-tournament-in-maribor/index.html index a6c6cc22..e1e6541c 100644 --- a/mk/projects/humanitarian-tournament-in-maribor/index.html +++ b/mk/projects/humanitarian-tournament-in-maribor/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -270,38 +254,40 @@ - diff --git a/mk/projects/in-memory-of-frosina-kulakova/index.html b/mk/projects/in-memory-of-frosina-kulakova/index.html index 4c7c49ef..0e393a8d 100644 --- a/mk/projects/in-memory-of-frosina-kulakova/index.html +++ b/mk/projects/in-memory-of-frosina-kulakova/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -219,38 +203,40 @@ - diff --git a/mk/projects/in-memory-of-the-kochani-victims/index.html b/mk/projects/in-memory-of-the-kochani-victims/index.html index ca15180e..6de35016 100644 --- a/mk/projects/in-memory-of-the-kochani-victims/index.html +++ b/mk/projects/in-memory-of-the-kochani-victims/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -229,38 +213,40 @@ - diff --git a/mk/projects/index.html b/mk/projects/index.html index 6fbf16e5..e3d233cc 100644 --- a/mk/projects/index.html +++ b/mk/projects/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -277,13 +261,13 @@ - +
    Студенти уживаат во кафе и бурек пред библиотеката ЦТК
    -

    Утринско кафе пред ЦТК – 2024

    +

    Утринско кафе пред ЦТК, 2024

    Кога испитите некако ти стануваат полесни со саботно утринско кафе, бурек и добро друштво!

    @@ -306,7 +290,7 @@

    Македонска студентска вечер во Љубљана

    -

    Од идеја до журка со 500 студенти – вака започна нашата приказна!

    +

    Од идеја до журка со 500 студенти, вака започна нашата приказна!

    @@ -338,38 +322,40 @@ - + \ No newline at end of file diff --git a/mk/projects/macedonian-student-night-in-ljubljana/index.html b/mk/projects/macedonian-student-night-in-ljubljana/index.html index c6353dba..e9e30465 100644 --- a/mk/projects/macedonian-student-night-in-ljubljana/index.html +++ b/mk/projects/macedonian-student-night-in-ljubljana/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -178,7 +162,7 @@

    Објавено на 8 октомври 2022

    Македонска студентска вечер во Љубљана

    -

    Од идеја до журка со 500 студенти – вака започна нашата приказна!

    +

    Од идеја до журка со 500 студенти, вака започна нашата приказна!

    @@ -186,17 +170,17 @@
    -

    На 8 октомври 2022 година, во срцето на Студентскиот кампус во Љубљана, се одржа првата македонска студентска вечер во Словенија. Под мотото #FeelsLikeHome, повеќе од 500 млади уживаа во македонска музика, вкусна традиционална храна и атмосфера која потсетуваше на дома. Овој настан не беше само журка – беше почеток на една нова приказна, која подоцна ќе прерасне во Македонска студентска организација во Словенија (МСОС).

    +

    На 8 октомври 2022 година, во срцето на Студентскиот кампус во Љубљана, се одржа првата македонска студентска вечер во Словенија. Под мотото #FeelsLikeHome, повеќе од 500 млади уживаа во македонска музика, вкусна традиционална храна и атмосфера која потсетуваше на дома. Овој настан не беше само журка, беше почеток на една нова приказна, која подоцна ќе прерасне во Македонска студентска организација во Словенија (МСОС).

    Како една идеја за дружење стана почеток на движење

    -

    Сè започна со едноставна желба – да се собереме, да се запознаеме и да ја почувствуваме Македонија, иако сме далеку од неа. Кристијан Поповски, тогаш студент на Економскиот факултет во Љубљана, ја сподели својата идеја со неколку колеги, а одговорот беше неверојатен. За помалку од две недели, преку 40 студенти се пријавија во организацискиот тим. Секој понесе дел од својот ентузијазам и време, а заедничкиот дух и желбата за поврзување ја претворија оваа спонтана иницијатива во настан што долго ќе го паметиме.

    +

    Сè започна со едноставна желба, да се собереме, да се запознаеме и да ја почувствуваме Македонија, иако сме далеку од неа. Кристијан Поповски, тогаш студент на Економскиот факултет во Љубљана, ја сподели својата идеја со неколку колеги, а одговорот беше неверојатен. За помалку од две недели, преку 40 студенти се пријавија во организацискиот тим. Секој понесе дел од својот ентузијазам и време, а заедничкиот дух и желбата за поврзување ја претворија оваа спонтана иницијатива во настан што долго ќе го паметиме.

    Подготовки и состаноци за македонската студентска вечер
    Фотографии од подготовките и состаноците за организирање на македонската студентска вечер
    -

    Од тој момент, секој слободен миг го поминувавме во канцелариите на студентската организација „Повезани“, кои ни дадоа голема поддршка во организирањето. Денови и ноќи правевме планови, одржувавме состаноци, пишувавме објави на социјалните мрежи – сè со цел да создадеме настан кој првично мислевме дека ќе привлече, ако имаме среќа, околу 100 посетители.

    +

    Од тој момент, секој слободен миг го поминувавме во канцелариите на студентската организација „Повезани“, кои ни дадоа голема поддршка во организирањето. Денови и ноќи правевме планови, одржувавме состаноци, пишувавме објави на социјалните мрежи, сè со цел да создадеме настан кој првично мислевме дека ќе привлече, ако имаме среќа, околу 100 посетители.

    Една недела пред настанот, секој ден објавувавме интересни факти за Македонија, нејзините национални богатства, музика и култура. Полека, но сигурно, ја градевме атмосферата и ентузијазмот, не само кај македонските студенти, туку и кај многу други кои сакаа да ја почувствуваат нашата енергија.

    @@ -205,8 +189,8 @@
    -

    „Организирањето на првата МСОС журка беше уникатно искуство – без сон, амбициозни и вклучени во сè, од логистика до бришење на подот... Среќа што постои Red Bull 😉 (П.с. целиот фрижидер го испивме!)“

    -
    — Марко – студент во прва година
    +

    „Организирањето на првата МСОС журка беше уникатно искуство, без сон, амбициозни и вклучени во сè, од логистика до бришење на подот... Среќа што постои Red Bull 😉 (П.с. целиот фрижидер го испивме!)“

    +
    , Марко, студент во прва година

    Вкусот и мирисот на Македонија во срцето на Љубљана

    @@ -217,7 +201,7 @@
    Фотографии од штандовите со македонски обележја, традиционална храна и пијалаци.
    -

    Покрај храната, посетителите можеа да разгледаат интересни факти за државата, фотографии од познати македонски дејци и културни знаменитости, како и да видат традиционални носии и гајда одблиску. Атмосферата беше топла и полна со љубопитност – како мала изложба во рамките на една голема студентска забава.

    +

    Покрај храната, посетителите можеа да разгледаат интересни факти за државата, фотографии од познати македонски дејци и културни знаменитости, како и да видат традиционални носии и гајда одблиску. Атмосферата беше топла и полна со љубопитност, како мала изложба во рамките на една голема студентска забава.

    Мини квиз со прашања за Македонија @@ -233,16 +217,16 @@

    Посебна чест ни беше да ја пречекаме и амбасадорката на Северна Македонија во Словенија, г-ѓа Сузана Зеленковска, која упати топли зборови на охрабрување и поддршка за младите. Нејзиното присуство и интерес за настанот беа дополнителен мотив да продолжиме со нашата мисија за поврзување и афирмација на македонската студентска заедница.

    -

    Журката беше одлична, со супер енергија што се шири насекаде. Студенти на сите страни и во еден момент владееше мал, но контролиран хаос – вистинско место каде што успеавме да се избориме и да направиме еден навистина одличен настан. Иако ја завршивме журката малку порано, студентите не престанаа уште еден час да пеат заедно со нас, како што го расчистувавме местото. Навистина, ноќ за паметење!

    +

    Журката беше одлична, со супер енергија што се шири насекаде. Студенти на сите страни и во еден момент владееше мал, но контролиран хаос, вистинско место каде што успеавме да се избориме и да направиме еден навистина одличен настан. Иако ја завршивме журката малку порано, студентите не престанаа уште еден час да пеат заедно со нас, како што го расчистувавме местото. Навистина, ноќ за паметење!

    -

    „Бев дел од тимот за организација и требаше да одржувам ред и мир меѓу студентите, ама кога ми ја пуштија песната ‘Бисер Балкански’ не издржав – па им се приклучив и јас... Тоа беше мојот специјален момент таа вечер!“

    -
    — Христијан – студент во втора година
    +

    „Бев дел од тимот за организација и требаше да одржувам ред и мир меѓу студентите, ама кога ми ја пуштија песната ‘Бисер Балкански’ не издржав, па им се приклучив и јас... Тоа беше мојот специјален момент таа вечер!“

    +
    , Христијан, студент во втора година

    Почеток што ќе го паметиме

    -

    Таа вечер не беше само уште една студентска забава – беше моментот кога сфативме дека сме започнале нешто поголемо. Наместо очекуваните 100 гости, во клубот влегоа околу 500 студенти, а енергијата беше неверојатна. Се создадоа нови пријателства, се слушаа песни што ги пеевме од срце, а македонската култура и традиција беа во прв план цела вечер.

    -

    Оваа ноќ го постави темелот за Македонската студентска организација во Словенија и ни покажа дека со ентузијазам, заедништво и малку храброст, може да се создаде нешто што ќе ги обедини луѓето и ќе им даде чувство на дом – дури и кога се далеку од него.

    +

    Таа вечер не беше само уште една студентска забава, беше моментот кога сфативме дека сме започнале нешто поголемо. Наместо очекуваните 100 гости, во клубот влегоа околу 500 студенти, а енергијата беше неверојатна. Се создадоа нови пријателства, се слушаа песни што ги пеевме од срце, а македонската култура и традиција беа во прв план цела вечер.

    +

    Оваа ноќ го постави темелот за Македонската студентска организација во Словенија и ни покажа дека со ентузијазам, заедништво и малку храброст, може да се создаде нешто што ќе ги обедини луѓето и ќе им даде чувство на дом, дури и кога се далеку од него.

    Посветениот тим на волонтери по завршувањето на настанот @@ -293,38 +277,40 @@ - diff --git a/mk/projects/meet-student-slovenia-2023/index.html b/mk/projects/meet-student-slovenia-2023/index.html index cfca210f..9096e531 100644 --- a/mk/projects/meet-student-slovenia-2023/index.html +++ b/mk/projects/meet-student-slovenia-2023/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - +
    @@ -186,10 +170,10 @@
    -

    Како изгледа првиот чекор кон студентскиот живот во Словенија? На ова прашање се обидовме да дадеме одговор преку настанот „Запознај ја студентска Словенија“, кој го организиравме на 18 септември 2023 во НЛБ Галерија во Скопје. Атмосферата беше полна со возбуда – повеќе од 100 идни студенти и нивните семејства дојдоа со едно исто чувство: желба да откријат што ги чека таму каде што ќе го започнат своето ново поглавје.

    +

    Како изгледа првиот чекор кон студентскиот живот во Словенија? На ова прашање се обидовме да дадеме одговор преку настанот „Запознај ја студентска Словенија“, кој го организиравме на 18 септември 2023 во НЛБ Галерија во Скопје. Атмосферата беше полна со возбуда, повеќе од 100 идни студенти и нивните семејства дојдоа со едно исто чувство: желба да откријат што ги чека таму каде што ќе го започнат своето ново поглавје.

    Што се крие зад студентскиот живот во Словенија?

    -

    Наместо суви информации, студентите имаа можност да слушнат вистински приказни – од оние што веќе го минуваат истиот пат. Студенти од Љубљана, Марибор и Копер зборуваа за своите предизвици, првите впечатоци, смешни ситуации и моментите кога поддршката од заедницата била пресудна. А публиката? Со огромно внимание впиваше сè, бидејќи токму тие прашања што никогаш не ги пишува на брошурите – тука добија во вид на искрени одговори.

    +

    Наместо суви информации, студентите имаа можност да слушнат вистински приказни, од оние што веќе го минуваат истиот пат. Студенти од Љубљана, Марибор и Копер зборуваа за своите предизвици, првите впечатоци, смешни ситуации и моментите кога поддршката од заедницата била пресудна. А публиката? Со огромно внимание впиваше сè, бидејќи токму тие прашања што никогаш не ги пишува на брошурите, тука добија во вид на искрени одговори.

    Учесници на панел дискусијата @@ -197,7 +181,7 @@

    Гласови што инспирираат

    -

    На сцената се појавија нашите членови Киара Лазиќ, Ангел Наумов, Климентина Чаповска и Игор Арсов – секој со своја приказна, свој факултет, свој град. Заедно со модераторот Леон Шумански и водителот Васил Ханџиски, тие го претворија панелот во вистински разговор кој изгледаше повеќе како другарска дружба отколку како формална дискусија. Зборуваа за испити, за нови пријателства, за живот во студентски домови и за тоа колку е важно да не се откажуваш дури и кога ти изгледа најтешко.

    +

    На сцената се појавија нашите членови Киара Лазиќ, Ангел Наумов, Климентина Чаповска и Игор Арсов, секој со своја приказна, свој факултет, свој град. Заедно со модераторот Леон Шумански и водителот Васил Ханџиски, тие го претворија панелот во вистински разговор кој изгледаше повеќе како другарска дружба отколку како формална дискусија. Зборуваа за испити, за нови пријателства, за живот во студентски домови и за тоа колку е важно да не се откажуваш дури и кога ти изгледа најтешко.

    Васил Ханџиски на отворањето на настанот @@ -209,7 +193,7 @@
    Фотографија од учесниците на настанот. Малку нè изненадија со интересот, ама некако ги сместивме сите!♡
    -

    Зад сцената – нашите поддржувачи

    +

    Зад сцената, нашите поддржувачи

    Настанот не би бил можен без поддршката на Амбасадата на Република Словенија во Северна Македонија, НЛБ Банка Скопје, Капитал Финансиски Центар, Дијаг и Радио МОФ. Но вистинската сила ја дадоа МСОСци за подготвка на настанот и студентите со своите прашања, својата енергија и својата љубопитност.

    На настанот значајна поддршка и помош добивме и од Мелита Секуловска при организирањето на просторот и Александар Поповски при дизајнирање на веб страната на организација. Свечено им се заблагодаривме за нивната посветена работа, како и на работата на координаторката на настанот, Леа Јаначковска која го направи овој настан извонреден.

    @@ -227,7 +211,7 @@

    Зошто беше посебно?

    -

    Затоа што овој настан не беше само уште една презентација. Тој беше рака подадена кон идните студенти – порака дека не се сами, дека веќе постои заедница што ги чека. Некои од нив заминаа со нови пријатели, други со конкретни одговори на прашања што ги мачеле со месеци. Но сите заминаа со исто чувство: дека Словенија повеќе не е непознато место, туку нов дом во кој ќе бидат дел од нешто поголемо.

    +

    Затоа што овој настан не беше само уште една презентација. Тој беше рака подадена кон идните студенти, порака дека не се сами, дека веќе постои заедница што ги чека. Некои од нив заминаа со нови пријатели, други со конкретни одговори на прашања што ги мачеле со месеци. Но сите заминаа со исто чувство: дека Словенија повеќе не е непознато место, туку нов дом во кој ќе бидат дел од нешто поголемо.

    Присутните на настанот @@ -235,12 +219,12 @@
    -

    „Настанот беше „game changer“ за мене бидејќи конечно добив информации што ми помогнаа навистина да ја запознаам студентска Словенија наместо уште едно купче брошури. Панелот беше супер, опуштен, со муабети за најдобрите места за излегување, денови заглавени во библиотека, животот во студентски домови и класичната „се успав пред испит“ приказна... П.С. А, нетворкингот, нетворкингот беше топ – без незгодно ќутење.”

    -
    — Борјан Јовановски, иден студент и учесник на настанот
    +

    „Настанот беше „game changer“ за мене бидејќи конечно добив информации што ми помогнаа навистина да ја запознаам студентска Словенија наместо уште едно купче брошури. Панелот беше супер, опуштен, со муабети за најдобрите места за излегување, денови заглавени во библиотека, животот во студентски домови и класичната „се успав пред испит“ приказна... П.С. А, нетворкингот, нетворкингот беше топ, без незгодно ќутење.”

    +
    , Борјан Јовановски, иден студент и учесник на настанот

    Практични совети од прва рака

    -

    Посебен момент на настанот беше обраќањето на конзулот од Амбасадата на Република Словенија во Северна Македонија, господинот Мартин Глазар. Тој накратко ги претстави најважните чекори од процесот за добивање дозвола за привремен престој – една од најголемите грижи и предизвици за сите странски студенти во Словенија. На тој начин, идните студенти добија појасна слика за тоа што ги очекува и како полесно да се справат со административните процедури.

    +

    Посебен момент на настанот беше обраќањето на конзулот од Амбасадата на Република Словенија во Северна Македонија, господинот Мартин Глазар. Тој накратко ги претстави најважните чекори од процесот за добивање дозвола за привремен престој, една од најголемите грижи и предизвици за сите странски студенти во Словенија. На тој начин, идните студенти добија појасна слика за тоа што ги очекува и како полесно да се справат со административните процедури.

    Конзулот ги запознава студентите со процесот за добивање привремена дозвола за престој @@ -256,7 +240,7 @@

    Се гледаме во Словенија!

    -

    Со „Запознај ја студентска Словенија 2023“ успеавме да им подадеме рака на новите студенти и да им покажеме дека пред нив стои возбудливо патување полно со нови пријателства, предизвици и успеси. Искрено се надеваме дека следниот пат ќе се сретнеме токму таму – во предавалните, студентските домови и улиците на Љубљана, Марибор и Копер.

    +

    Со „Запознај ја студентска Словенија 2023“ успеавме да им подадеме рака на новите студенти и да им покажеме дека пред нив стои возбудливо патување полно со нови пријателства, предизвици и успеси. Искрено се надеваме дека следниот пат ќе се сретнеме токму таму, во предавалните, студентските домови и улиците на Љубљана, Марибор и Копер.

    Овој настан немаше да биде можен без поддршката на нашите партнери и пријатели, на кои им упатуваме огромна благодарност:

    1. Амбасада на Република Словенија во Северна Македонија (партнер)
    2. @@ -265,7 +249,7 @@
    3. Дијаг доо (спонзор)
    4. Радио МОФ (медиа партнер)
    -

    Благодарност до сите што беа дел од овој настан – а на идните студенти им порачуваме: вашата приказна во Словенија штотуку започнува и ние сме тука да бидеме дел од неа.

    +

    Благодарност до сите што беа дел од овој настан, а на идните студенти им порачуваме: вашата приказна во Словенија штотуку започнува и ние сме тука да бидеме дел од неа.

    Мал дел од тимот на МСОС @@ -316,38 +300,40 @@ - diff --git a/mk/projects/meet-student-slovenia-2024/index.html b/mk/projects/meet-student-slovenia-2024/index.html index 6b64f4b0..d2a5f12f 100644 --- a/mk/projects/meet-student-slovenia-2024/index.html +++ b/mk/projects/meet-student-slovenia-2024/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - +
    @@ -186,10 +170,10 @@
    -

    По успехот во 2023 година, „Запознај ја студентска Словенија“ оваа година се врати со уште поголема енергија. На 16 септември 2024 година во НЛБ Галерија Скопје, го одржавме второто издание на настанот кој стана вистинска традиција. Интересот беше огромен – имавме двојно повеќе пријави од капацитетот на просторот. Атмосферата беше полна со возбуда, прашања и желба за нови почетоци.

    +

    По успехот во 2023 година, „Запознај ја студентска Словенија“ оваа година се врати со уште поголема енергија. На 16 септември 2024 година во НЛБ Галерија Скопје, го одржавме второто издание на настанот кој стана вистинска традиција. Интересот беше огромен, имавме двојно повеќе пријави од капацитетот на просторот. Атмосферата беше полна со возбуда, прашања и желба за нови почетоци.

    „Кафе муабет“ со идни колеги, но на панел дискусија

    -

    Нашата цел никогаш не била да правиме „суви презентации“. Наместо тоа, организиравме панел – вистински муабет со четворица студенти кои веќе го живеат словенечкиот студентски живот. Марија Коштревска од Универзитетот во Љубљана, Васил Ханџиски од Универзитетот во Марибор, Софија Матовска од Универзитетот во Нова Горица и Игор Арсов од Универзитетот во Приморска зборуваа за се: првите денови далеку од дома, како е да се најде сместување, што се студентските „бони“ и како изгледа да се гради нов круг на пријатели. Секој сподели нешто свое, а публиката прашуваше и се вклучуваше – баш како муабет на кафе.

    +

    Нашата цел никогаш не била да правиме „суви презентации“. Наместо тоа, организиравме панел, вистински муабет со четворица студенти кои веќе го живеат словенечкиот студентски живот. Марија Коштревска од Универзитетот во Љубљана, Васил Ханџиски од Универзитетот во Марибор, Софија Матовска од Универзитетот во Нова Горица и Игор Арсов од Универзитетот во Приморска зборуваа за се: првите денови далеку од дома, како е да се најде сместување, што се студентските „бони“ и како изгледа да се гради нов круг на пријатели. Секој сподели нешто свое, а публиката прашуваше и се вклучуваше, баш како муабет на кафе.

    Панел дискусија со говорници @@ -235,7 +219,7 @@
    Фотографија од врачувањето на цвеќиња во знак на благодарност до Амбасадата, Капитал Финансиски центар и НЛБ Банка Скопје.
    -

    Посебна благодарност заслужува тимот на МСОС, кој неуморно работеше со недели за подготовките – од првичната идеја, па сè до последниот детаљ на вечерта. Над сè, големо признание за Леа Јаначковска, координаторка на настанот, која со својата енергија, трпение и организациски вештини се погрижи секоја коцка да биде на своето место.

    +

    Посебна благодарност заслужува тимот на МСОС, кој неуморно работеше со недели за подготовките, од првичната идеја, па сè до последниот детаљ на вечерта. Над сè, големо признание за Леа Јаначковска, координаторка на настанот, која со својата енергија, трпение и организациски вештини се погрижи секоја коцка да биде на своето место.

    Овојпат спомените од вечерта ги должиме на Христина Траковска, која беше фотограф и се погрижи сите тие моменти да останат забележани и да можеме повторно да ги проживуваме преку фотографии.

    @@ -244,7 +228,7 @@

    Зошто беше посебно?

    -

    Затоа што овој настан не беше само уште една презентација. Тој беше рака подадена кон идните студенти – порака дека не се сами, дека веќе постои заедница што ги чека. Некои од нив заминаа со нови пријатели, други со конкретни одговори на прашања што ги мачеле со месеци. Но сите заминаа со исто чувство: дека Словенија повеќе не е непознато место, туку нов дом во кој ќе бидат дел од нешто поголемо.

    +

    Затоа што овој настан не беше само уште една презентација. Тој беше рака подадена кон идните студенти, порака дека не се сами, дека веќе постои заедница што ги чека. Некои од нив заминаа со нови пријатели, други со конкретни одговори на прашања што ги мачеле со месеци. Но сите заминаа со исто чувство: дека Словенија повеќе не е непознато место, туку нов дом во кој ќе бидат дел од нешто поголемо.

    Учесниците поставуваат прашања на панелистите @@ -260,7 +244,7 @@

    Се гледаме во Словенија!

    -

    „Запознај ја студентска Словенија“ не е само настан. Тоа е место каде идните студенти го прават првиот чекор – со поддршка, со совети од прва рака и со чувство дека не се сами. И оваа година успеавме да го создадеме тоа чувство, а тоа е најголемата победа.

    +

    „Запознај ја студентска Словенија“ не е само настан. Тоа е место каде идните студенти го прават првиот чекор, со поддршка, со совети од прва рака и со чувство дека не се сами. И оваа година успеавме да го создадеме тоа чувство, а тоа е најголемата победа.

    Се гледаме повторно наредната година!

    П.С. Секоја година после успешно оранизираниот настан тимот на МСОС традиционално се упатува кон најблиската кафана, на вечер полна дружење, пеење и емоции! 🤪 Затоа вреди да си и ти дел од нашиот тим! Придружи ни се.

    @@ -308,38 +292,40 @@ - diff --git a/mk/projects/morning-coffee-in-front-of-ctk/index.html b/mk/projects/morning-coffee-in-front-of-ctk/index.html index 11699dc5..16b1f1f1 100644 --- a/mk/projects/morning-coffee-in-front-of-ctk/index.html +++ b/mk/projects/morning-coffee-in-front-of-ctk/index.html @@ -3,7 +3,7 @@ - Утринско кафе пред ЦТК – 2024: Кафе, бурек и многу насмевки + Утринско кафе пред ЦТК, 2024: Кафе, бурек и многу насмевки @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -177,7 +161,7 @@

    Објавено на 8 јуни 2024

    -

    Утринско кафе пред ЦТК – 2024: Кафе, бурек и многу насмевки

    +

    Утринско кафе пред ЦТК, 2024: Кафе, бурек и многу насмевки

    Кога испитите некако ти стануваат полесни со саботно утринско кафе, бурек и добро друштво пред ЦТК!

    @@ -186,21 +170,21 @@
    -

    На 8 јуни 2024, од 9 до 12 часот, пред Централната техничка библиотека на Универзитетот во Љубљана (ЦТК), ја организиравме нашата веќе традиционална студентска пауза – Утринско кафе пред ЦТК заедно со тимот на Скупина Повезани и ЦТК. Ова беше втора година по ред како се дружиме на истото место, но секој пат носи нови моменти за паметење.

    +

    На 8 јуни 2024, од 9 до 12 часот, пред Централната техничка библиотека на Универзитетот во Љубљана (ЦТК), ја организиравме нашата веќе традиционална студентска пауза, Утринско кафе пред ЦТК заедно со тимот на Скупина Повезани и ЦТК. Ова беше втора година по ред како се дружиме на истото место, но секој пат носи нови моменти за паметење.

    Кафе против стресот

    -

    Испитната сесија секогаш носи стрес – часови и часови учење, разговори што се вртат само околу испити, први и втори рокови, положени или не, некои за прв пат, а некои и по петти пат. Затоа решивме да направиме мала пауза за воздишка: да се опуштиме, да се насмееме и да се потсетиме дека сме тука заедно во овој студиски стрес.

    +

    Испитната сесија секогаш носи стрес, часови и часови учење, разговори што се вртат само околу испити, први и втори рокови, положени или не, некои за прв пат, а некои и по петти пат. Затоа решивме да направиме мала пауза за воздишка: да се опуштиме, да се насмееме и да се потсетиме дека сме тука заедно во овој студиски стрес.

    Студенти чекаат во ред пред библиотеката ЦТК.
    Стотина студенти во ред пред ЦТК, чекаат уште пред отворање за да фатат место во библиотеката.
    -

    Со шолја топло кафе во рака, а благодарение на Бурек Олимпија уживавме во вкусен бурек со месо и сирење. Се потрудивме и да внесеме малку забава – ги поканивме студентите да донесат свои чашки, а за најкреативните имаше награда.

    +

    Со шолја топло кафе во рака, а благодарение на Бурек Олимпија уживавме во вкусен бурек со месо и сирење. Се потрудивме и да внесеме малку забава, ги поканивме студентите да донесат свои чашки, а за најкреативните имаше награда.

    Студент се смее додека јаде бурек. -
    Бесплатен топол бурек – тајната формула за решавање и на најтешките математички проблеми 😉
    +
    Бесплатен топол бурек, тајната формула за решавање и на најтешките математички проблеми 😉
    @@ -210,7 +194,7 @@

    Поставивме две прашања што ни открија цела палета студентски емоции

    За дополнителна доза интеракција, поставивме две големи табли со прашања што едноставно те тераат да одговориш: „Како ја преживувам испитната сесија?“ и „Kako bi opisal počutje med izpitnem obdobjem?“.

    -

    Реакциите беа моментални – студентите се нафрлија да пишуваат, а одговорите беа сè, само не досадни: од „хаотично“ и „Сакаме да спиеме! (не во ЦТК)!" до „лагано“, „под стрес“, „исцрпено“, „среќно“ и „заспано“. Со други зборови – цел спектар на студентски емоции, искрено преточени во неколку зборови.

    +

    Реакциите беа моментални, студентите се нафрлија да пишуваат, а одговорите беа сè, само не досадни: од „хаотично“ и „Сакаме да спиеме! (не во ЦТК)!" до „лагано“, „под стрес“, „исцрпено“, „среќно“ и „заспано“. Со други зборови, цел спектар на студентски емоции, искрено преточени во неколку зборови.

    Табла со рачно напишани одговори од студенти за нивните чувства за време на испитниот рок. @@ -218,17 +202,17 @@

    Како стигнавме од кафе до симулатор на летање и принтери за ЗД моделирање

    -

    Како бонус за студентите во договор со универзитетската техничка библиотека, програмата беше збогатена и со изложба на ЦТК, каде што беа претставени симулатор за летање, ЗД принтери и друга интересна опрема која студентите можеа да ја пробаат, а потоа и бесплатно да ја изнајмат во Креативното студио на ЦТК – дел од нивната едукативна програма.

    +

    Како бонус за студентите во договор со универзитетската техничка библиотека, програмата беше збогатена и со изложба на ЦТК, каде што беа претставени симулатор за летање, ЗД принтери и друга интересна опрема која студентите можеа да ја пробаат, а потоа и бесплатно да ја изнајмат во Креативното студио на ЦТК, дел од нивната едукативна програма.

    Кафе и бурек = желба да станувам секој ден за да учам по 12 часа

    -

    Околу 150 луѓе го посетија заедничкиот штанд на МСОС, Повезани и ЦТК за да се подружат, да се напијат кафе, да грицнат нешто и да си разменат приказни меѓу книгите и роковите. Настанот помина во одлична атмосфера – многу насмевки, нови познанства и еден мал потсетник дека и во најстресните периоди, секогаш има време за кафе и добро друштво.

    +

    Околу 150 луѓе го посетија заедничкиот штанд на МСОС, Повезани и ЦТК за да се подружат, да се напијат кафе, да грицнат нешто и да си разменат приказни меѓу книгите и роковите. Настанот помина во одлична атмосфера, многу насмевки, нови познанства и еден мал потсетник дека и во најстресните периоди, секогаш има време за кафе и добро друштво.

    Студенти собрани на заедничкиот штанд за време на настанот.
    Дел од атмосферата на заедничкиот штанд
    -

    Се гледаме повторно и следната година – уште поопуштени и со уште повеќе кафе!

    +

    Се гледаме повторно и следната година, уште поопуштени и со уште повеќе кафе!

    Колаж од фотографии на кои се прикажани студенти, шолји за кафе и бурек. @@ -277,38 +261,40 @@ - diff --git a/mk/projects/paint-and-wine-at-sunset/index.html b/mk/projects/paint-and-wine-at-sunset/index.html index 88f6cc9b..60a7596c 100644 --- a/mk/projects/paint-and-wine-at-sunset/index.html +++ b/mk/projects/paint-and-wine-at-sunset/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - +
    @@ -253,38 +237,40 @@ - diff --git a/mk/projects/watching-handball-together-in-slovenia/index.html b/mk/projects/watching-handball-together-in-slovenia/index.html index 8a6a1a5a..96fc9961 100644 --- a/mk/projects/watching-handball-together-in-slovenia/index.html +++ b/mk/projects/watching-handball-together-in-slovenia/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -241,38 +225,40 @@ - diff --git a/mk/student-welcome-guide/academic-life/index.html b/mk/student-welcome-guide/academic-life/index.html index 196735c6..d42de713 100644 --- a/mk/student-welcome-guide/academic-life/index.html +++ b/mk/student-welcome-guide/academic-life/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -280,38 +264,40 @@ - diff --git a/mk/student-welcome-guide/administrative-basics/index.html b/mk/student-welcome-guide/administrative-basics/index.html index 9d4e7a8e..2c6179d6 100644 --- a/mk/student-welcome-guide/administrative-basics/index.html +++ b/mk/student-welcome-guide/administrative-basics/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -277,38 +261,40 @@ - diff --git a/mk/student-welcome-guide/admission-and-enrolment/index.html b/mk/student-welcome-guide/admission-and-enrolment/index.html index 33c12306..166dcd34 100644 --- a/mk/student-welcome-guide/admission-and-enrolment/index.html +++ b/mk/student-welcome-guide/admission-and-enrolment/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -278,38 +262,40 @@ - diff --git a/mk/student-welcome-guide/application-deadlines/index.html b/mk/student-welcome-guide/application-deadlines/index.html index 5db88799..7d435f79 100644 --- a/mk/student-welcome-guide/application-deadlines/index.html +++ b/mk/student-welcome-guide/application-deadlines/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -275,38 +259,40 @@ - diff --git a/mk/student-welcome-guide/arrival-checklist/index.html b/mk/student-welcome-guide/arrival-checklist/index.html index 75c550fc..48458598 100644 --- a/mk/student-welcome-guide/arrival-checklist/index.html +++ b/mk/student-welcome-guide/arrival-checklist/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -293,38 +277,40 @@ - diff --git a/mk/student-welcome-guide/bachelor-application/index.html b/mk/student-welcome-guide/bachelor-application/index.html index 9abf5ef5..ff0fd393 100644 --- a/mk/student-welcome-guide/bachelor-application/index.html +++ b/mk/student-welcome-guide/bachelor-application/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -305,38 +289,40 @@ - diff --git a/mk/student-welcome-guide/choose-a-programme/index.html b/mk/student-welcome-guide/choose-a-programme/index.html index 16a19d84..57a44958 100644 --- a/mk/student-welcome-guide/choose-a-programme/index.html +++ b/mk/student-welcome-guide/choose-a-programme/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -296,38 +280,40 @@ - diff --git a/mk/student-welcome-guide/complete-student-journey/index.html b/mk/student-welcome-guide/complete-student-journey/index.html index 8b3951c5..66fbdf00 100644 --- a/mk/student-welcome-guide/complete-student-journey/index.html +++ b/mk/student-welcome-guide/complete-student-journey/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -321,38 +305,40 @@ - diff --git a/mk/student-welcome-guide/document-preparation/index.html b/mk/student-welcome-guide/document-preparation/index.html index cfa9db8b..3874b76d 100644 --- a/mk/student-welcome-guide/document-preparation/index.html +++ b/mk/student-welcome-guide/document-preparation/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -270,38 +254,40 @@ - diff --git a/mk/student-welcome-guide/evs-application-guide/index.html b/mk/student-welcome-guide/evs-application-guide/index.html index a973c87b..18f5fae7 100644 --- a/mk/student-welcome-guide/evs-application-guide/index.html +++ b/mk/student-welcome-guide/evs-application-guide/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -288,38 +272,40 @@ - diff --git a/mk/student-welcome-guide/healthcare-in-slovenia/index.html b/mk/student-welcome-guide/healthcare-in-slovenia/index.html index 24e3ca6c..9005c995 100644 --- a/mk/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/mk/student-welcome-guide/healthcare-in-slovenia/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -331,38 +315,40 @@ - diff --git a/mk/student-welcome-guide/index.html b/mk/student-welcome-guide/index.html index 237fa6a4..68393325 100644 --- a/mk/student-welcome-guide/index.html +++ b/mk/student-welcome-guide/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -436,38 +420,40 @@ - diff --git a/mk/student-welcome-guide/master-application/index.html b/mk/student-welcome-guide/master-application/index.html index e5cfcad3..c9460f07 100644 --- a/mk/student-welcome-guide/master-application/index.html +++ b/mk/student-welcome-guide/master-application/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -282,38 +266,40 @@ - diff --git a/mk/student-welcome-guide/means-accommodation-address/index.html b/mk/student-welcome-guide/means-accommodation-address/index.html index 20477b57..916bec19 100644 --- a/mk/student-welcome-guide/means-accommodation-address/index.html +++ b/mk/student-welcome-guide/means-accommodation-address/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -208,7 +192,7 @@
  • Други признати приходи или имот
  • -

    Бараниот износ е врзан за тековниот словенечки основен износ на минимален доход. Референтниот износ што го користи водичот на МСОС за престој, проверен на 1 септември 2024, е 484,88 евра месечно за целата академска година. Бидејќи го следи минималниот доход, може да се промени, па потврдете го тековниот официјален износ кај надлежната управна единица и прашајте како го пресметува периодот и кои докази ги прифаќа.

    +

    Бараниот износ е врзан за тековниот словенечки основен износ на минимален доход (osnovni znesek minimalnega dohodka). Од 1 април 2026 овој основен износ на минимален доход изнесува 507,43 евра месечно и доказот за средства се пресметува врз него за целата академска година. Бидејќи го следи минималниот доход, може да се промени, па потврдете го тековниот официјален износ кај надлежната управна единица и прашајте како го пресметува периодот и кои докази ги прифаќа.

    Поддршка од родител

    @@ -278,7 +262,7 @@

    Изјавата не бара посебен образец и доволен е потпис од еден родител. Мора да биде напишана на англиски, словенечки или на јазик од поранешна Југославија со латинично писмо. Едноставна верзија гласи:

    -
    Јас, [цело име на родителот], роден на [датум], со живеалиште на [адреса], родител на [цело име на студентот], роден на [датум], изјавувам дека ќе го поддржувам моето дете за време на студиите во Словенија во академската 2026/2027 година со најмалку 484,88 евра месечно за целата академска година. Место, датум и потпис.
    +
    Јас, [цело име на родителот], роден на [датум], со живеалиште на [адреса], родител на [цело име на студентот], роден на [датум], изјавувам дека ќе го поддржувам моето дете за време на студиите во Словенија во академската 2026/2027 година со најмалку 507,43 евра месечно за целата академска година. Место, датум и потпис.

    Приложете доказ за роднинската врска и, каде што се бара, доказ за приходот или банкарските средства на родителот. Точниот очекуван текст потврдете го кај вашата управна единица, бидејќи некои служби претпочитаат сопствен образец.

    @@ -354,38 +338,40 @@ - diff --git a/mk/student-welcome-guide/my-route/index.html b/mk/student-welcome-guide/my-route/index.html index 247b8a71..361dfce6 100644 --- a/mk/student-welcome-guide/my-route/index.html +++ b/mk/student-welcome-guide/my-route/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -182,38 +166,40 @@ - diff --git a/mk/student-welcome-guide/official-sources-and-checklists/index.html b/mk/student-welcome-guide/official-sources-and-checklists/index.html index e1b5c76f..bbe4fb4f 100644 --- a/mk/student-welcome-guide/official-sources-and-checklists/index.html +++ b/mk/student-welcome-guide/official-sources-and-checklists/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -309,38 +293,40 @@ - diff --git a/mk/student-welcome-guide/prepare-to-move/index.html b/mk/student-welcome-guide/prepare-to-move/index.html index 419967b8..3a7511af 100644 --- a/mk/student-welcome-guide/prepare-to-move/index.html +++ b/mk/student-welcome-guide/prepare-to-move/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -326,38 +310,40 @@ - diff --git a/mk/student-welcome-guide/recognition-of-education/index.html b/mk/student-welcome-guide/recognition-of-education/index.html index f5de6a38..b4bfd04c 100644 --- a/mk/student-welcome-guide/recognition-of-education/index.html +++ b/mk/student-welcome-guide/recognition-of-education/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -271,38 +255,40 @@ - diff --git a/mk/student-welcome-guide/renew-change-graduate/index.html b/mk/student-welcome-guide/renew-change-graduate/index.html index 0d937153..0be9046d 100644 --- a/mk/student-welcome-guide/renew-change-graduate/index.html +++ b/mk/student-welcome-guide/renew-change-graduate/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -280,38 +264,40 @@ - diff --git a/mk/student-welcome-guide/rm-si-3-health-insurance/index.html b/mk/student-welcome-guide/rm-si-3-health-insurance/index.html index 1dfcf61f..2f1618b4 100644 --- a/mk/student-welcome-guide/rm-si-3-health-insurance/index.html +++ b/mk/student-welcome-guide/rm-si-3-health-insurance/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -320,38 +304,40 @@ - diff --git a/mk/student-welcome-guide/student-accommodation/index.html b/mk/student-welcome-guide/student-accommodation/index.html index 0940fe08..53badd6a 100644 --- a/mk/student-welcome-guide/student-accommodation/index.html +++ b/mk/student-welcome-guide/student-accommodation/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -320,38 +304,40 @@ - diff --git a/mk/student-welcome-guide/student-budget/index.html b/mk/student-welcome-guide/student-budget/index.html index 22c4235d..61f864bf 100644 --- a/mk/student-welcome-guide/student-budget/index.html +++ b/mk/student-welcome-guide/student-budget/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -228,7 +212,7 @@ -

    Имајте предвид дека условот за средства за дозволата за престој (околу 484,88 евра месечно при последната проверка) е близу долниот дел на овој опсег, па тоа е правен минимум што треба да се докаже, не удобен буџет за живот. Планирајте над него.

    +

    Имајте предвид дека условот за средства за дозволата за престој (околу 507,43 евра месечно од 1 април 2026) е близу долниот дел на овој опсег, па тоа е правен минимум што треба да се докаже, не удобен буџет за живот. Планирајте над него.

    Буџет за првиот месец

    @@ -290,38 +274,40 @@ - diff --git a/mk/student-welcome-guide/student-meals/index.html b/mk/student-welcome-guide/student-meals/index.html index 16e1a46f..9a493ea7 100644 --- a/mk/student-welcome-guide/student-meals/index.html +++ b/mk/student-welcome-guide/student-meals/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -278,38 +262,40 @@ - diff --git a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html index 2a7f2907..3f4881dd 100644 --- a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -315,38 +299,40 @@ - diff --git a/mk/student-welcome-guide/student-residence-permit/index.html b/mk/student-welcome-guide/student-residence-permit/index.html index 8852685e..da485358 100644 --- a/mk/student-welcome-guide/student-residence-permit/index.html +++ b/mk/student-welcome-guide/student-residence-permit/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -236,7 +220,7 @@

    Доказ за доволно средства

    -

    Мора да покажете дека можете да се издржувате. Најчестиот пат е писмена изјава од родител или старател, кој е законски обврзан да ве издржува, дека ќе ве поддржува (име, презиме, датум на раѓање) со најмалку 484,88 евра месечно за целата академска година. Доволен е потпис од еден родител. Не е потребна посебна нотарска заверка, но изјавата мора да биде напишана на англиски, словенечки или на еден од јазиците од поранешна Југославија со латинично писмо. Износот од 484,88 евра е врзан за словенечкиот основен износ на минимален доход и може да се промени, па затоа проверете ја тековната вредност. Други прифатени докази, како заработка од студентска работа, стипендија, банкарски средства или грантови, се на страницата за средства и адреса.

    +

    Мора да покажете дека можете да се издржувате. Најчестиот пат е писмена изјава од родител или старател, кој е законски обврзан да ве издржува, дека ќе ве поддржува (име, презиме, датум на раѓање) со најмалку 507,43 евра месечно за целата академска година. Доволен е потпис од еден родител. Не е потребна посебна нотарска заверка, но изјавата мора да биде напишана на англиски, словенечки или на еден од јазиците од поранешна Југославија со латинично писмо. Износот од 507,43 евра е врзан за словенечкиот основен износ на минимален доход и може да се промени, па затоа проверете ја тековната вредност. Други прифатени докази, како заработка од студентска работа, стипендија, банкарски средства или грантови, се на страницата за средства и адреса.

    Документ со ваш личен ракописен потпис

    @@ -332,38 +316,40 @@ - diff --git a/mk/student-welcome-guide/student-transport/index.html b/mk/student-welcome-guide/student-transport/index.html index 019a84e3..7f8a6198 100644 --- a/mk/student-welcome-guide/student-transport/index.html +++ b/mk/student-welcome-guide/student-transport/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -299,38 +283,40 @@ - diff --git a/mk/student-welcome-guide/student-work/index.html b/mk/student-welcome-guide/student-work/index.html index b2c290a0..048b434e 100644 --- a/mk/student-welcome-guide/student-work/index.html +++ b/mk/student-welcome-guide/student-work/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -273,38 +257,40 @@ - diff --git a/mk/student-welcome-guide/study-cities/index.html b/mk/student-welcome-guide/study-cities/index.html index ace0efcd..eba9459f 100644 --- a/mk/student-welcome-guide/study-cities/index.html +++ b/mk/student-welcome-guide/study-cities/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -305,38 +289,40 @@ - diff --git a/mk/student-welcome-guide/tuition-and-scholarships/index.html b/mk/student-welcome-guide/tuition-and-scholarships/index.html index 38e89626..9ac9d908 100644 --- a/mk/student-welcome-guide/tuition-and-scholarships/index.html +++ b/mk/student-welcome-guide/tuition-and-scholarships/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -275,38 +259,40 @@ - diff --git a/mk/student-welcome-guide/visa-and-residence-explained/index.html b/mk/student-welcome-guide/visa-and-residence-explained/index.html index 98f63656..a24b1d16 100644 --- a/mk/student-welcome-guide/visa-and-residence-explained/index.html +++ b/mk/student-welcome-guide/visa-and-residence-explained/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -302,38 +286,40 @@ - diff --git a/mk/student-welcome-guide/wellbeing-and-community/index.html b/mk/student-welcome-guide/wellbeing-and-community/index.html index e323d41e..8a9ea020 100644 --- a/mk/student-welcome-guide/wellbeing-and-community/index.html +++ b/mk/student-welcome-guide/wellbeing-and-community/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -269,38 +253,40 @@ - diff --git a/mk/student-welcome-guide/where-to-apply-for-residence/index.html b/mk/student-welcome-guide/where-to-apply-for-residence/index.html index ad840727..47e8a507 100644 --- a/mk/student-welcome-guide/where-to-apply-for-residence/index.html +++ b/mk/student-welcome-guide/where-to-apply-for-residence/index.html @@ -41,23 +41,16 @@ Што работиме - + @@ -113,23 +105,16 @@ Што работиме - + @@ -340,38 +324,40 @@ - diff --git a/my-route.js b/my-route.js index 776c2f0e..de1c5ab8 100644 --- a/my-route.js +++ b/my-route.js @@ -185,7 +185,7 @@ focus.push('
  • ' + s + '
  • '); } if (P.city && CITY_FOCUS[P.city]) { var c = CITY_FOCUS[P.city]; tip(c[lang] || c.en, c.link); } - if (P.budget === 'under-400') tip(lang === 'si' ? 'Ta proračun je blizu zahtevanega minimuma sredstev za dovoljenje (okoli 484,88 € na mesec), zato načrtujte rezervo za prvi mesec.' : lang === 'mk' ? 'Овој буџет е близу бараниот минимум средства за дозвола (околу 484,88 € месечно), па планирајте резерва за првиот месец.' : 'This budget is close to the residence-permit means minimum (around €484.88 per month), so plan a buffer for the expensive first month.', 'budget'); + if (P.budget === 'under-400') tip(lang === 'si' ? 'Ta proračun je blizu zahtevanega minimuma sredstev za dovoljenje (okoli 507,43 € na mesec), zato načrtujte rezervo za prvi mesec.' : lang === 'mk' ? 'Овој буџет е близу бараниот минимум средства за дозвола (околу 507,43 € месечно), па планирајте резерва за првиот месец.' : 'This budget is close to the residence-permit means minimum (around €507,43 per month), so plan a buffer for the expensive first month.', 'budget'); else if (P.budget === 'unsure') tip(lang === 'si' ? 'Za realen mesečni in prvi-mesečni proračun po mestih si oglejte stran o proračunu.' : lang === 'mk' ? 'За реален месечен и прв-месечен буџет по градови видете ја страницата за буџет.' : 'For a realistic monthly and first-month budget by city, see the budget page.', 'budget'); else if (P.budget) tip(lang === 'si' ? 'Vseeno ločeno načrtujte dražji prvi mesec (varščina, pristojbine, prevodi, selitev).' : lang === 'mk' ? 'Сепак планирајте одделно за поскапиот прв месец (депозит, такси, преводи, преселба).' : 'Still budget separately for the more expensive first month (deposit, fees, translations, moving).', 'budget'); if (P.role === 'parent') tip(lang === 'si' ? 'Kot podpornik boste pogosto potrebovali izjavo starša o sredstvih; pripravite jo v angleščini, slovenščini ali latinici.' : lang === 'mk' ? 'Како поддржувач честопати ќе ви треба изјава од родител за средства; подгответе ја на англиски, словенечки или со латиница.' : 'As the supporter you will often need a parent statement of means; prepare it in English, Slovenian, or Latin script.', 'means'); diff --git a/news-filter.js b/news-filter.js new file mode 100644 index 00000000..78a51501 --- /dev/null +++ b/news-filter.js @@ -0,0 +1,90 @@ +/* News hub: type filter + client-side pagination (they work together). */ +(function () { + var list = document.querySelector('.newshub-list'); + if (!list) return; + var chips = [].slice.call(list.querySelectorAll('.newshub-chip')); + var cards = [].slice.call(list.querySelectorAll('.newshub-card')); + var pager = list.querySelector('.newshub-pagination'); + var numbers = pager ? pager.querySelector('.pagination-numbers') : null; + var prevBtn = pager ? pager.querySelector('[data-nav="prev"]') : null; + var nextBtn = pager ? pager.querySelector('[data-nav="next"]') : null; + var pageSize = pager ? (parseInt(pager.getAttribute('data-page-size'), 10) || 9) : 9; + + var state = { type: 'all', page: 1 }; + + function matching() { + return cards.filter(function (c) { + return state.type === 'all' || c.getAttribute('data-type') === state.type; + }); + } + + // Build the compact list of page tokens: numbers and 'dots'. + function tokens(total, cur) { + if (total <= 7) { + var all = []; + for (var i = 1; i <= total; i++) all.push(i); + return all; + } + var set = { 1: 1, 2: 1 }; + set[total] = 1; set[total - 1] = 1; + set[cur] = 1; set[cur - 1] = 1; set[cur + 1] = 1; + var pages = Object.keys(set).map(Number).filter(function (n) { return n >= 1 && n <= total; }).sort(function (a, b) { return a - b; }); + var out = []; + for (var j = 0; j < pages.length; j++) { + if (j > 0 && pages[j] - pages[j - 1] > 1) out.push('dots'); + out.push(pages[j]); + } + return out; + } + + function buildPager(total) { + if (!pager) return; + if (total <= 1) { pager.hidden = true; return; } + pager.hidden = false; + numbers.innerHTML = ''; + tokens(total, state.page).forEach(function (t) { + if (t === 'dots') { + var s = document.createElement('span'); + s.className = 'page-dots'; + s.textContent = '...'; + numbers.appendChild(s); + return; + } + var b = document.createElement('button'); + b.type = 'button'; + b.className = 'page-number' + (t === state.page ? ' active' : ''); + b.textContent = t; + b.addEventListener('click', function () { state.page = t; render(true); }); + numbers.appendChild(b); + }); + prevBtn.classList.toggle('disabled', state.page <= 1); + nextBtn.classList.toggle('disabled', state.page >= total); + } + + function render(scroll) { + var m = matching(); + var total = Math.max(1, Math.ceil(m.length / pageSize)); + if (state.page > total) state.page = total; + if (state.page < 1) state.page = 1; + var start = (state.page - 1) * pageSize; + var end = start + pageSize; + cards.forEach(function (c) { c.hidden = true; }); + m.slice(start, end).forEach(function (c) { c.hidden = false; }); + buildPager(total); + if (scroll) list.scrollIntoView({ behavior: 'smooth', block: 'start' }); + } + + chips.forEach(function (chip) { + chip.addEventListener('click', function () { + chips.forEach(function (c) { c.classList.remove('is-active'); }); + chip.classList.add('is-active'); + state.type = chip.getAttribute('data-type'); + state.page = 1; + render(false); + }); + }); + if (prevBtn) prevBtn.addEventListener('click', function () { if (state.page > 1) { state.page--; render(true); } }); + if (nextBtn) nextBtn.addEventListener('click', function () { state.page++; render(true); }); + + render(false); +})(); diff --git a/si/become-a-member/index.html b/si/become-a-member/index.html new file mode 100644 index 00000000..5069642a --- /dev/null +++ b/si/become-a-member/index.html @@ -0,0 +1,562 @@ + + + + + + Postani član - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Izberi jezik

    + +
    + +
    +
    + + +
    +
    +
    + Postani član +

    Najdi svoje ljudi v Sloveniji

    +

    Spoznaj ljudi, obišči dogodke, dobi podporo, ustvarjaj projekte in postani del makedonske študentske skupnosti po vsej Sloveniji.

    + +
    +
    Spoznaj študentsko Slovenijo 2024
    Makedonska študentska noč v Ljubljani
    Navijanje za Makedonijo, skupno gledanje rokometa v Sloveniji
    +
    + +
    +

    Zakaj postati član?

    +
    +
    +
    +

    Najdi svoje ljudi

    Spoznaj makedonske študente po vsej Sloveniji in stkaj prijateljstva zunaj predavalnice.

    +
    +
    +
    +

    Občuti podporo

    Dobi praktično pomoč, lokalno znanje in skupnost, ki razume študij v tujini.

    +
    +
    +
    +

    Obišči nepozabne dogodke

    Družabni večeri, kulturni dogodki, šport, izleti, delavnice in študentska srečanja.

    +
    +
    +
    +

    Pridobi izkušnje

    Razvijaj veščine skozi prostovoljstvo, komunikacijo, projektno delo in organizacijo dogodkov.

    +
    +
    +
    +

    Ustvari nekaj pomembnega

    Prispevaj ideje, pridruži se projektom in soustvarjaj dejavnosti za skupnost.

    +
    +
    +
    +

    Razširi svojo mrežo

    Spoznaj študente, alumne, strokovnjake, ustanove in partnerje.

    +
    +
    +
    +

    Počuti se kot doma

    Pripadaj skupnosti, kjer ti nikoli ni treba pojasnjevati, od kod prihajaš.

    +
    +
    +
    + +
    +

    MSOS v številkah

    +
    +
    0aktivnih članov
    +
    0dogodkov in dejavnosti
    +
    0udeležencev
    +
    0partnerjev
    +
    +

    Podatki za potrditev pred objavo.

    +
    + +
    +

    Obstaja več načinov, da si del MSOS

    +

    Ni ti treba organizirati dogodkov ali voditi, da pripadaš. Pridruži se na način, ki ti ustreza.

    +
    +
    +
    +

    Ostani povezan

    Prejemaj novice in vedi, kaj se dogaja.

    +
    +
    +
    +

    Pridruži se skupnosti

    Obišči dogodke, spoznaj ljudi in sodeluj, ko ti ustreza.

    +
    +
    +
    +

    Občasno prostovoljči

    Pomagaj pri izbranih dejavnostih brez dolgoročne zaveze.

    +
    +
    +
    +

    Pridruži se projektom

    Prispevaj k pobudam, kampanjam, vodnikom ali sodelovanjem.

    +
    +
    +
    +

    Organiziraj dogodke

    Pomagaj načrtovati, usklajevati, promovirati in izvesti dejavnosti.

    +
    +
    +
    +

    Prevzemi odgovornost

    Razišči vodenje, upravljanje, zastopanje ali vloge v lokalni ekipi.

    +
    +
    +
    + +
    +

    Kako je v resnici biti del MSOS

    + +
    + +
    +

    Zakaj so se študenti pridružili in zakaj so ostali

    +
    +
    +
    Pridružil sem se, ker sem želel spoznati ljudi. Ostal sem, ker je MSOS postal del mojega življenja v Sloveniji.
    +
    AnaŠtudentka, Ljubljana
    +
    +
    +
    Ko sem se preselil v Slovenijo, nisem vedel, kje začeti. Prek MSOS sem našel podporo, prijatelje in priložnosti.
    +
    MarkoŠtudent, Maribor
    +
    +
    +
    Delo v ekipi me je naučilo več kot katera koli predavalnica. Organiziral sem dogodke, spoznal partnerje in veliko zrasel.
    +
    ElenaProstovoljka, Koper
    +
    +
    +

    Vzorčni citati za zamenjavo z resničnimi.

    +
    + +
    +

    Poglej MSOS v akciji

    + + +
    + +
    +

    Tukaj je prostor zate

    +
    +

    Za študente

    Sedanji in bodoči študenti, dodiplomski in magistrski, v vsakem slovenskem študijskem mestu.

    Sem študent
    +

    Za podpornike

    Ni ti treba biti študent, da podpiraš skupnost. Prispevaj z znanjem, partnerstvi, mentorstvom, prostovoljstvom, sponzorstvi, mediji ali povezavami.

    Želim podpreti MSOS
    +
    +
    + +
    +
    + Prijavni obrazec +

    Pridruži se v nekaj minutah

    +

    Nekaj prijaznih vprašanj. Ni ti treba zdaj odločiti, kako aktiven želiš biti.

    +
    +
    + + + + +
    +

    Kako se želiš povezati z MSOS?

    +
    + + +
    +
    + +
    +

    Povej nam, kdo si

    +
    +
    +
    +

    Kje si na svoji študentski poti?

    +
    + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Kaj ti najbolj ustreza?

    +

    Izberi, kolikor želiš.

    +
    + + + + + + + + + + +
    + + + +
    +
    +

    Česa bi rad bil del?

    +

    Izberi, kolikor želiš.

    +
    + + + + + + + + + + + + +
    +
    +
    +

    Kam naj te povežemo?

    +
    + + + + + + + +
    + +
    +
    +

    Zaradi česa bi ti bil MSOS dragocen? (neobvezno)

    + +
    +
    + + + +
    + +
    +

    Povej nam, kdo si

    +
    +
    +
    +

    Kako želiš podpreti MSOS?

    +

    Izberi, kolikor želiš.

    +
    + + + + + + + + + + +
    +
    +
    +

    Povej, kako želiš prispevati (neobvezno)

    + +
    +
    + + +
    + +
    + + + +
    +
    + + +
    + +
    +

    Dobro je vedeti

    +
    +
    Ali je članstvo samo za študente v Ljubljani?

    Ne. MSOS je za makedonske študente po vsej Sloveniji, vključno z Mariborom, Koprom, Novo Gorico, Celjem in drugimi mesti.

    +
    Ali se lahko pridružim pred selitvijo v Slovenijo?

    Da. Bodoči študenti se lahko pridružijo, prejemajo novice in se povežejo z ljudmi pred prihodom.

    +
    Ali moram biti zelo aktiven?

    Ne. Obiskuješ lahko dogodke, ostaneš obveščen, občasno prostovoljčiš ali kasneje prevzameš večjo vlogo.

    +
    Ali je članarina?

    Da, članarina je 10 € na leto, kar nam pomaga organizirati dogodke in podpirati študente po vsej Sloveniji.

    +
    Ali lahko MSOS podprejo tudi nestudenti?

    Da. Starši, alumni, strokovnjaki, podjetja in drugi podporniki lahko prispevajo z mentorstvom, partnerstvi, sponzorstvi, znanjem, prostovoljstvom ali povezavami.

    +
    Kaj se zgodi, ko oddam obrazec?

    Ekipa MSOS pregleda tvoje podatke in te kontaktira z naslednjim korakom.

    +
    Ali lahko kasneje spremenim, kako aktiven sem?

    Da. Člani so lahko bolj ali manj aktivni glede na zanimanja in razpoložljivost.

    +
    +
    + +
    +

    Tvoja študentska zgodba v Sloveniji se lahko začne tukaj

    +

    Ne glede na to, ali iščeš podporo, prijateljstvo, priložnosti ali občutek pripadnosti, MSOS te z veseljem sprejme.

    + Postani član +
    +
    + + + + + + + + + diff --git a/si/blog/index.html b/si/blog/index.html new file mode 100644 index 00000000..aea9d8d0 --- /dev/null +++ b/si/blog/index.html @@ -0,0 +1,343 @@ + + + + + + Blog - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Izberi jezik

    + +
    + +
    +
    + + +
    +
    + Blog +

    Zgodbe, nasveti in študentsko življenje

    +

    Resnične izkušnje in praktični nasveti makedonskih študentov v Sloveniji. Nove zgodbe so na poti.

    +
    + +
    +
    + + + + + + +
    +
    +
    +
    +
    + Življenje v Sloveniji +

    Vikend izleti iz študentskega mesta

    +

    Ta zgodba prihaja kmalu. Pripravljamo koristne nasvete iz prve roke za makedonske študente v Sloveniji.

    + Kmalu +
    +
    +
    +
    +
    + Skupnost +

    Spoznaj ekipo MSOS

    +

    Ta zgodba prihaja kmalu. Pripravljamo koristne nasvete iz prve roke za makedonske študente v Sloveniji.

    + Kmalu +
    +
    +
    +
    +
    + Nasveti za študij +

    Kako izbrati pravo fakulteto

    +

    Ta zgodba prihaja kmalu. Pripravljamo koristne nasvete iz prve roke za makedonske študente v Sloveniji.

    + Kmalu +
    +
    +
    +
    +
    + Študentsko življenje +

    Kako načrtovati študentski proračun

    +

    Ta zgodba prihaja kmalu. Pripravljamo koristne nasvete iz prve roke za makedonske študente v Sloveniji.

    + Kmalu +
    +
    +
    +
    +
    + Vodniki +

    Prijava prebivališča, korak za korakom

    +

    Ta zgodba prihaja kmalu. Pripravljamo koristne nasvete iz prve roke za makedonske študente v Sloveniji.

    + Kmalu +
    +
    +
    +
    +
    + Življenje v Sloveniji +

    Kje se Makedonci srečujejo v Sloveniji

    +

    Ta zgodba prihaja kmalu. Pripravljamo koristne nasvete iz prve roke za makedonske študente v Sloveniji.

    + Kmalu +
    +
    +
    +
    +
    + Skupnost +

    Kako postati prostovoljec pri MSOS

    +

    Ta zgodba prihaja kmalu. Pripravljamo koristne nasvete iz prve roke za makedonske študente v Sloveniji.

    + Kmalu +
    +
    +
    +
    +
    + Nasveti za študij +

    Učenje slovenščine: kje začeti

    +

    Ta zgodba prihaja kmalu. Pripravljamo koristne nasvete iz prve roke za makedonske študente v Sloveniji.

    + Kmalu +
    +
    +
    +
    +
    + + + + + + + + + diff --git a/si/cookie-policy/index.html b/si/cookie-policy/index.html index dd78ffd6..de602f0e 100644 --- a/si/cookie-policy/index.html +++ b/si/cookie-policy/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -239,36 +223,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/faq/index.html b/si/faq/index.html new file mode 100644 index 00000000..da51638d --- /dev/null +++ b/si/faq/index.html @@ -0,0 +1,494 @@ + + + + + + Pogosta vprašanja - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Izberi jezik

    + +
    + +
    +
    + + +
    +
    + Podpora +

    Pogosta vprašanja

    +

    Kratki odgovori na vprašanja, ki jih makedonski študenti najpogosteje zastavljajo o študiju in življenju v Sloveniji. Vse podrobnosti in uradni viri so v Vodniku za študente.

    +
    +
    +
    +

    Prijava in vpis

    +
    + Kako se prijavim na fakulteto prek portala eVŠ? +
    +

    Prijavo oddate prek nacionalnega portala eVŠ, v prijavnem roku in z načinom prijave, ki veljata za tuje kandidate.

    + Več v vodniku +
    +
    +
    + Kakšni so prijavni roki in prijavni krogi za 2026/2027? +
    +

    Tuji kandidati se prijavljajo v svojih rokih, dodiplomski se običajno začne spomladi, roke za magistrski določi vsaka fakulteta, zato vedno preverite aktualne datume za svoj program.

    + Več v vodniku +
    +
    +
    + Kot makedonski kandidat, kateri prijavni rok in pogoji veljajo zame? +
    +

    Prijavljate se kot kandidat iz tretje države (ne-EU), običajno za omejeno število mest za tuje študente in ne v splošnem slovenskem roku.

    + Več v vodniku +
    +
    +
    + Koliko mest za študente iz tretjih držav ima moj program? +
    +

    Nekateri programi imajo le nekaj mest za študente iz tretjih držav (pri konkurenčnih, kot je dentalna medicina, včasih le eno ali dve), zato preverite svoj program in imejte rezervno možnost.

    + Več v vodniku +
    +
    +
    + Ali je za moje področje sprejemni ali preizkus nadarjenosti? +
    +

    Večina programov nima sprejemnega izpita, izjeme so področja, kot so umetnost, arhitektura, šport in zobna protetika.

    + Več v vodniku +
    +
    +
    + Ali potrebujem potrdilo o znanju slovenščine na ravni B2? +
    +

    Le nekaj programov zahteva potrdilo o znanju slovenščine na ravni B2, medicina, dentalna medicina, farmacija, psihologija, film/režija in novinarstvo, večina drugih pa ne.

    + Več v vodniku +
    +
    +
    +
    +

    Priznavanje in dokumenti

    +
    + Ali je treba mojo makedonsko diplomo priznati, preden se lahko vpišem? +
    +

    Da, univerza, na katero se prijavljate, v okviru sprejema oceni vašo predhodno makedonsko izobrazbo, zato diplome in potrdila o ocenah predložite ob prijavi.

    + Več v vodniku +
    +
    +
    + Ali moji dokumenti potrebujejo apostille in sodni prevod? +
    +

    Ključni dokumenti običajno potrebujejo apostille iz Makedonije in sodni prevod v slovenščino, oboje uredite pred odhodom.

    + Več v vodniku +
    +
    +
    + Katere dokumente naj pripravim in prevedem, preden zapustim Makedonijo? +
    +

    Vnaprej pripravite in prevedite diplomo, potrdila o ocenah, rojstni list in potrdilo iz kazenske evidence, saj jih je v Sloveniji veliko težje pridobiti in legalizirati.

    + Več v vodniku +
    +
    +
    +
    +

    Šolnina in štipendije

    +
    + Ali je študij zame kot Makedonca brezplačen ali plačam šolnino? +
    +

    Po dvostranskem sporazumu med Slovenijo in Makedonijo je redni dodiplomski in magistrski študij na javnih univerzah za makedonske državljane brezplačen (samoplačniški ali drugi programi so lahko plačljivi).

    + Več v vodniku +
    +
    +
    + Ali lahko dobim štipendijo? +
    +

    Da, preverite lahko državne štipendije, Ad Futura, CEEPUS in fakultetne štipendije, vsaka s svojimi pogoji in roki.

    + Več v vodniku +
    +
    +
    +
    +

    Dovoljenje za prebivanje in vizum

    +
    + Ali potrebujem vizum za vstop v Slovenijo ali zadostuje dovoljenje za prebivanje? +
    +

    Kot makedonski državljan lahko za kratko bivanje vstopite brez vizuma, za študij pa potrebujete dovoljenje za začasno prebivanje zaradi študija, ki ga običajno uredite pred selitvijo.

    + Več v vodniku +
    +
    +
    + Kako pridobim dovoljenje za prebivanje in kje zaprosim? +
    +

    Običajno zaprosite na slovenskem veleposlaništvu v Skopju pred prihodom ali na krajevni upravni enoti, ko ste že v Sloveniji.

    + Več v vodniku +
    +
    +
    + Katere dokumente potrebujem za dovoljenje? +
    +

    Običajno potrebujete potrdilo o vpisu, veljaven potni list, dokazilo o zadostnih sredstvih, zdravstveno zavarovanje, potrdilo iz kazenske evidence in predpisane takse.

    + Več v vodniku +
    +
    +
    + Koliko moram izkazati kot "zadostna sredstva" in ali šteje izjava staršev? +
    +

    Izkazati morate okoli 507,43 € na mesec, kar je slovenski osnovni znesek minimalnega dohodka od 1. aprila 2026 (preverite aktualni znesek), pri čemer je overjena izjava staršev o preživljanju običajen in trajen dokaz.

    + Več v vodniku +
    +
    +
    + Kako dolgo velja dovoljenje in kako ga vsako leto podaljšam? +
    +

    Dovoljenje je izdano za študijsko leto in ga je treba podaljševati vsako leto, vlogo oddajte najkasneje do 30. septembra (zaprosite lahko približno 60 dni pred iztekom), saj zamuda pomeni povsem novo vlogo.

    + Več v vodniku +
    +
    +
    + Ali moram po vselitvi prijaviti svoj naslov? +
    +

    Da, začasni naslov morate prijaviti na upravni enoti v 8 dneh po vselitvi.

    + Več v vodniku +
    +
    +
    +
    +

    Zdravstveno zavarovanje

    +
    + Kaj je RM/SI 3 in ali ga potrebujem za zdravstveno kritje? +
    +

    RM/SI 3 je potrdilo iz postopka med državama, ki vam na podlagi makedonskega zavarovanja omogoča osnovno zdravstveno kritje v Sloveniji, in da, potrebujete ga.

    + Več v vodniku +
    +
    +
    + Ali sem zavarovan od prvega dne in kakšno zavarovanje potrebujem za dovoljenje? +
    +

    Za dovoljenje za prebivanje potrebujete veljavno zdravstveno zavarovanje, zato kritje RM/SI 3 (in morebitno dopolnilno zavarovanje) uredite pred prihodom ali takoj po njem.

    + Več v vodniku +
    +
    +
    + Kako registriram osebnega zdravnika? +
    +

    Ko ste zavarovani, si v zdravstvenem domu v svojem študijskem mestu izberete in registrirate osebnega zdravnika (za čas študija).

    + Več v vodniku +
    +
    +
    +
    +

    Nastanitev

    +
    + Ali lahko kot tuji študent dobim subvencionirano sobo v študentskem domu? +
    +

    Običajno ne, subvencionirana mesta v domovih so namenjena slovenskim in EU študentom, zato samoplačniški tuji študenti praviloma najemajo zasebno.

    + Več v vodniku +
    +
    +
    + Kje bom stanoval in kakšne so moje možnosti nastanitve? +
    +

    Večina študentov najame zasebno sobo ali deljeno stanovanje, nekateri pa uporabijo posrednike za študentsko nastanitev ali zasebne dijaške in študentske domove v svojem mestu.

    + Več v vodniku +
    +
    +
    + Koliko stane nastanitev in kaj plačam vnaprej? +
    +

    Zasebne sobe stanejo približno 200 to 400 € na mesec (garsonjere več), ob vselitvi pa običajno plačate varščino in najemnino za prvi mesec.

    + Več v vodniku +
    +
    +
    +
    +

    Prehrana in prevoz

    +
    + Kako se prijavim za subvencionirano študentsko prehrano in ali sem upravičen? +
    +

    Da, študenti z veljavnim statusom (tudi tuji) lahko koristijo subvencionirano prehrano (bone), enkrat se prijavite prek spleta s študentskimi podatki ter telefonom ali čip kartico.

    + Več v vodniku +
    +
    +
    + Kako pridobim subvencionirano vozovnico za javni prevoz in ali sem upravičen? +
    +

    Študenti lahko kupijo subvencionirano medkrajevno vozovnico IJPP ne glede na oddaljenost od fakultete, zaprosite s študentskim statusom, mestni prevoz (npr. Urbana v Ljubljani) pa se doda posebej.

    + Več v vodniku +
    +
    +
    +
    +

    Delo in upravne osnove

    +
    + Ali lahko med študijem delam z dovoljenjem za prebivanje zaradi študija? +
    +

    Da, študentsko delo prek napotnice je dovoljeno z dovoljenjem za prebivanje zaradi študija; redna zaposlitev je nekaj drugega in zahteva spremembo dovoljenja.

    + Več v vodniku +
    +
    +
    + Kaj potrebujem, da začnem delati prek študentskega servisa? +
    +

    Vpišete se pri študentskem servisu ter potrebujete slovensko davčno številko, EMŠO in običajno bančni račun, pred vsakim delom pa napotnico.

    + Več v vodniku +
    +
    +
    + Kako pridobim EMŠO in slovensko davčno številko in zakaj ju potrebujem? +
    +

    EMŠO in davčno številko pridobite na upravni enoti in finančnem uradu (FURS); potrebujete ju za odprtje bančnega računa, delo in večino upravnih opravil.

    + Več v vodniku +
    +
    +
    + Kakšna je razlika med študentskim delom in redno zaposlitvijo? +
    +

    Študentsko delo prek napotnice je prožno in dovoljeno z dovoljenjem za študij, redna zaposlitev pa je formalna zaposlitev, ki praviloma zahteva spremembo dovoljenja iz študija v delo.

    + Več v vodniku +
    +
    +
    +
    +

    Denar, status in po diplomi

    +
    + Kaj moram urediti v prvem tednu po prihodu? +
    +

    V prvih dneh prijavite naslov, uredite zdravstveno zavarovanje, pridobite EMŠO in davčno številko, odprete bančni račun ter aktivirate prehrano in prevoz.

    + Več v vodniku +
    +
    +
    + Koliko denarja realno potrebujem na mesec? +
    +

    Večina študentov načrtuje približno 455 to 850 € na mesec, odvisno od mesta, pri čemer je prvi mesec dražji zaradi varščine in stroškov ureditve.

    + Več v vodniku +
    +
    +
    + Kaj je študentski status in kakšne pravice mi daje? +
    +

    Študentski status je vaš aktivni vpis kot študent in prav ta omogoča subvencionirano prehrano, prevoz, študentsko delo in druge ugodnosti.

    + Več v vodniku +
    +
    +
    + Ali lahko po diplomi ostanem v Sloveniji in iščem delo? +
    +

    Da, po diplomi lahko zaprosite za dovoljenje za prebivanje zaradi iskanja zaposlitve (približno devet mesecev), da ostanete in iščete delo.

    + Več v vodniku +
    +
    +
    +
    +
    +

    Imate še vprašanje?

    +

    Pišite nam in pomagali vam bomo najti pravo ustanovo ali odgovor. Pridružite se lahko tudi naši skupnosti na Viberju, kjer so makedonski študenti, ki že živijo v Sloveniji.

    + +
    +
    + + + + + + + diff --git a/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html b/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html index 8a4715ce..bf06ff6b 100644 --- a/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html +++ b/si/get-to-know-macedonia/a-table-full-of-macedonia/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -316,36 +300,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html b/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html index 8d74bc99..8ec94416 100644 --- a/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html +++ b/si/get-to-know-macedonia/history-you-can-still-walk-through/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -322,36 +306,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-macedonia/index.html b/si/get-to-know-macedonia/index.html index 81fcf4d0..bdc4aee9 100644 --- a/si/get-to-know-macedonia/index.html +++ b/si/get-to-know-macedonia/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -291,36 +275,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html b/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html index 8c5d807e..db042270 100644 --- a/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html +++ b/si/get-to-know-macedonia/music-dance-and-the-moments-that-bring-us-together/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -322,36 +306,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html b/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html index 63bff9b9..b620229e 100644 --- a/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html +++ b/si/get-to-know-macedonia/ohrid-more-than-a-postcard/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -314,36 +298,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html b/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html index 9dce8657..28e7c66a 100644 --- a/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html +++ b/si/get-to-know-macedonia/skopje-a-city-of-many-layers/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -304,36 +288,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-macedonia/welcome-to-macedonia/index.html b/si/get-to-know-macedonia/welcome-to-macedonia/index.html index eaf9505d..70c972c6 100644 --- a/si/get-to-know-macedonia/welcome-to-macedonia/index.html +++ b/si/get-to-know-macedonia/welcome-to-macedonia/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -301,36 +285,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html b/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html index e978b423..0a015e31 100644 --- a/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html +++ b/si/get-to-know-slovenia/a-first-taste-of-slovenian-food/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -306,36 +290,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-slovenia/index.html b/si/get-to-know-slovenia/index.html index 86d1edd2..50709a2c 100644 --- a/si/get-to-know-slovenia/index.html +++ b/si/get-to-know-slovenia/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -291,36 +275,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html b/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html index b0d72e45..415a6723 100644 --- a/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html +++ b/si/get-to-know-slovenia/lake-bled-beyond-the-famous-view/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -302,36 +286,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html b/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html index 01a66178..f754ddce 100644 --- a/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html +++ b/si/get-to-know-slovenia/ljubljana-through-our-eyes/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -296,36 +280,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html b/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html index 10bb1bc2..5d03b8dc 100644 --- a/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html +++ b/si/get-to-know-slovenia/slovenian-habits-that-may-surprise-you/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -323,36 +307,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html b/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html index c62e8acb..38f3545b 100644 --- a/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html +++ b/si/get-to-know-slovenia/slovenias-stories-in-stone-and-tradition/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -308,36 +292,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/get-to-know-slovenia/welcome-to-slovenia/index.html b/si/get-to-know-slovenia/welcome-to-slovenia/index.html index 367b5d4f..439dd950 100644 --- a/si/get-to-know-slovenia/welcome-to-slovenia/index.html +++ b/si/get-to-know-slovenia/welcome-to-slovenia/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -279,36 +263,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/index.html b/si/index.html index 57bac5ec..641f3b8b 100644 --- a/si/index.html +++ b/si/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -190,7 +174,43 @@

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

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

    - + Postani član + +
    + +
    +

    Naši partnerji in podporniki

    +
    +
    +
    + Embassy of the Republic of Slovenia in Skopje + NLB Banka + Central Technological Library (CTK), University of Ljubljana + Association of Slovenian and Macedonian Entrepreneurs (DSMP) + Kampus + Povezani + + + + + + +
    + +
    @@ -202,7 +222,7 @@

    Spoznajte našo izjemno ekipo!

    -

    Naša filozofija je preprosta — zaposliti ekipo raznolikih, strastnih ljudi in gojiti kulturo, ki vas opolnomoči, da opravite svoje najboljše delo.

    +

    Naša filozofija je preprosta, zaposliti ekipo raznolikih, strastnih ljudi in gojiti kulturo, ki vas opolnomoči, da opravite svoje najboljše delo.

    @@ -210,7 +230,7 @@

    Aktivnosti

    -

    Naša filozofija je preprosta — zaposliti ekipo raznolikih, strastnih ljudi in gojiti kulturo, ki vas opolnomoči, da opravite svoje najboljše delo.

    +

    Naša filozofija je preprosta, zaposliti ekipo raznolikih, strastnih ljudi in gojiti kulturo, ki vas opolnomoči, da opravite svoje najboljše delo.

    @@ -220,7 +240,7 @@
  • Zabava in druženje
  • Študentska podpora
  • - + Postani član

    Sed molestie penatibus sit bibendum pharetra purus faucibus fames aliquet. Morbi morbi ac sed tempor porta. Dui iaculis vitae fames sapien. Pellentesque urna eget habitasse arcu sed ornare. Dignissim lobortis ultrices maecenas magna ac habitant donec etiam at.

    @@ -229,38 +249,44 @@
    -
    +
    -

    Zadnje novice

    -

    Don’t miss what’s happening! Here you’ll find all our updates — from student news to upcoming activities and community highlights.

    +

    Najnovejše novice

    +

    Kaj je novega pri MSOS, od dogodkov in projektov do blog zgodb in obvestil.

    -
    - Roza in modro obarvana podoba zasneženega vrha gore + -
    - + Poglej vse
    @@ -412,7 +438,7 @@

    Imate še vprašanja?

    Ne najdete odgovora, ki ga iščete? Prosimo, poklepetajte z našo prijazno ekipo.

    - + Poglej vsa vprašanja
    @@ -426,36 +452,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/si/news/index.html b/si/news/index.html new file mode 100644 index 00000000..b04e2f1d --- /dev/null +++ b/si/news/index.html @@ -0,0 +1,418 @@ + + + + + + Novice in obvestila - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Izberi jezik

    + +
    + +
    +
    + + +
    +
    + Novice +

    Novice in obvestila

    +

    Vse novo pri MSOS na enem mestu: dogodki in projekti, blog zgodbe in obvestila.

    +
    +
    +
    + + + + +
    +
    + + + + + + + + + + + + + + + + +
    + +
    +
    + + + + + + + + diff --git a/si/news/proof-of-means-updated-2026/index.html b/si/news/proof-of-means-updated-2026/index.html new file mode 100644 index 00000000..edc0019f --- /dev/null +++ b/si/news/proof-of-means-updated-2026/index.html @@ -0,0 +1,243 @@ + + + + + + Znesek dokazila o sredstvih posodobljen na 507,43 € na mesec - MSOS + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +

    Izberi jezik

    + +
    + +
    +
    + + +
    +
    + Nazaj na novice + Novice +

    Znesek dokazila o sredstvih posodobljen na 507,43 € na mesec

    + +
    + Blagajna, polna evrskih kovancev in bankovcev +
    Image by Alexa from Pixabay
    +
    +
    +

    Če zaprošate za študentsko dovoljenje za prebivanje v Sloveniji ali ga podaljšujete, morate dokazati, da imate dovolj sredstev za preživljanje. Ta pogoj je vezan na slovenski osnovni znesek minimalnega dohodka.

    +

    Od 1. aprila 2026 ta osnovni znesek minimalnega dohodka znaša 507,43 € na mesec. To je znesek, ki ga morate biti pripravljeni izkazati za celotno študijsko leto, najpogosteje s pisno izjavo staršev o podpori ali z drugimi sprejetimi dokazili, kot so štipendija, bančna sredstva ali zaslužek od študentskega dela.

    +

    Ker znesek sledi minimalnemu dohodku, se lahko znova spremeni. Aktualni uradni znesek pred oddajo vedno preverite pri svoji upravni enoti in vprašajte, kako izračunajo obdobje in katera dokazila sprejmejo.

    +
    + + Preberi vodnik o dovoljenju za prebivanje +
    +
    + + + + + + + + + diff --git a/si/privacy-policy/index.html b/si/privacy-policy/index.html index 87f47738..2acc9f4a 100644 --- a/si/privacy-policy/index.html +++ b/si/privacy-policy/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -284,36 +268,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/projects/humanitarian-tournament-in-maribor/index.html b/si/projects/humanitarian-tournament-in-maribor/index.html index 924cf4f0..192a538d 100644 --- a/si/projects/humanitarian-tournament-in-maribor/index.html +++ b/si/projects/humanitarian-tournament-in-maribor/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -272,36 +256,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/projects/in-memory-of-frosina-kulakova/index.html b/si/projects/in-memory-of-frosina-kulakova/index.html index d4b12774..d99d1cf8 100644 --- a/si/projects/in-memory-of-frosina-kulakova/index.html +++ b/si/projects/in-memory-of-frosina-kulakova/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -221,36 +205,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/projects/in-memory-of-the-kochani-victims/index.html b/si/projects/in-memory-of-the-kochani-victims/index.html index cf6edc2e..cd708808 100644 --- a/si/projects/in-memory-of-the-kochani-victims/index.html +++ b/si/projects/in-memory-of-the-kochani-victims/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -231,36 +215,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/projects/index.html b/si/projects/index.html index e953a6aa..ba16b458 100644 --- a/si/projects/index.html +++ b/si/projects/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -277,13 +261,13 @@ - + @@ -340,36 +324,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - + \ No newline at end of file diff --git a/si/projects/macedonian-student-night-in-ljubljana/index.html b/si/projects/macedonian-student-night-in-ljubljana/index.html index 8e8d6036..f3605070 100644 --- a/si/projects/macedonian-student-night-in-ljubljana/index.html +++ b/si/projects/macedonian-student-night-in-ljubljana/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -178,7 +162,7 @@

    Objavljeno 8. oktobra 2022

    Makedonska študentska noč v Ljubljani

    -

    Od ideje do zabave s 500 študenti – tako se je začela naša zgodba!

    +

    Od ideje do zabave s 500 študenti, tako se je začela naša zgodba!

    @@ -186,17 +170,17 @@
    -

    8. oktobra 2022 se je v osrčju Študentskega kampusa v Ljubljani odvila prva Makedonska študentska noč v Sloveniji. Pod sloganom #FeelsLikeHome je več kot 500 mladih uživalo v makedonski glasbi, okusni tradicionalni hrani in vzdušju, ki je spominjalo na dom. Ta dogodek ni bil le zabava – bil je začetek nove zgodbe, ki bo kasneje prerasla v Makedonsko študentsko organizacijo v Sloveniji (MŠOS).

    +

    8. oktobra 2022 se je v osrčju Študentskega kampusa v Ljubljani odvila prva Makedonska študentska noč v Sloveniji. Pod sloganom #FeelsLikeHome je več kot 500 mladih uživalo v makedonski glasbi, okusni tradicionalni hrani in vzdušju, ki je spominjalo na dom. Ta dogodek ni bil le zabava, bil je začetek nove zgodbe, ki bo kasneje prerasla v Makedonsko študentsko organizacijo v Sloveniji (MŠOS).

    Kako je ideja o druženju postala začetek gibanja

    -

    Vse se je začelo s preprosto željo – da se zberemo, spoznamo in začutimo Makedonijo, čeprav smo daleč od nje. Kristijan Popovski, takrat študent Ekonomske fakultete v Ljubljani, je svojo idejo delil z nekaj kolegi, odziv pa je bil neverjeten. V manj kot dveh tednih se je v organizacijsko ekipo vključilo več kot 40 študentov. Vsak je prispeval svoj entuziazem in čas, skupni duh in želja po povezovanju pa sta to spontano pobudo spremenila v dogodek, ki si ga bomo dolgo zapomnili.

    +

    Vse se je začelo s preprosto željo, da se zberemo, spoznamo in začutimo Makedonijo, čeprav smo daleč od nje. Kristijan Popovski, takrat študent Ekonomske fakultete v Ljubljani, je svojo idejo delil z nekaj kolegi, odziv pa je bil neverjeten. V manj kot dveh tednih se je v organizacijsko ekipo vključilo več kot 40 študentov. Vsak je prispeval svoj entuziazem in čas, skupni duh in želja po povezovanju pa sta to spontano pobudo spremenila v dogodek, ki si ga bomo dolgo zapomnili.

    Priprave in sestanki za Makedonsko študentsko noč
    Fotografije s priprav in sestankov za organizacijo Makedonske študentske noči.
    -

    Od tistega trenutka naprej smo vsak prosti trenutek preživeli v pisarnah študentske organizacije Povezani, ki so nam nudili veliko podporo pri organizaciji. Dneve in noči smo načrtovali, imeli sestanke in pisali objave za družbena omrežja – vse z namenom, da ustvarimo dogodek, za katerega smo sprva mislili, da bomo pritegnili, če bomo imeli srečo, okoli 100 obiskovalcev.

    +

    Od tistega trenutka naprej smo vsak prosti trenutek preživeli v pisarnah študentske organizacije Povezani, ki so nam nudili veliko podporo pri organizaciji. Dneve in noči smo načrtovali, imeli sestanke in pisali objave za družbena omrežja, vse z namenom, da ustvarimo dogodek, za katerega smo sprva mislili, da bomo pritegnili, če bomo imeli srečo, okoli 100 obiskovalcev.

    Teden dni pred dogodkom smo vsak dan objavljali zanimivosti o Makedoniji, njenih nacionalnih zakladih, glasbi in kulturi. Počasi, a vztrajno, smo gradili vzdušje in navdušenje, ne le med makedonskimi študenti, temveč tudi med mnogimi drugimi, ki so želeli občutiti našo energijo.

    @@ -205,8 +189,8 @@
    -

    „Organizacija prve zabave MŠOS je bila edinstvena izkušnja – neprespana, ambiciozna in vključevala je vse, od logistike do pomivanja tal... Na srečo obstaja Red Bull 😉 (P.S. Spili smo celotno zalogo iz hladilnika!)“

    -
    — Marko – študent prvega letnika
    +

    „Organizacija prve zabave MŠOS je bila edinstvena izkušnja, neprespana, ambiciozna in vključevala je vse, od logistike do pomivanja tal... Na srečo obstaja Red Bull 😉 (P.S. Spili smo celotno zalogo iz hladilnika!)“

    +
    , Marko, študent prvega letnika

    Okus in vonj Makedonije v osrčju Ljubljane

    @@ -217,7 +201,7 @@
    Fotografije stojnic z makedonskimi simboli, tradicionalno hrano in pijačo.
    -

    Poleg hrane so si obiskovalci lahko ogledali zanimivosti o državi, fotografije znanih makedonskih osebnosti in kulturnih znamenitosti ter si od blizu ogledali tradicionalne noše in gajdo. Vzdušje je bilo toplo in polno radovednosti – kot majhna razstava v sklopu velike študentske zabave.

    +

    Poleg hrane so si obiskovalci lahko ogledali zanimivosti o državi, fotografije znanih makedonskih osebnosti in kulturnih znamenitosti ter si od blizu ogledali tradicionalne noše in gajdo. Vzdušje je bilo toplo in polno radovednosti, kot majhna razstava v sklopu velike študentske zabave.

    Mini kviz o Makedoniji @@ -233,16 +217,16 @@

    Posebej smo bili počaščeni, da smo pozdravili veleposlanico Severne Makedonije v Sloveniji, go. Suzano Zelenkovsko, ki je mladim namenila tople besede spodbude in podpore. Njena prisotnost in zanimanje za dogodek sta bila dodatna motivacija za nadaljevanje našega poslanstva povezovanja in promocije makedonske študentske skupnosti.

    -

    Zabava je imela odlično energijo, ki se je širila povsod – v nekem trenutku je vladal majhen, a nadzorovan kaos. Kljub temu, da se je dogodek končal nekoliko prej, so študenti še eno uro prepevali skupaj z nami, medtem ko smo pospravljali prostor. Resnično, noč za spomin!

    +

    Zabava je imela odlično energijo, ki se je širila povsod, v nekem trenutku je vladal majhen, a nadzorovan kaos. Kljub temu, da se je dogodek končal nekoliko prej, so študenti še eno uro prepevali skupaj z nami, medtem ko smo pospravljali prostor. Resnično, noč za spomin!

    -

    „Bil sem del organizacijske ekipe in zadolžen za vzdrževanje reda med študenti, a ko so zaigrali pesem 'Biser Balkanski', se nisem mogel upreti – pridružil sem se tudi jaz... To je bil moj poseben trenutek tistega večera!“

    -
    — Hristijan – študent drugega letnika
    +

    „Bil sem del organizacijske ekipe in zadolžen za vzdrževanje reda med študenti, a ko so zaigrali pesem 'Biser Balkanski', se nisem mogel upreti, pridružil sem se tudi jaz... To je bil moj poseben trenutek tistega večera!“

    +
    , Hristijan, študent drugega letnika

    Začetek, ki si ga bomo zapomnili

    -

    Tisti večer ni bil le še ena študentska zabava – bil je trenutek, ko smo spoznali, da smo začeli nekaj večjega. Namesto pričakovanih 100 gostov je v klub prišlo okoli 500 študentov, energija pa je bila neverjetna. Stkala so se nova prijateljstva, pele so se pesmi iz srca, makedonska kultura in tradicija pa sta bili v ospredju cel večer.

    -

    Ta noč je postavila temelje za Makedonsko študentsko organizacijo v Sloveniji in nam pokazala, da je z navdušenjem, enotnostjo in malo poguma mogoče ustvariti nekaj, kar združuje ljudi in jim daje občutek doma – tudi ko so daleč od njega.

    +

    Tisti večer ni bil le še ena študentska zabava, bil je trenutek, ko smo spoznali, da smo začeli nekaj večjega. Namesto pričakovanih 100 gostov je v klub prišlo okoli 500 študentov, energija pa je bila neverjetna. Stkala so se nova prijateljstva, pele so se pesmi iz srca, makedonska kultura in tradicija pa sta bili v ospredju cel večer.

    +

    Ta noč je postavila temelje za Makedonsko študentsko organizacijo v Sloveniji in nam pokazala, da je z navdušenjem, enotnostjo in malo poguma mogoče ustvariti nekaj, kar združuje ljudi in jim daje občutek doma, tudi ko so daleč od njega.

    Predana ekipa prostovoljcev po končanem pospravljanju prizorišča. @@ -258,36 +242,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/projects/meet-student-slovenia-2023/index.html b/si/projects/meet-student-slovenia-2023/index.html index f5e2f59c..73bdcbcf 100644 --- a/si/projects/meet-student-slovenia-2023/index.html +++ b/si/projects/meet-student-slovenia-2023/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -186,10 +170,10 @@
    -

    Kako izgleda prvi korak v študentsko življenje v Sloveniji? Na to vprašanje smo poskušali odgovoriti z dogodkom »Spoznaj študentsko Slovenijo«, ki smo ga organizirali 18. septembra 2023 v NLB Galeriji v Skopju. Vzdušje je bilo polno navdušenja – več kot 100 bodočih študentov in njihovih družin je prišlo z enakim občutkom: željo odkriti, kaj jih čaka tam, kjer bodo začeli novo poglavje.

    +

    Kako izgleda prvi korak v študentsko življenje v Sloveniji? Na to vprašanje smo poskušali odgovoriti z dogodkom »Spoznaj študentsko Slovenijo«, ki smo ga organizirali 18. septembra 2023 v NLB Galeriji v Skopju. Vzdušje je bilo polno navdušenja, več kot 100 bodočih študentov in njihovih družin je prišlo z enakim občutkom: željo odkriti, kaj jih čaka tam, kjer bodo začeli novo poglavje.

    Kaj se skriva za študentskim življenjem v Sloveniji?

    -

    Namesto suhih informacij so študenti imeli priložnost slišati resnične zgodbe – od tistih, ki že hodijo po isti poti. Študenti iz Ljubljane, Maribora in Kopra so govorili o svojih izzivih, prvih vtisih, smešnih situacijah in trenutkih, ko je bila podpora skupnosti ključna. In občinstvo? Z ogromno pozornostjo so vpijali vse, saj so prav na ta vprašanja, ki jih nikoli ne piše na brošurah – tukaj dobili iskrene odgovore.

    +

    Namesto suhih informacij so študenti imeli priložnost slišati resnične zgodbe, od tistih, ki že hodijo po isti poti. Študenti iz Ljubljane, Maribora in Kopra so govorili o svojih izzivih, prvih vtisih, smešnih situacijah in trenutkih, ko je bila podpora skupnosti ključna. In občinstvo? Z ogromno pozornostjo so vpijali vse, saj so prav na ta vprašanja, ki jih nikoli ne piše na brošurah, tukaj dobili iskrene odgovore.

    Udeleženci panelne razprave @@ -197,7 +181,7 @@

    Glasovi, ki navdihujejo

    -

    Na odru so se pojavili naši člani Kiara Lazić, Angel Naumov, Klimentina Čapovska in Igor Arsov – vsak s svojo zgodbo, svojo fakulteto, svojim mestom. Skupaj z moderatorjem Leonom Šumanskim in voditeljem Vasilom Hanџiskim so panel spremenili v pravi pogovor, ki je bolj spominjal na prijateljsko druženje kot na formalno diskusijo. Govorili so o izpitih, novih prijateljstvih, življenju v študentskih domovih in o tem, kako pomembno je, da ne obupaš, tudi ko se ti zdi najtežje.

    +

    Na odru so se pojavili naši člani Kiara Lazić, Angel Naumov, Klimentina Čapovska in Igor Arsov, vsak s svojo zgodbo, svojo fakulteto, svojim mestom. Skupaj z moderatorjem Leonom Šumanskim in voditeljem Vasilom Hanџiskim so panel spremenili v pravi pogovor, ki je bolj spominjal na prijateljsko druženje kot na formalno diskusijo. Govorili so o izpitih, novih prijateljstvih, življenju v študentskih domovih in o tem, kako pomembno je, da ne obupaš, tudi ko se ti zdi najtežje.

    Vasil Hanџiski ob otvoritvi dogodka @@ -209,7 +193,7 @@
    Fotografija udeležencev dogodka. Zanimanje nas je malo presenetilo, a nekako smo se vsi stlačili!♡
    -

    Za kulisami – naši podporniki

    +

    Za kulisami, naši podporniki

    Dogodek ne bi bil mogoč brez podpore Veleposlaništva Republike Slovenije v Severni Makedoniji, NLB Banke Skopje, Capital Financial Centra, Dijaga in Radia MOF. A pravo moč so dali člani MŠOS pri pripravi dogodka in študenti s svojimi vprašanji, svojo energijo in svojo radovednostjo.

    Na dogodku smo dobili pomembno podporo in pomoč tudi od Melite Sekulovske pri organizaciji prostora in Aleksandra Popovskega pri oblikovanju spletne strani organizacije. Iskreno smo se jim zahvalili za njihovo predano delo, kot tudi koordinatorki dogodka, Lei Janačkovski, ki je ta dogodek naredila izjemen.

    @@ -227,7 +211,7 @@

    Zakaj je bilo posebno?

    -

    Zato ker ta dogodek ni bil le še ena predstavitev. Bil je iztegnjena roka bodočim študentom – sporočilo, da niso sami, da jih skupnost že čaka. Nekateri so odšli z novimi prijatelji, drugi s konkretnimi odgovori na vprašanja, ki so jih mučila mesece. Vsi pa so odšli z enakim občutkom: da Slovenija ni več neznan kraj, ampak nov dom, v katerem bodo del nečesa večjega.

    +

    Zato ker ta dogodek ni bil le še ena predstavitev. Bil je iztegnjena roka bodočim študentom, sporočilo, da niso sami, da jih skupnost že čaka. Nekateri so odšli z novimi prijatelji, drugi s konkretnimi odgovori na vprašanja, ki so jih mučila mesece. Vsi pa so odšli z enakim občutkom: da Slovenija ni več neznan kraj, ampak nov dom, v katerem bodo del nečesa večjega.

    Udeleženci dogodka @@ -235,12 +219,12 @@
    -

    »Dogodek je bil zame »game changer«, saj sem končno dobil informacije, ki so mi resnično pomagale spoznati študentsko Slovenijo namesto še enega kupa brošur. Panel je bil super, sproščen, s pogovori o najboljših mestih za izhode, dneh, preživetih v knjižnici, življenju v študentskih domovih in klasični zgodbi »zaspal sem pred izpitom«... P.S. In mreženje, mreženje je bilo vrhunsko – brez nerodne tišine.«

    -
    — Borjan Jovanovski, bodoči študent in udeleženec dogodka
    +

    »Dogodek je bil zame »game changer«, saj sem končno dobil informacije, ki so mi resnično pomagale spoznati študentsko Slovenijo namesto še enega kupa brošur. Panel je bil super, sproščen, s pogovori o najboljših mestih za izhode, dneh, preživetih v knjižnici, življenju v študentskih domovih in klasični zgodbi »zaspal sem pred izpitom«... P.S. In mreženje, mreženje je bilo vrhunsko, brez nerodne tišine.«

    +
    , Borjan Jovanovski, bodoči študent in udeleženec dogodka

    Praktični nasveti iz prve roke

    -

    Poseben trenutek dogodka je bil nagovor konzula Veleposlaništva Republike Slovenije v Severni Makedoniji, gospoda Martina Glazarja. Na kratko je predstavil najpomembnejše korake postopka za pridobitev začasnega dovoljenja za prebivanje – eno največjih skrbi in izzivov za vse tuje študente v Sloveniji. Na ta način so bodoči študenti dobili jasnejšo sliko o tem, kaj jih čaka in kako se lažje spopasti z administrativnimi postopki.

    +

    Poseben trenutek dogodka je bil nagovor konzula Veleposlaništva Republike Slovenije v Severni Makedoniji, gospoda Martina Glazarja. Na kratko je predstavil najpomembnejše korake postopka za pridobitev začasnega dovoljenja za prebivanje, eno največjih skrbi in izzivov za vse tuje študente v Sloveniji. Na ta način so bodoči študenti dobili jasnejšo sliko o tem, kaj jih čaka in kako se lažje spopasti z administrativnimi postopki.

    Konzul seznanja študente s postopkom pridobitve začasnega dovoljenja za prebivanje @@ -256,7 +240,7 @@

    Se vidimo v Sloveniji!

    -

    Z »Spoznaj študentsko Slovenijo 2023« smo uspeli podati roko novim študentom in jim pokazati, da pred njimi stoji vznemirljivo potovanje, polno novih prijateljstev, izzivov in uspehov. Iskreno upamo, da se bomo naslednjič srečali prav tam – v predavalnicah, študentskih domovih in na ulicah Ljubljane, Maribora in Kopra.

    +

    Z »Spoznaj študentsko Slovenijo 2023« smo uspeli podati roko novim študentom in jim pokazati, da pred njimi stoji vznemirljivo potovanje, polno novih prijateljstev, izzivov in uspehov. Iskreno upamo, da se bomo naslednjič srečali prav tam, v predavalnicah, študentskih domovih in na ulicah Ljubljane, Maribora in Kopra.

    Ta dogodek ne bi bil mogoč brez podpore naših partnerjev in prijateljev, katerim izrekamo veliko zahvalo:

    1. Veleposlaništvo Republike Slovenije v Severni Makedoniji (partner)
    2. @@ -265,7 +249,7 @@
    3. Dijag doo (sponzor)
    4. Radio MOF (medijski partner)
    -

    Hvala vsem, ki ste bili del tega dogodka – in bodočim študentom sporočamo: vaša zgodba v Sloveniji se šele začenja in mi smo tukaj, da smo del nje.

    +

    Hvala vsem, ki ste bili del tega dogodka, in bodočim študentom sporočamo: vaša zgodba v Sloveniji se šele začenja in mi smo tukaj, da smo del nje.

    Majhen del ekipe MŠOS @@ -318,36 +302,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/projects/meet-student-slovenia-2024/index.html b/si/projects/meet-student-slovenia-2024/index.html index 5b8c1d05..0d5c62cd 100644 --- a/si/projects/meet-student-slovenia-2024/index.html +++ b/si/projects/meet-student-slovenia-2024/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -186,10 +170,10 @@
    -

    Po uspehu v letu 2023 se je »Spoznaj študentsko Slovenijo« letos vrnil z še večjo energijo. 16. septembra 2024 smo v NLB Galeriji Skopje organizirali drugo izdajo dogodka, ki je postal prava tradicija. Zanimanje je bilo ogromno – imeli smo dvakrat več prijav, kot je zmogljivost prostora. Vzdušje je bilo polno navdušenja, vprašanj in želje po novih začetkih.

    +

    Po uspehu v letu 2023 se je »Spoznaj študentsko Slovenijo« letos vrnil z še večjo energijo. 16. septembra 2024 smo v NLB Galeriji Skopje organizirali drugo izdajo dogodka, ki je postal prava tradicija. Zanimanje je bilo ogromno, imeli smo dvakrat več prijav, kot je zmogljivost prostora. Vzdušje je bilo polno navdušenja, vprašanj in želje po novih začetkih.

    »Kofetkanje« z bodočimi kolegi, a na panelni razpravi

    -

    Naš cilj nikoli ni bil delati »suhih predstavitev«. Namesto tega smo organizirali panel – pravi pogovor s štirimi študenti, ki že živijo slovensko študentsko življenje. Marija Koštrevska z Univerze v Ljubljani, Vasil Hanџiski z Univerze v Mariboru, Sofija Matovska z Univerze v Novi Gorici in Igor Arsov z Univerze na Primorskem so govorili o vsem: o prvih dneh daleč od doma, o tem, kako najti nastanitev, kaj so študentski »boni« in kako izgleda gradnja novega kroga prijateljev. Vsak je delil nekaj svojega, občinstvo pa je spraševalo in se vključevalo – čisto kot kofetkanje.

    +

    Naš cilj nikoli ni bil delati »suhih predstavitev«. Namesto tega smo organizirali panel, pravi pogovor s štirimi študenti, ki že živijo slovensko študentsko življenje. Marija Koštrevska z Univerze v Ljubljani, Vasil Hanџiski z Univerze v Mariboru, Sofija Matovska z Univerze v Novi Gorici in Igor Arsov z Univerze na Primorskem so govorili o vsem: o prvih dneh daleč od doma, o tem, kako najti nastanitev, kaj so študentski »boni« in kako izgleda gradnja novega kroga prijateljev. Vsak je delil nekaj svojega, občinstvo pa je spraševalo in se vključevalo, čisto kot kofetkanje.

    Panelna razprava z govorci @@ -235,7 +219,7 @@
    Fotografija s predaje cvetja v znak zahvale Veleposlaništvu, Capital Financial Centru in NLB Banki Skopje.
    -

    Posebno zahvalo si zasluži ekipa MŠOS, ki je tedne neutrudno delala na pripravah – od prvotne ideje do zadnje podrobnosti večera. Predvsem pa veliko priznanje Lei Janačkovski, koordinatorki dogodka, ki je s svojo energijo, potrpežljivostjo in organizacijskimi sposobnostmi poskrbela, da je vsak košček padel na svoje mesto.

    +

    Posebno zahvalo si zasluži ekipa MŠOS, ki je tedne neutrudno delala na pripravah, od prvotne ideje do zadnje podrobnosti večera. Predvsem pa veliko priznanje Lei Janačkovski, koordinatorki dogodka, ki je s svojo energijo, potrpežljivostjo in organizacijskimi sposobnostmi poskrbela, da je vsak košček padel na svoje mesto.

    Tokratne spomine na večer dolgujemo Hristini Trakovski, ki je bila fotografinja in je poskrbela, da so vsi ti trenutki ostali zabeleženi in jih lahko ponovno podoživimo skozi fotografije.

    @@ -244,7 +228,7 @@

    Zakaj je bilo posebno?

    -

    Zato ker ta dogodek ni bil le še ena predstavitev. Bil je iztegnjena roka bodočim študentom – sporočilo, da niso sami, da jih skupnost že čaka. Nekateri so odšli z novimi prijatelji, drugi s konkretnimi odgovori na vprašanja, ki so jih mučila mesece. Vsi pa so odšli z enakim občutkom: da Slovenija ni več neznan kraj, ampak nov dom, v katerem bodo del nečesa večjega.

    +

    Zato ker ta dogodek ni bil le še ena predstavitev. Bil je iztegnjena roka bodočim študentom, sporočilo, da niso sami, da jih skupnost že čaka. Nekateri so odšli z novimi prijatelji, drugi s konkretnimi odgovori na vprašanja, ki so jih mučila mesece. Vsi pa so odšli z enakim občutkom: da Slovenija ni več neznan kraj, ampak nov dom, v katerem bodo del nečesa večjega.

    Udeleženci postavljajo vprašanja panelistom @@ -260,7 +244,7 @@

    Se vidimo v Sloveniji!

    -

    »Spoznaj študentsko Slovenijo« ni samo dogodek. Je prostor, kjer bodoči študenti naredijo prvi korak – s podporo, z nasveti iz prve roke in z občutkom, da niso sami. In letos nam je uspelo ustvariti ta občutek, kar je največja zmaga.

    +

    »Spoznaj študentsko Slovenijo« ni samo dogodek. Je prostor, kjer bodoči študenti naredijo prvi korak, s podporo, z nasveti iz prve roke in z občutkom, da niso sami. In letos nam je uspelo ustvariti ta občutek, kar je največja zmaga.

    Se vidimo ponovno prihodnje leto!

    P.S. Vsako leto se po uspešno organiziranem dogodku ekipa MŠOS tradicionalno odpravi v najbližjo gostilno, na večer, poln druženja, petja in čustev! 😊 Zato se splača biti del naše ekipe! Pridruži se nam.

    @@ -273,36 +257,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/projects/morning-coffee-in-front-of-ctk/index.html b/si/projects/morning-coffee-in-front-of-ctk/index.html index 88a3d52d..be9315d3 100644 --- a/si/projects/morning-coffee-in-front-of-ctk/index.html +++ b/si/projects/morning-coffee-in-front-of-ctk/index.html @@ -3,7 +3,7 @@ - Jutranja kava pred CTK – 2024: Kava, burek in obilo nasmehov + Jutranja kava pred CTK, 2024: Kava, burek in obilo nasmehov @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -177,7 +161,7 @@

    Objavljeno 8. junija 2024

    -

    Jutranja kava pred CTK – 2024: Kava, burek in obilo nasmehov

    +

    Jutranja kava pred CTK, 2024: Kava, burek in obilo nasmehov

    Ko izpiti postanejo lažji ob sobotni jutranji kavi, bureku in dobri družbi pred CTK!

    @@ -186,21 +170,21 @@
    -

    8. junija 2024, med 9. in 12. uro, smo pred Centralno tehniško knjižnico Univerze v Ljubljani (CTK) organizirali naš že tradicionalni študentski odmor – Jutranjo kavo pred CTK, skupaj z ekipo Skupine Povezani in CTK. To je bilo že drugo leto zapored, da smo se zbrali na istem mestu, a vsakič znova doživimo nove trenutke za spomin.

    +

    8. junija 2024, med 9. in 12. uro, smo pred Centralno tehniško knjižnico Univerze v Ljubljani (CTK) organizirali naš že tradicionalni študentski odmor, Jutranjo kavo pred CTK, skupaj z ekipo Skupine Povezani in CTK. To je bilo že drugo leto zapored, da smo se zbrali na istem mestu, a vsakič znova doživimo nove trenutke za spomin.

    S kavo nad izpitni stres

    -

    Izpitno obdobje vedno prinaša stres – ure in ure učenja, pogovori, ki se vrtijo samo okoli izpitov, prvih in drugih rokov, opravljenih ali neopravljenih obveznosti. Nekateri se z izpitom srečajo prvič, drugi že petič. Zato smo se odločili, da si vzamemo kratek odmor za vdih: da se sprostimo, nasmejimo in se spomnimo, da smo v tem študijskem stresu skupaj.

    +

    Izpitno obdobje vedno prinaša stres, ure in ure učenja, pogovori, ki se vrtijo samo okoli izpitov, prvih in drugih rokov, opravljenih ali neopravljenih obveznosti. Nekateri se z izpitom srečajo prvič, drugi že petič. Zato smo se odločili, da si vzamemo kratek odmor za vdih: da se sprostimo, nasmejimo in se spomnimo, da smo v tem študijskem stresu skupaj.

    Študentje čakajo v vrsti pred stavbo knjižnice CTK.
    Stotine študentov v vrsti pred CTK, ki so čakali še pred odprtjem, da si zagotovijo svoje mesto v knjižnici.
    -

    S skodelico vroče kave v roki in po zaslugi Bureka Olimpija smo uživali v okusnem bureku z mesom in sirom. Poskrbeli smo tudi za kanček zabave – študente smo povabili, da prinesejo svoje skodelice, za najbolj kreativne pa smo pripravili nagrado.

    +

    S skodelico vroče kave v roki in po zaslugi Bureka Olimpija smo uživali v okusnem bureku z mesom in sirom. Poskrbeli smo tudi za kanček zabave, študente smo povabili, da prinesejo svoje skodelice, za najbolj kreativne pa smo pripravili nagrado.

    Študent se smeji medtem ko je kos bureka. -
    Brezplačen topel burek – skrivna formula za reševanje tudi najtežjih matematičnih problemov 😉
    +
    Brezplačen topel burek, skrivna formula za reševanje tudi najtežjih matematičnih problemov 😉
    @@ -210,7 +194,7 @@

    Dve vprašanji, ki sta razkrili celo paleto študentskih čustev

    Za dodatno dozo interakcije smo postavili dve veliki tabli z vprašanji, ki kar kličeta po odgovoru: “How do I survive the exam session?" in "Kako bi opisal počutje med izpitnem obdobjem?”.

    -

    Odzivi so bili takojšnji – študenti so hiteli pisat, odgovori pa so bili vse prej kot dolgočasni: od "kaotično" in "Hočemo spat! (ampak ne v CTK)!" do "chill", "pod stresom", "izčrpano", "srečno" in "zaspano". Z drugimi besedami – celoten spekter študentskih čustev, iskreno prelitih v nekaj besed.

    +

    Odzivi so bili takojšnji, študenti so hiteli pisat, odgovori pa so bili vse prej kot dolgočasni: od "kaotično" in "Hočemo spat! (ampak ne v CTK)!" do "chill", "pod stresom", "izčrpano", "srečno" in "zaspano". Z drugimi besedami, celoten spekter študentskih čustev, iskreno prelitih v nekaj besed.

    Bela tabla z ročno napisanimi odgovori študentov o njihovih občutkih med izpitnim obdobjem. @@ -218,17 +202,17 @@

    Od kave do simulatorja letenja in 3D-tiskalnikov

    -

    Kot bonus za študente smo v sodelovanju s tehniško knjižnico univerze program obogatili z razstavo CTK, kjer so bili predstavljeni simulator letenja, 3D-tiskalniki in druga zanimiva oprema. Študenti so jo lahko preizkusili, nato pa si jo brezplačno izposodili v Kreativnem studiu CTK – delu njihovega izobraževalnega programa.

    +

    Kot bonus za študente smo v sodelovanju s tehniško knjižnico univerze program obogatili z razstavo CTK, kjer so bili predstavljeni simulator letenja, 3D-tiskalniki in druga zanimiva oprema. Študenti so jo lahko preizkusili, nato pa si jo brezplačno izposodili v Kreativnem studiu CTK, delu njihovega izobraževalnega programa.

    Kava in burek = motivacija za vsakdanje vstajanje in 12-urno učenje

    -

    Skupno stojnico MSOS, Skupine Povezani in CTK je obiskalo okoli 150 ljudi, ki so se prišli družit, spit kavo, prigriznit nekaj in si izmenjat zgodbe med knjigami in roki. Dogodek je potekal v odličnem vzdušju – veliko nasmehov, nova poznanstva in majhen opomnik, da je tudi v najbolj stresnih obdobjih vedno čas za kavo in dobro družbo.

    +

    Skupno stojnico MSOS, Skupine Povezani in CTK je obiskalo okoli 150 ljudi, ki so se prišli družit, spit kavo, prigriznit nekaj in si izmenjat zgodbe med knjigami in roki. Dogodek je potekal v odličnem vzdušju, veliko nasmehov, nova poznanstva in majhen opomnik, da je tudi v najbolj stresnih obdobjih vedno čas za kavo in dobro družbo.

    Študenti zbrani na skupni stojnici med dogodkom.
    Del vzdušja na skupni stojnici.
    -

    Se vidimo ponovno prihodnje leto – še bolj sproščeni in z še več kave!

    +

    Se vidimo ponovno prihodnje leto, še bolj sproščeni in z še več kave!

    Kolaž fotografij, ki prikazuje študente, skodelice za kavo in burek. @@ -244,36 +228,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/projects/paint-and-wine-at-sunset/index.html b/si/projects/paint-and-wine-at-sunset/index.html index ffe462a5..f9462245 100644 --- a/si/projects/paint-and-wine-at-sunset/index.html +++ b/si/projects/paint-and-wine-at-sunset/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -255,36 +239,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/projects/watching-handball-together-in-slovenia/index.html b/si/projects/watching-handball-together-in-slovenia/index.html index 7f1bdba1..ab0c9797 100644 --- a/si/projects/watching-handball-together-in-slovenia/index.html +++ b/si/projects/watching-handball-together-in-slovenia/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -243,36 +227,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/academic-life/index.html b/si/student-welcome-guide/academic-life/index.html index 372bdc6d..75d70b4c 100644 --- a/si/student-welcome-guide/academic-life/index.html +++ b/si/student-welcome-guide/academic-life/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -282,36 +266,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/administrative-basics/index.html b/si/student-welcome-guide/administrative-basics/index.html index 93e26d62..d81d0c41 100644 --- a/si/student-welcome-guide/administrative-basics/index.html +++ b/si/student-welcome-guide/administrative-basics/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -279,36 +263,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/admission-and-enrolment/index.html b/si/student-welcome-guide/admission-and-enrolment/index.html index fc878615..b7a39857 100644 --- a/si/student-welcome-guide/admission-and-enrolment/index.html +++ b/si/student-welcome-guide/admission-and-enrolment/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -280,36 +264,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/application-deadlines/index.html b/si/student-welcome-guide/application-deadlines/index.html index 2164fe0f..06995e60 100644 --- a/si/student-welcome-guide/application-deadlines/index.html +++ b/si/student-welcome-guide/application-deadlines/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -277,36 +261,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/arrival-checklist/index.html b/si/student-welcome-guide/arrival-checklist/index.html index 31ec429b..d429ee32 100644 --- a/si/student-welcome-guide/arrival-checklist/index.html +++ b/si/student-welcome-guide/arrival-checklist/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -295,36 +279,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/bachelor-application/index.html b/si/student-welcome-guide/bachelor-application/index.html index 0d33a585..52c02fea 100644 --- a/si/student-welcome-guide/bachelor-application/index.html +++ b/si/student-welcome-guide/bachelor-application/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -307,36 +291,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/choose-a-programme/index.html b/si/student-welcome-guide/choose-a-programme/index.html index 6c856264..9cb97d49 100644 --- a/si/student-welcome-guide/choose-a-programme/index.html +++ b/si/student-welcome-guide/choose-a-programme/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -298,36 +282,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/complete-student-journey/index.html b/si/student-welcome-guide/complete-student-journey/index.html index cfca4685..283a5592 100644 --- a/si/student-welcome-guide/complete-student-journey/index.html +++ b/si/student-welcome-guide/complete-student-journey/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -323,36 +307,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/document-preparation/index.html b/si/student-welcome-guide/document-preparation/index.html index f3c3f5c3..2a20e5c9 100644 --- a/si/student-welcome-guide/document-preparation/index.html +++ b/si/student-welcome-guide/document-preparation/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -272,36 +256,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/evs-application-guide/index.html b/si/student-welcome-guide/evs-application-guide/index.html index 10b8b25a..18cc28fb 100644 --- a/si/student-welcome-guide/evs-application-guide/index.html +++ b/si/student-welcome-guide/evs-application-guide/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -290,36 +274,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/healthcare-in-slovenia/index.html b/si/student-welcome-guide/healthcare-in-slovenia/index.html index 72a3f023..376985d6 100644 --- a/si/student-welcome-guide/healthcare-in-slovenia/index.html +++ b/si/student-welcome-guide/healthcare-in-slovenia/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -333,36 +317,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/index.html b/si/student-welcome-guide/index.html index 33e9d339..3420729c 100644 --- a/si/student-welcome-guide/index.html +++ b/si/student-welcome-guide/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -438,36 +422,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/master-application/index.html b/si/student-welcome-guide/master-application/index.html index 60a5c724..d8ff2b59 100644 --- a/si/student-welcome-guide/master-application/index.html +++ b/si/student-welcome-guide/master-application/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -284,36 +268,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/means-accommodation-address/index.html b/si/student-welcome-guide/means-accommodation-address/index.html index db2c45e5..c369d002 100644 --- a/si/student-welcome-guide/means-accommodation-address/index.html +++ b/si/student-welcome-guide/means-accommodation-address/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -208,7 +192,7 @@
  • Druge priznane prihodke ali premoženje
  • -

    Zahtevani znesek je vezan na trenutni slovenski osnovni znesek minimalnega dohodka. Referenčni znesek iz vodnika MSOS o prebivanju, preverjen 1. septembra 2024, je 484,88 EUR na mesec za celotno študijsko leto. Ker sledi minimalnemu dohodku, se lahko spremeni, zato aktualni uradni znesek potrdite pri pristojni upravni enoti in vprašajte, kako izračuna obdobje in katera dokazila sprejme.

    +

    Zahtevani znesek je vezan na trenutni slovenski osnovni znesek minimalnega dohodka. Od 1. aprila 2026 ta osnovni znesek minimalnega dohodka znaša 507,43 EUR na mesec in dokazilo o sredstvih se izračuna na tej podlagi za celotno študijsko leto. Ker sledi minimalnemu dohodku, se lahko spremeni, zato aktualni uradni znesek potrdite pri pristojni upravni enoti in vprašajte, kako izračuna obdobje in katera dokazila sprejme.

    Podpora starša

    @@ -278,7 +262,7 @@

    Izjava ne potrebuje posebnega obrazca in zadošča podpis enega starša. Napisana mora biti v angleščini, slovenščini ali nekdanjem jugoslovanskem jeziku v latinici. Preprosta različica se glasi:

    -
    Podpisani [polno ime starša], rojen [datum], stanujoč na [naslov], oče ali mati [polno ime študenta], rojenega [datum], izjavljam, da bom svojega otroka med študijem v Sloveniji v študijskem letu 2026/2027 finančno podpiral z najmanj 484,88 EUR na mesec za celotno študijsko leto. Kraj, datum in podpis.
    +
    Podpisani [polno ime starša], rojen [datum], stanujoč na [naslov], oče ali mati [polno ime študenta], rojenega [datum], izjavljam, da bom svojega otroka med študijem v Sloveniji v študijskem letu 2026/2027 finančno podpiral z najmanj 507,43 EUR na mesec za celotno študijsko leto. Kraj, datum in podpis.

    Priložite dokazilo o sorodstvu ter, kjer je zahtevano, dokazilo o dohodku ali bančnih sredstvih starša. Točno pričakovano besedilo potrdite pri svoji upravni enoti, saj nekateri uradi raje uporabijo svojo predlogo.

    @@ -356,36 +340,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/my-route/index.html b/si/student-welcome-guide/my-route/index.html index 50a514ef..0a6c98ce 100644 --- a/si/student-welcome-guide/my-route/index.html +++ b/si/student-welcome-guide/my-route/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -184,36 +168,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/official-sources-and-checklists/index.html b/si/student-welcome-guide/official-sources-and-checklists/index.html index 06542269..ed7eafbe 100644 --- a/si/student-welcome-guide/official-sources-and-checklists/index.html +++ b/si/student-welcome-guide/official-sources-and-checklists/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -311,36 +295,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/prepare-to-move/index.html b/si/student-welcome-guide/prepare-to-move/index.html index 5c00c488..c53348aa 100644 --- a/si/student-welcome-guide/prepare-to-move/index.html +++ b/si/student-welcome-guide/prepare-to-move/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -328,36 +312,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/recognition-of-education/index.html b/si/student-welcome-guide/recognition-of-education/index.html index f155e8a0..6a475b8f 100644 --- a/si/student-welcome-guide/recognition-of-education/index.html +++ b/si/student-welcome-guide/recognition-of-education/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -273,36 +257,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/renew-change-graduate/index.html b/si/student-welcome-guide/renew-change-graduate/index.html index 6908e6bc..f3e215a1 100644 --- a/si/student-welcome-guide/renew-change-graduate/index.html +++ b/si/student-welcome-guide/renew-change-graduate/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -282,36 +266,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/rm-si-3-health-insurance/index.html b/si/student-welcome-guide/rm-si-3-health-insurance/index.html index 08b91215..16e21939 100644 --- a/si/student-welcome-guide/rm-si-3-health-insurance/index.html +++ b/si/student-welcome-guide/rm-si-3-health-insurance/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -322,36 +306,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/student-accommodation/index.html b/si/student-welcome-guide/student-accommodation/index.html index 0be4ece1..b990fe05 100644 --- a/si/student-welcome-guide/student-accommodation/index.html +++ b/si/student-welcome-guide/student-accommodation/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -322,36 +306,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/student-budget/index.html b/si/student-welcome-guide/student-budget/index.html index 713f0665..20ea07ce 100644 --- a/si/student-welcome-guide/student-budget/index.html +++ b/si/student-welcome-guide/student-budget/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -228,7 +212,7 @@ -

    Upoštevajte, da je pogoj sredstev za dovoljenje za prebivanje (ob zadnjem preverjanju okoli 484,88 EUR na mesec) blizu spodnjega dela tega razpona, zato je to pravni minimum za dokazovanje, ne udoben življenjski proračun. Načrtujte nad njim.

    +

    Upoštevajte, da je pogoj sredstev za dovoljenje za prebivanje (okoli 507,43 EUR na mesec od 1. aprila 2026) blizu spodnjega dela tega razpona, zato je to pravni minimum za dokazovanje, ne udoben življenjski proračun. Načrtujte nad njim.

    Proračun prvega meseca

    @@ -292,36 +276,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/student-meals/index.html b/si/student-welcome-guide/student-meals/index.html index 8170c20a..9c619f83 100644 --- a/si/student-welcome-guide/student-meals/index.html +++ b/si/student-welcome-guide/student-meals/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -280,36 +264,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html index f99a2337..ad5dcbdd 100644 --- a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html +++ b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -317,36 +301,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/student-residence-permit/index.html b/si/student-welcome-guide/student-residence-permit/index.html index 6328a31e..2de08fd8 100644 --- a/si/student-welcome-guide/student-residence-permit/index.html +++ b/si/student-welcome-guide/student-residence-permit/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -236,7 +220,7 @@

    Dokazilo o zadostnih sredstvih

    -

    Dokazati morate, da se lahko preživljate. Najpogostejša pot je pisna izjava starša ali skrbnika, ki vas je zakonsko dolžan preživljati, da vas bo (ime, priimek, datum rojstva) v celotnem študijskem letu podpiral z najmanj 484,88 EUR na mesec. Zadošča podpis enega starša. Posebna notarska overitev ni potrebna, izjava pa mora biti napisana v angleščini, slovenščini ali enem od nekdanjih jugoslovanskih jezikov v latinici. Znesek 484,88 EUR je vezan na osnovni znesek minimalnega dohodka in se lahko spremeni, zato preverite aktualno vrednost. Druga sprejeta dokazila, kot so zaslužek od študentskega dela, štipendija, bančna sredstva ali dotacije, so na strani o sredstvih in naslovu.

    +

    Dokazati morate, da se lahko preživljate. Najpogostejša pot je pisna izjava starša ali skrbnika, ki vas je zakonsko dolžan preživljati, da vas bo (ime, priimek, datum rojstva) v celotnem študijskem letu podpiral z najmanj 507,43 EUR na mesec. Zadošča podpis enega starša. Posebna notarska overitev ni potrebna, izjava pa mora biti napisana v angleščini, slovenščini ali enem od nekdanjih jugoslovanskih jezikov v latinici. Znesek 507,43 EUR je vezan na osnovni znesek minimalnega dohodka in se lahko spremeni, zato preverite aktualno vrednost. Druga sprejeta dokazila, kot so zaslužek od študentskega dela, štipendija, bančna sredstva ali dotacije, so na strani o sredstvih in naslovu.

    Dokument z vašim lastnoročnim podpisom

    @@ -334,36 +318,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/student-transport/index.html b/si/student-welcome-guide/student-transport/index.html index f71a330e..d2c90494 100644 --- a/si/student-welcome-guide/student-transport/index.html +++ b/si/student-welcome-guide/student-transport/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -301,36 +285,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/student-work/index.html b/si/student-welcome-guide/student-work/index.html index 2ff0051f..1fa0fb72 100644 --- a/si/student-welcome-guide/student-work/index.html +++ b/si/student-welcome-guide/student-work/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -275,36 +259,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/study-cities/index.html b/si/student-welcome-guide/study-cities/index.html index 246618d4..8c6c986b 100644 --- a/si/student-welcome-guide/study-cities/index.html +++ b/si/student-welcome-guide/study-cities/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -307,36 +291,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/tuition-and-scholarships/index.html b/si/student-welcome-guide/tuition-and-scholarships/index.html index 6cba7daa..a2c9d234 100644 --- a/si/student-welcome-guide/tuition-and-scholarships/index.html +++ b/si/student-welcome-guide/tuition-and-scholarships/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -277,36 +261,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/visa-and-residence-explained/index.html b/si/student-welcome-guide/visa-and-residence-explained/index.html index 7bd43794..940add74 100644 --- a/si/student-welcome-guide/visa-and-residence-explained/index.html +++ b/si/student-welcome-guide/visa-and-residence-explained/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -304,36 +288,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/wellbeing-and-community/index.html b/si/student-welcome-guide/wellbeing-and-community/index.html index fbc9b378..387298ee 100644 --- a/si/student-welcome-guide/wellbeing-and-community/index.html +++ b/si/student-welcome-guide/wellbeing-and-community/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -271,36 +255,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    - diff --git a/si/student-welcome-guide/where-to-apply-for-residence/index.html b/si/student-welcome-guide/where-to-apply-for-residence/index.html index 2f5d4050..4145fdd9 100644 --- a/si/student-welcome-guide/where-to-apply-for-residence/index.html +++ b/si/student-welcome-guide/where-to-apply-for-residence/index.html @@ -41,23 +41,16 @@ Kaj delamo - + @@ -113,23 +105,16 @@ Kaj delamo - + @@ -342,36 +326,38 @@ +

    Masarykova cesta 24
    1000 Ljubljana, Slovenija
    - +389 02 123 4567
    - info.msosorg@gmail.com + info@msosorg.com


    -