diff --git a/css/layout/_header.css b/css/layout/_header.css
index f1e28c11..cf5df030 100644
--- a/css/layout/_header.css
+++ b/css/layout/_header.css
@@ -161,14 +161,19 @@
.lang-dropdown a:hover { background-color: #F5FAFB; }
.lang-dropdown a.is-current { background-color: #F0F6F8; color: #2D738C; }
-/* Circular flags used in both the dropdown and the mobile modal */
-.lang-dropdown .fi,
-.language-modal-body .fi {
- font-size: 24px;
- border-radius: 50%;
+/* 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 {
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/en/about-us/index.html b/en/about-us/index.html
index 93051496..f12111b7 100644
--- a/en/about-us/index.html
+++ b/en/about-us/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/cookie-policy/index.html b/en/cookie-policy/index.html
index 698cc65d..4010d6be 100644
--- a/en/cookie-policy/index.html
+++ b/en/cookie-policy/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 295d9dc9..44b4a9b2 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 118c6ca4..2a6a6742 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/get-to-know-macedonia/index.html b/en/get-to-know-macedonia/index.html
index a8312f5f..e6818d6b 100644
--- a/en/get-to-know-macedonia/index.html
+++ b/en/get-to-know-macedonia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 70ed9f58..0dc335e9 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 62c1e78e..50da3b7b 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 a6c6258d..9772ade2 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 4d8722c0..6575ddc3 100644
--- a/en/get-to-know-macedonia/welcome-to-macedonia/index.html
+++ b/en/get-to-know-macedonia/welcome-to-macedonia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 4bff43c8..2ef7d763 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/get-to-know-slovenia/index.html b/en/get-to-know-slovenia/index.html
index 8ea4ead8..d64ee459 100644
--- a/en/get-to-know-slovenia/index.html
+++ b/en/get-to-know-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 ecefb54d..46a15d75 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 650cefb7..dc6d20ed 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 568db8b6..085d52da 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 9fdd277c..bca68021 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 5227f555..aa837887 100644
--- a/en/get-to-know-slovenia/welcome-to-slovenia/index.html
+++ b/en/get-to-know-slovenia/welcome-to-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/index.html b/en/index.html
index c44c36a6..4bb80495 100644
--- a/en/index.html
+++ b/en/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
@@ -193,11 +192,38 @@
-
-

-

-

-

+
Our partners and supporters
+
+
+
+

+

+

+

+

+

+

+

+

+

+

+

+
+
+

+

+

+

+

+

+

+

+

+

+

+

+
+
diff --git a/en/privacy-policy/index.html b/en/privacy-policy/index.html
index 1d705c2c..bed50b67 100644
--- a/en/privacy-policy/index.html
+++ b/en/privacy-policy/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/projects/humanitarian-tournament-in-maribor/index.html b/en/projects/humanitarian-tournament-in-maribor/index.html
index b54b0569..d06bba30 100644
--- a/en/projects/humanitarian-tournament-in-maribor/index.html
+++ b/en/projects/humanitarian-tournament-in-maribor/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/projects/in-memory-of-frosina-kulakova/index.html b/en/projects/in-memory-of-frosina-kulakova/index.html
index 1914ff6f..88dd6b72 100644
--- a/en/projects/in-memory-of-frosina-kulakova/index.html
+++ b/en/projects/in-memory-of-frosina-kulakova/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 eece5b9b..4e0a5ea4 100644
--- a/en/projects/in-memory-of-the-kochani-victims/index.html
+++ b/en/projects/in-memory-of-the-kochani-victims/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/projects/index.html b/en/projects/index.html
index 5a3a3cc7..374f1973 100644
--- a/en/projects/index.html
+++ b/en/projects/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/projects/macedonian-student-night-in-ljubljana/index.html b/en/projects/macedonian-student-night-in-ljubljana/index.html
index d9d56e24..080f23e1 100644
--- a/en/projects/macedonian-student-night-in-ljubljana/index.html
+++ b/en/projects/macedonian-student-night-in-ljubljana/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html b/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html
index 704bf185..581241f4 100644
--- a/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html
+++ b/en/projects/makedonska-studentska-vecer-vo-ljubljana/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/projects/meet-student-slovenia-2023/index.html b/en/projects/meet-student-slovenia-2023/index.html
index 0f13ec34..58ec8755 100644
--- a/en/projects/meet-student-slovenia-2023/index.html
+++ b/en/projects/meet-student-slovenia-2023/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/projects/meet-student-slovenia-2024/index.html b/en/projects/meet-student-slovenia-2024/index.html
index 1e60efc2..034a4d6d 100644
--- a/en/projects/meet-student-slovenia-2024/index.html
+++ b/en/projects/meet-student-slovenia-2024/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 f5378bd0..a0d03e50 100644
--- a/en/projects/morning-coffee-in-front-of-ctk/index.html
+++ b/en/projects/morning-coffee-in-front-of-ctk/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/projects/paint-and-wine-at-sunset/index.html b/en/projects/paint-and-wine-at-sunset/index.html
index 964f7ef4..7cdf7ebf 100644
--- a/en/projects/paint-and-wine-at-sunset/index.html
+++ b/en/projects/paint-and-wine-at-sunset/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/projects/watching-handball-together-in-slovenia/index.html b/en/projects/watching-handball-together-in-slovenia/index.html
index 56160a2b..cc02ea40 100644
--- a/en/projects/watching-handball-together-in-slovenia/index.html
+++ b/en/projects/watching-handball-together-in-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/academic-life/index.html b/en/student-welcome-guide/academic-life/index.html
index 65e3d5b4..0c22fd0e 100644
--- a/en/student-welcome-guide/academic-life/index.html
+++ b/en/student-welcome-guide/academic-life/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/administrative-basics/index.html b/en/student-welcome-guide/administrative-basics/index.html
index bb45d2f4..b121d414 100644
--- a/en/student-welcome-guide/administrative-basics/index.html
+++ b/en/student-welcome-guide/administrative-basics/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/admission-and-enrolment/index.html b/en/student-welcome-guide/admission-and-enrolment/index.html
index baf132e1..a6cbb764 100644
--- a/en/student-welcome-guide/admission-and-enrolment/index.html
+++ b/en/student-welcome-guide/admission-and-enrolment/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/application-deadlines/index.html b/en/student-welcome-guide/application-deadlines/index.html
index 2871eac1..f6cff98f 100644
--- a/en/student-welcome-guide/application-deadlines/index.html
+++ b/en/student-welcome-guide/application-deadlines/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/arrival-checklist/index.html b/en/student-welcome-guide/arrival-checklist/index.html
index 8123946b..ff356413 100644
--- a/en/student-welcome-guide/arrival-checklist/index.html
+++ b/en/student-welcome-guide/arrival-checklist/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/bachelor-application/index.html b/en/student-welcome-guide/bachelor-application/index.html
index 317e1420..dd0d0782 100644
--- a/en/student-welcome-guide/bachelor-application/index.html
+++ b/en/student-welcome-guide/bachelor-application/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/choose-a-programme/index.html b/en/student-welcome-guide/choose-a-programme/index.html
index e4a3d020..7924340a 100644
--- a/en/student-welcome-guide/choose-a-programme/index.html
+++ b/en/student-welcome-guide/choose-a-programme/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/complete-student-journey/index.html b/en/student-welcome-guide/complete-student-journey/index.html
index 7567c5f2..977c89e0 100644
--- a/en/student-welcome-guide/complete-student-journey/index.html
+++ b/en/student-welcome-guide/complete-student-journey/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/document-preparation/index.html b/en/student-welcome-guide/document-preparation/index.html
index cc36d06a..2af866da 100644
--- a/en/student-welcome-guide/document-preparation/index.html
+++ b/en/student-welcome-guide/document-preparation/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/evs-application-guide/index.html b/en/student-welcome-guide/evs-application-guide/index.html
index bc1df056..21dad14f 100644
--- a/en/student-welcome-guide/evs-application-guide/index.html
+++ b/en/student-welcome-guide/evs-application-guide/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/healthcare-in-slovenia/index.html b/en/student-welcome-guide/healthcare-in-slovenia/index.html
index 7f78d288..48be9e90 100644
--- a/en/student-welcome-guide/healthcare-in-slovenia/index.html
+++ b/en/student-welcome-guide/healthcare-in-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/index.html b/en/student-welcome-guide/index.html
index 98f281b9..adcb0d34 100644
--- a/en/student-welcome-guide/index.html
+++ b/en/student-welcome-guide/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/master-application/index.html b/en/student-welcome-guide/master-application/index.html
index 1968f679..caef5a01 100644
--- a/en/student-welcome-guide/master-application/index.html
+++ b/en/student-welcome-guide/master-application/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/means-accommodation-address/index.html b/en/student-welcome-guide/means-accommodation-address/index.html
index bc5509f3..874d03ed 100644
--- a/en/student-welcome-guide/means-accommodation-address/index.html
+++ b/en/student-welcome-guide/means-accommodation-address/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/my-route/index.html b/en/student-welcome-guide/my-route/index.html
index 931db994..74452440 100644
--- a/en/student-welcome-guide/my-route/index.html
+++ b/en/student-welcome-guide/my-route/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/official-sources-and-checklists/index.html b/en/student-welcome-guide/official-sources-and-checklists/index.html
index 6af2fd07..839987f5 100644
--- a/en/student-welcome-guide/official-sources-and-checklists/index.html
+++ b/en/student-welcome-guide/official-sources-and-checklists/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/prepare-to-move/index.html b/en/student-welcome-guide/prepare-to-move/index.html
index 2366a1fd..e37250f7 100644
--- a/en/student-welcome-guide/prepare-to-move/index.html
+++ b/en/student-welcome-guide/prepare-to-move/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/recognition-of-education/index.html b/en/student-welcome-guide/recognition-of-education/index.html
index 74ca570c..c0a722c8 100644
--- a/en/student-welcome-guide/recognition-of-education/index.html
+++ b/en/student-welcome-guide/recognition-of-education/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/renew-change-graduate/index.html b/en/student-welcome-guide/renew-change-graduate/index.html
index 19741037..30ded455 100644
--- a/en/student-welcome-guide/renew-change-graduate/index.html
+++ b/en/student-welcome-guide/renew-change-graduate/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/rm-si-3-health-insurance/index.html b/en/student-welcome-guide/rm-si-3-health-insurance/index.html
index 425f3756..a02b27bb 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/student-accommodation/index.html b/en/student-welcome-guide/student-accommodation/index.html
index 54b3117d..8a2c3798 100644
--- a/en/student-welcome-guide/student-accommodation/index.html
+++ b/en/student-welcome-guide/student-accommodation/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/student-budget/index.html b/en/student-welcome-guide/student-budget/index.html
index b94c4f49..dc8299e4 100644
--- a/en/student-welcome-guide/student-budget/index.html
+++ b/en/student-welcome-guide/student-budget/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/student-meals/index.html b/en/student-welcome-guide/student-meals/index.html
index 2e6b93f5..3a5f0485 100644
--- a/en/student-welcome-guide/student-meals/index.html
+++ b/en/student-welcome-guide/student-meals/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html
index cbcfdcea..854dfb17 100644
--- a/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html
+++ b/en/student-welcome-guide/student-organisations-and-extracurriculars/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/student-residence-permit/index.html b/en/student-welcome-guide/student-residence-permit/index.html
index da6d05b3..00211991 100644
--- a/en/student-welcome-guide/student-residence-permit/index.html
+++ b/en/student-welcome-guide/student-residence-permit/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/student-transport/index.html b/en/student-welcome-guide/student-transport/index.html
index 0daff6f2..3b4574b4 100644
--- a/en/student-welcome-guide/student-transport/index.html
+++ b/en/student-welcome-guide/student-transport/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/student-work/index.html b/en/student-welcome-guide/student-work/index.html
index 115f06b0..004e4f12 100644
--- a/en/student-welcome-guide/student-work/index.html
+++ b/en/student-welcome-guide/student-work/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/study-cities/index.html b/en/student-welcome-guide/study-cities/index.html
index d1770342..b952968d 100644
--- a/en/student-welcome-guide/study-cities/index.html
+++ b/en/student-welcome-guide/study-cities/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/tuition-and-scholarships/index.html b/en/student-welcome-guide/tuition-and-scholarships/index.html
index 6e1a0991..fb5c898b 100644
--- a/en/student-welcome-guide/tuition-and-scholarships/index.html
+++ b/en/student-welcome-guide/tuition-and-scholarships/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/visa-and-residence-explained/index.html b/en/student-welcome-guide/visa-and-residence-explained/index.html
index 4cc90424..67819331 100644
--- a/en/student-welcome-guide/visa-and-residence-explained/index.html
+++ b/en/student-welcome-guide/visa-and-residence-explained/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/wellbeing-and-community/index.html b/en/student-welcome-guide/wellbeing-and-community/index.html
index 2d0d17af..4ae0e162 100644
--- a/en/student-welcome-guide/wellbeing-and-community/index.html
+++ b/en/student-welcome-guide/wellbeing-and-community/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/student-welcome-guide/where-to-apply-for-residence/index.html b/en/student-welcome-guide/where-to-apply-for-residence/index.html
index 985861a9..8812a3ee 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/en/timeline-and-milestones/index.html b/en/timeline-and-milestones/index.html
index fc60b917..2a60b371 100644
--- a/en/timeline-and-milestones/index.html
+++ b/en/timeline-and-milestones/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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/mk/cookie-policy/index.html b/mk/cookie-policy/index.html
index 4cd60cd4..1382bab5 100644
--- a/mk/cookie-policy/index.html
+++ b/mk/cookie-policy/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 de58b379..b6763a1d 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 aef7f24b..5412d613 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/get-to-know-macedonia/index.html b/mk/get-to-know-macedonia/index.html
index 57c54c52..87b041ef 100644
--- a/mk/get-to-know-macedonia/index.html
+++ b/mk/get-to-know-macedonia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 0c25c896..a67b938a 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 6d619358..89083fbe 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 6587f348..4f4aa31d 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 37e260b9..0a374245 100644
--- a/mk/get-to-know-macedonia/welcome-to-macedonia/index.html
+++ b/mk/get-to-know-macedonia/welcome-to-macedonia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 da9cdeb4..05ad90b9 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/get-to-know-slovenia/index.html b/mk/get-to-know-slovenia/index.html
index b97c9ca9..606d8b83 100644
--- a/mk/get-to-know-slovenia/index.html
+++ b/mk/get-to-know-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 0e77247f..e88478fa 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 b2460001..99068fc6 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 2eee2b20..f07dd4a6 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 ef5e2e32..c82a4044 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 ae80193c..95f1e6a3 100644
--- a/mk/get-to-know-slovenia/welcome-to-slovenia/index.html
+++ b/mk/get-to-know-slovenia/welcome-to-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/index.html b/mk/index.html
index d3d0ef24..2d5a02db 100644
--- a/mk/index.html
+++ b/mk/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/privacy-policy/index.html b/mk/privacy-policy/index.html
index bea82b77..37024de9 100644
--- a/mk/privacy-policy/index.html
+++ b/mk/privacy-policy/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/projects/humanitarian-tournament-in-maribor/index.html b/mk/projects/humanitarian-tournament-in-maribor/index.html
index b3de2ed5..fce6f403 100644
--- a/mk/projects/humanitarian-tournament-in-maribor/index.html
+++ b/mk/projects/humanitarian-tournament-in-maribor/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/projects/in-memory-of-frosina-kulakova/index.html b/mk/projects/in-memory-of-frosina-kulakova/index.html
index 4385fc06..704b51d0 100644
--- a/mk/projects/in-memory-of-frosina-kulakova/index.html
+++ b/mk/projects/in-memory-of-frosina-kulakova/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 3943a5c0..ad85732e 100644
--- a/mk/projects/in-memory-of-the-kochani-victims/index.html
+++ b/mk/projects/in-memory-of-the-kochani-victims/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/projects/index.html b/mk/projects/index.html
index 39cdf7fb..64ccc9d5 100644
--- a/mk/projects/index.html
+++ b/mk/projects/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/projects/macedonian-student-night-in-ljubljana/index.html b/mk/projects/macedonian-student-night-in-ljubljana/index.html
index 2f9d7bc9..78ad3c2c 100644
--- a/mk/projects/macedonian-student-night-in-ljubljana/index.html
+++ b/mk/projects/macedonian-student-night-in-ljubljana/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/projects/meet-student-slovenia-2023/index.html b/mk/projects/meet-student-slovenia-2023/index.html
index 6034be60..691decdc 100644
--- a/mk/projects/meet-student-slovenia-2023/index.html
+++ b/mk/projects/meet-student-slovenia-2023/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/projects/meet-student-slovenia-2024/index.html b/mk/projects/meet-student-slovenia-2024/index.html
index 26c5a1e2..5f66723a 100644
--- a/mk/projects/meet-student-slovenia-2024/index.html
+++ b/mk/projects/meet-student-slovenia-2024/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 69b08956..728913ce 100644
--- a/mk/projects/morning-coffee-in-front-of-ctk/index.html
+++ b/mk/projects/morning-coffee-in-front-of-ctk/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/projects/paint-and-wine-at-sunset/index.html b/mk/projects/paint-and-wine-at-sunset/index.html
index 7d80794f..91a9e10a 100644
--- a/mk/projects/paint-and-wine-at-sunset/index.html
+++ b/mk/projects/paint-and-wine-at-sunset/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/projects/watching-handball-together-in-slovenia/index.html b/mk/projects/watching-handball-together-in-slovenia/index.html
index 7df904fc..e9f6569b 100644
--- a/mk/projects/watching-handball-together-in-slovenia/index.html
+++ b/mk/projects/watching-handball-together-in-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/academic-life/index.html b/mk/student-welcome-guide/academic-life/index.html
index e9d7506f..2fe6c7cf 100644
--- a/mk/student-welcome-guide/academic-life/index.html
+++ b/mk/student-welcome-guide/academic-life/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/administrative-basics/index.html b/mk/student-welcome-guide/administrative-basics/index.html
index b5a2409f..c37c9752 100644
--- a/mk/student-welcome-guide/administrative-basics/index.html
+++ b/mk/student-welcome-guide/administrative-basics/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/admission-and-enrolment/index.html b/mk/student-welcome-guide/admission-and-enrolment/index.html
index 26fea829..1610fc30 100644
--- a/mk/student-welcome-guide/admission-and-enrolment/index.html
+++ b/mk/student-welcome-guide/admission-and-enrolment/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/application-deadlines/index.html b/mk/student-welcome-guide/application-deadlines/index.html
index 18ef2813..7bc3fb2a 100644
--- a/mk/student-welcome-guide/application-deadlines/index.html
+++ b/mk/student-welcome-guide/application-deadlines/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/arrival-checklist/index.html b/mk/student-welcome-guide/arrival-checklist/index.html
index 95dd43b1..689f3721 100644
--- a/mk/student-welcome-guide/arrival-checklist/index.html
+++ b/mk/student-welcome-guide/arrival-checklist/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/bachelor-application/index.html b/mk/student-welcome-guide/bachelor-application/index.html
index deb257ba..60e29a56 100644
--- a/mk/student-welcome-guide/bachelor-application/index.html
+++ b/mk/student-welcome-guide/bachelor-application/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/choose-a-programme/index.html b/mk/student-welcome-guide/choose-a-programme/index.html
index 5d750027..fbd4c85a 100644
--- a/mk/student-welcome-guide/choose-a-programme/index.html
+++ b/mk/student-welcome-guide/choose-a-programme/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/complete-student-journey/index.html b/mk/student-welcome-guide/complete-student-journey/index.html
index 17148024..93ee38e0 100644
--- a/mk/student-welcome-guide/complete-student-journey/index.html
+++ b/mk/student-welcome-guide/complete-student-journey/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/document-preparation/index.html b/mk/student-welcome-guide/document-preparation/index.html
index aa046a64..2ce2666f 100644
--- a/mk/student-welcome-guide/document-preparation/index.html
+++ b/mk/student-welcome-guide/document-preparation/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/evs-application-guide/index.html b/mk/student-welcome-guide/evs-application-guide/index.html
index 6909fcd6..7f64e9cb 100644
--- a/mk/student-welcome-guide/evs-application-guide/index.html
+++ b/mk/student-welcome-guide/evs-application-guide/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/healthcare-in-slovenia/index.html b/mk/student-welcome-guide/healthcare-in-slovenia/index.html
index 3c69e194..ceb838ce 100644
--- a/mk/student-welcome-guide/healthcare-in-slovenia/index.html
+++ b/mk/student-welcome-guide/healthcare-in-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/index.html b/mk/student-welcome-guide/index.html
index 7a40092f..a619a8b9 100644
--- a/mk/student-welcome-guide/index.html
+++ b/mk/student-welcome-guide/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/master-application/index.html b/mk/student-welcome-guide/master-application/index.html
index 2edbb9a5..e0af71d9 100644
--- a/mk/student-welcome-guide/master-application/index.html
+++ b/mk/student-welcome-guide/master-application/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/means-accommodation-address/index.html b/mk/student-welcome-guide/means-accommodation-address/index.html
index a9c7e436..849887b3 100644
--- a/mk/student-welcome-guide/means-accommodation-address/index.html
+++ b/mk/student-welcome-guide/means-accommodation-address/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/my-route/index.html b/mk/student-welcome-guide/my-route/index.html
index d6383cd8..c8429148 100644
--- a/mk/student-welcome-guide/my-route/index.html
+++ b/mk/student-welcome-guide/my-route/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/official-sources-and-checklists/index.html b/mk/student-welcome-guide/official-sources-and-checklists/index.html
index f0d6c10c..d2f86340 100644
--- a/mk/student-welcome-guide/official-sources-and-checklists/index.html
+++ b/mk/student-welcome-guide/official-sources-and-checklists/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/prepare-to-move/index.html b/mk/student-welcome-guide/prepare-to-move/index.html
index 56318ffd..118c1167 100644
--- a/mk/student-welcome-guide/prepare-to-move/index.html
+++ b/mk/student-welcome-guide/prepare-to-move/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/recognition-of-education/index.html b/mk/student-welcome-guide/recognition-of-education/index.html
index 605043bd..56116a40 100644
--- a/mk/student-welcome-guide/recognition-of-education/index.html
+++ b/mk/student-welcome-guide/recognition-of-education/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/renew-change-graduate/index.html b/mk/student-welcome-guide/renew-change-graduate/index.html
index 42218e68..1a7e64f7 100644
--- a/mk/student-welcome-guide/renew-change-graduate/index.html
+++ b/mk/student-welcome-guide/renew-change-graduate/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/rm-si-3-health-insurance/index.html b/mk/student-welcome-guide/rm-si-3-health-insurance/index.html
index 5289b6bc..6f68f8aa 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/student-accommodation/index.html b/mk/student-welcome-guide/student-accommodation/index.html
index 428c4466..f2d5d595 100644
--- a/mk/student-welcome-guide/student-accommodation/index.html
+++ b/mk/student-welcome-guide/student-accommodation/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/student-budget/index.html b/mk/student-welcome-guide/student-budget/index.html
index 0d19d0f8..d7cde9b0 100644
--- a/mk/student-welcome-guide/student-budget/index.html
+++ b/mk/student-welcome-guide/student-budget/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/student-meals/index.html b/mk/student-welcome-guide/student-meals/index.html
index c8067e7a..3b64ca29 100644
--- a/mk/student-welcome-guide/student-meals/index.html
+++ b/mk/student-welcome-guide/student-meals/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html
index 178ee13f..737eb9c7 100644
--- a/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html
+++ b/mk/student-welcome-guide/student-organisations-and-extracurriculars/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/student-residence-permit/index.html b/mk/student-welcome-guide/student-residence-permit/index.html
index 557325d7..9534676b 100644
--- a/mk/student-welcome-guide/student-residence-permit/index.html
+++ b/mk/student-welcome-guide/student-residence-permit/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/student-transport/index.html b/mk/student-welcome-guide/student-transport/index.html
index 57cda411..6ace2037 100644
--- a/mk/student-welcome-guide/student-transport/index.html
+++ b/mk/student-welcome-guide/student-transport/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/student-work/index.html b/mk/student-welcome-guide/student-work/index.html
index 2c316b82..39be025d 100644
--- a/mk/student-welcome-guide/student-work/index.html
+++ b/mk/student-welcome-guide/student-work/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/study-cities/index.html b/mk/student-welcome-guide/study-cities/index.html
index c6588144..52dac3ed 100644
--- a/mk/student-welcome-guide/study-cities/index.html
+++ b/mk/student-welcome-guide/study-cities/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/tuition-and-scholarships/index.html b/mk/student-welcome-guide/tuition-and-scholarships/index.html
index d2ebca7c..4827487b 100644
--- a/mk/student-welcome-guide/tuition-and-scholarships/index.html
+++ b/mk/student-welcome-guide/tuition-and-scholarships/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/visa-and-residence-explained/index.html b/mk/student-welcome-guide/visa-and-residence-explained/index.html
index 1bb51135..3a97f216 100644
--- a/mk/student-welcome-guide/visa-and-residence-explained/index.html
+++ b/mk/student-welcome-guide/visa-and-residence-explained/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/wellbeing-and-community/index.html b/mk/student-welcome-guide/wellbeing-and-community/index.html
index 8e81d4a3..d9d51a03 100644
--- a/mk/student-welcome-guide/wellbeing-and-community/index.html
+++ b/mk/student-welcome-guide/wellbeing-and-community/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/mk/student-welcome-guide/where-to-apply-for-residence/index.html b/mk/student-welcome-guide/where-to-apply-for-residence/index.html
index 931fb389..6ac9f804 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/cookie-policy/index.html b/si/cookie-policy/index.html
index 661cc221..e26f9186 100644
--- a/si/cookie-policy/index.html
+++ b/si/cookie-policy/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 e018a4e1..b0c1848c 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 45e3a7ec..76063334 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/get-to-know-macedonia/index.html b/si/get-to-know-macedonia/index.html
index 82d70352..1b25502d 100644
--- a/si/get-to-know-macedonia/index.html
+++ b/si/get-to-know-macedonia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 9df355c6..d5e63f42 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 9d59a604..6152cf93 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 cd1bdb9a..cb0bea11 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 c9c6a483..1429c843 100644
--- a/si/get-to-know-macedonia/welcome-to-macedonia/index.html
+++ b/si/get-to-know-macedonia/welcome-to-macedonia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 c161b3f1..eb1fb1ba 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/get-to-know-slovenia/index.html b/si/get-to-know-slovenia/index.html
index a112c368..16f65387 100644
--- a/si/get-to-know-slovenia/index.html
+++ b/si/get-to-know-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 382b5e9a..2563797d 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 5381d818..15b2d7cf 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 a976655e..50248dcf 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 0ce00662..4926c30c 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 34d70349..f03fe9a0 100644
--- a/si/get-to-know-slovenia/welcome-to-slovenia/index.html
+++ b/si/get-to-know-slovenia/welcome-to-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/index.html b/si/index.html
index 01c9fd24..77a7a4ec 100644
--- a/si/index.html
+++ b/si/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/privacy-policy/index.html b/si/privacy-policy/index.html
index 2c92705c..934113cb 100644
--- a/si/privacy-policy/index.html
+++ b/si/privacy-policy/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/projects/humanitarian-tournament-in-maribor/index.html b/si/projects/humanitarian-tournament-in-maribor/index.html
index e63fca60..bec5c713 100644
--- a/si/projects/humanitarian-tournament-in-maribor/index.html
+++ b/si/projects/humanitarian-tournament-in-maribor/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/projects/in-memory-of-frosina-kulakova/index.html b/si/projects/in-memory-of-frosina-kulakova/index.html
index 0be2b58c..05c4ad53 100644
--- a/si/projects/in-memory-of-frosina-kulakova/index.html
+++ b/si/projects/in-memory-of-frosina-kulakova/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 a107f599..150366e9 100644
--- a/si/projects/in-memory-of-the-kochani-victims/index.html
+++ b/si/projects/in-memory-of-the-kochani-victims/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/projects/index.html b/si/projects/index.html
index ebac3268..8d7dfb6a 100644
--- a/si/projects/index.html
+++ b/si/projects/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/projects/macedonian-student-night-in-ljubljana/index.html b/si/projects/macedonian-student-night-in-ljubljana/index.html
index 87ee1711..57ec9f42 100644
--- a/si/projects/macedonian-student-night-in-ljubljana/index.html
+++ b/si/projects/macedonian-student-night-in-ljubljana/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/projects/meet-student-slovenia-2023/index.html b/si/projects/meet-student-slovenia-2023/index.html
index 619d0190..e2e2d459 100644
--- a/si/projects/meet-student-slovenia-2023/index.html
+++ b/si/projects/meet-student-slovenia-2023/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/projects/meet-student-slovenia-2024/index.html b/si/projects/meet-student-slovenia-2024/index.html
index 74f5f7ed..76efaeb9 100644
--- a/si/projects/meet-student-slovenia-2024/index.html
+++ b/si/projects/meet-student-slovenia-2024/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
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 dfed2ee2..3bbc83f0 100644
--- a/si/projects/morning-coffee-in-front-of-ctk/index.html
+++ b/si/projects/morning-coffee-in-front-of-ctk/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/projects/paint-and-wine-at-sunset/index.html b/si/projects/paint-and-wine-at-sunset/index.html
index a6e71e7c..ee9b04d7 100644
--- a/si/projects/paint-and-wine-at-sunset/index.html
+++ b/si/projects/paint-and-wine-at-sunset/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/projects/watching-handball-together-in-slovenia/index.html b/si/projects/watching-handball-together-in-slovenia/index.html
index 5fc624cc..f8c1d32d 100644
--- a/si/projects/watching-handball-together-in-slovenia/index.html
+++ b/si/projects/watching-handball-together-in-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/academic-life/index.html b/si/student-welcome-guide/academic-life/index.html
index a670c247..e53db93f 100644
--- a/si/student-welcome-guide/academic-life/index.html
+++ b/si/student-welcome-guide/academic-life/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/administrative-basics/index.html b/si/student-welcome-guide/administrative-basics/index.html
index 4bd5d2f7..27c4d6d1 100644
--- a/si/student-welcome-guide/administrative-basics/index.html
+++ b/si/student-welcome-guide/administrative-basics/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/admission-and-enrolment/index.html b/si/student-welcome-guide/admission-and-enrolment/index.html
index 96c7612d..81afcf85 100644
--- a/si/student-welcome-guide/admission-and-enrolment/index.html
+++ b/si/student-welcome-guide/admission-and-enrolment/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/application-deadlines/index.html b/si/student-welcome-guide/application-deadlines/index.html
index 23c0d54d..21168a77 100644
--- a/si/student-welcome-guide/application-deadlines/index.html
+++ b/si/student-welcome-guide/application-deadlines/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/arrival-checklist/index.html b/si/student-welcome-guide/arrival-checklist/index.html
index 2585a8d9..2a030be4 100644
--- a/si/student-welcome-guide/arrival-checklist/index.html
+++ b/si/student-welcome-guide/arrival-checklist/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/bachelor-application/index.html b/si/student-welcome-guide/bachelor-application/index.html
index e70cefb7..1d9af00c 100644
--- a/si/student-welcome-guide/bachelor-application/index.html
+++ b/si/student-welcome-guide/bachelor-application/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/choose-a-programme/index.html b/si/student-welcome-guide/choose-a-programme/index.html
index 7d89d61b..df19af2f 100644
--- a/si/student-welcome-guide/choose-a-programme/index.html
+++ b/si/student-welcome-guide/choose-a-programme/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/complete-student-journey/index.html b/si/student-welcome-guide/complete-student-journey/index.html
index f0bcf483..eec077ed 100644
--- a/si/student-welcome-guide/complete-student-journey/index.html
+++ b/si/student-welcome-guide/complete-student-journey/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/document-preparation/index.html b/si/student-welcome-guide/document-preparation/index.html
index f80de4fc..4dd889f0 100644
--- a/si/student-welcome-guide/document-preparation/index.html
+++ b/si/student-welcome-guide/document-preparation/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/evs-application-guide/index.html b/si/student-welcome-guide/evs-application-guide/index.html
index 15aa5c43..36f7e94d 100644
--- a/si/student-welcome-guide/evs-application-guide/index.html
+++ b/si/student-welcome-guide/evs-application-guide/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/healthcare-in-slovenia/index.html b/si/student-welcome-guide/healthcare-in-slovenia/index.html
index 9859d01b..293bfb85 100644
--- a/si/student-welcome-guide/healthcare-in-slovenia/index.html
+++ b/si/student-welcome-guide/healthcare-in-slovenia/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/index.html b/si/student-welcome-guide/index.html
index 10ae8b59..8d2addb3 100644
--- a/si/student-welcome-guide/index.html
+++ b/si/student-welcome-guide/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/master-application/index.html b/si/student-welcome-guide/master-application/index.html
index d4845017..6cfe2a9f 100644
--- a/si/student-welcome-guide/master-application/index.html
+++ b/si/student-welcome-guide/master-application/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/means-accommodation-address/index.html b/si/student-welcome-guide/means-accommodation-address/index.html
index a3953b2f..1e681e7e 100644
--- a/si/student-welcome-guide/means-accommodation-address/index.html
+++ b/si/student-welcome-guide/means-accommodation-address/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/my-route/index.html b/si/student-welcome-guide/my-route/index.html
index 6e976901..9762f0ab 100644
--- a/si/student-welcome-guide/my-route/index.html
+++ b/si/student-welcome-guide/my-route/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/official-sources-and-checklists/index.html b/si/student-welcome-guide/official-sources-and-checklists/index.html
index 6632fb58..e07c7c2e 100644
--- a/si/student-welcome-guide/official-sources-and-checklists/index.html
+++ b/si/student-welcome-guide/official-sources-and-checklists/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/prepare-to-move/index.html b/si/student-welcome-guide/prepare-to-move/index.html
index e7a472dc..1a278e75 100644
--- a/si/student-welcome-guide/prepare-to-move/index.html
+++ b/si/student-welcome-guide/prepare-to-move/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/recognition-of-education/index.html b/si/student-welcome-guide/recognition-of-education/index.html
index 444e19ea..e8bce30d 100644
--- a/si/student-welcome-guide/recognition-of-education/index.html
+++ b/si/student-welcome-guide/recognition-of-education/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/renew-change-graduate/index.html b/si/student-welcome-guide/renew-change-graduate/index.html
index f3c3d78f..d73fa760 100644
--- a/si/student-welcome-guide/renew-change-graduate/index.html
+++ b/si/student-welcome-guide/renew-change-graduate/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/rm-si-3-health-insurance/index.html b/si/student-welcome-guide/rm-si-3-health-insurance/index.html
index 49dee336..1544ae7f 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/student-accommodation/index.html b/si/student-welcome-guide/student-accommodation/index.html
index 69caac48..8d9d57f0 100644
--- a/si/student-welcome-guide/student-accommodation/index.html
+++ b/si/student-welcome-guide/student-accommodation/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/student-budget/index.html b/si/student-welcome-guide/student-budget/index.html
index 4f47c511..3aafd5b5 100644
--- a/si/student-welcome-guide/student-budget/index.html
+++ b/si/student-welcome-guide/student-budget/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/student-meals/index.html b/si/student-welcome-guide/student-meals/index.html
index 588c69e5..99d6a194 100644
--- a/si/student-welcome-guide/student-meals/index.html
+++ b/si/student-welcome-guide/student-meals/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html
index c165452c..27ed3249 100644
--- a/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html
+++ b/si/student-welcome-guide/student-organisations-and-extracurriculars/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/student-residence-permit/index.html b/si/student-welcome-guide/student-residence-permit/index.html
index 679dfb6d..b1f80c4a 100644
--- a/si/student-welcome-guide/student-residence-permit/index.html
+++ b/si/student-welcome-guide/student-residence-permit/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/student-transport/index.html b/si/student-welcome-guide/student-transport/index.html
index a5ab2e06..3db68fbb 100644
--- a/si/student-welcome-guide/student-transport/index.html
+++ b/si/student-welcome-guide/student-transport/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/student-work/index.html b/si/student-welcome-guide/student-work/index.html
index 253d6375..a4ed085f 100644
--- a/si/student-welcome-guide/student-work/index.html
+++ b/si/student-welcome-guide/student-work/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/study-cities/index.html b/si/student-welcome-guide/study-cities/index.html
index 38e1ee6c..dcdec2cc 100644
--- a/si/student-welcome-guide/study-cities/index.html
+++ b/si/student-welcome-guide/study-cities/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/tuition-and-scholarships/index.html b/si/student-welcome-guide/tuition-and-scholarships/index.html
index 73533156..d03f1adb 100644
--- a/si/student-welcome-guide/tuition-and-scholarships/index.html
+++ b/si/student-welcome-guide/tuition-and-scholarships/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/visa-and-residence-explained/index.html b/si/student-welcome-guide/visa-and-residence-explained/index.html
index 42397b46..b1c19118 100644
--- a/si/student-welcome-guide/visa-and-residence-explained/index.html
+++ b/si/student-welcome-guide/visa-and-residence-explained/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/wellbeing-and-community/index.html b/si/student-welcome-guide/wellbeing-and-community/index.html
index f2cb7aa0..485bda2c 100644
--- a/si/student-welcome-guide/wellbeing-and-community/index.html
+++ b/si/student-welcome-guide/wellbeing-and-community/index.html
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@
diff --git a/si/student-welcome-guide/where-to-apply-for-residence/index.html b/si/student-welcome-guide/where-to-apply-for-residence/index.html
index 26c4f947..eba09144 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
@@ -12,7 +12,6 @@
-
@@ -83,9 +82,9 @@
@@ -166,9 +165,9 @@