/* ----------------------- RESET ----------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, #main, .mod_article, .ce_text, img {
  display: block;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.invisible {
  visibility: hidden;
  position: absolute;
  top: -99999px;
  left: -99999px;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.hidden {
  display: none !important;
}
.label {
  display: none;
}
strong {
  font-weight: 700;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
input::-moz-focus-inner {
  border: 0;
  outline: 0 none;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
figure {
  margin: 0;
  padding: 0;
}
img {
  position: relative;
  margin: 0;
  outline: 0 none;
  border: none;
  width: auto;
  width: 100%;
  height: auto;
  padding: 0;
  display: block;
  vertical-align: middle;
}
a:focus {
  border: 0 !important;
  outline: 0 none !important;
}
:root {
  --html-font-size: 16px;
  --header-height: 5rem;
  --layout-padding-inline: 1rem;
  --container-max-width: 1440px;
  --content-max-width: 1280px;
}
html {
  height: 100%;
  font-size: var(--html-font-size);
}
body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #745a51;
}
#header {
  height: var(--header-height);
  width: min(100%, var(--container-max-width));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: var(--layout-padding-inline);
  margin-block-end: 2rem;
}
#header .logo img {
  height: calc(var(--header-height) - 1rem);
  max-width: 7rem;
  object-fit: contain;
}
main {
  flex-grow: 1;
  width: min(100%, var(--content-max-width));
  margin-inline: auto;
}
#footer {
  margin-block-start: var(--content-spacing);
  background-color: #745a51;
  padding-block: 2rem;
  padding-inline: var(--layout-padding-inline);
}
#footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: min(100%, var(--container-max-width));
  margin-inline: auto;
  font-size: var(--font-size-0);
}
#footer p {
  color: white;
  margin: 0;
  font-size: var(--font-size-0);
}
#footer a {
  color: #f0d0bc;
  font-size: var(--font-size-0);
}
#footer .content-text {
  grid-area: unset;
  align-content: end;
}
@media screen and (min-width: 993px) {
  :root {
    --header-height: 10rem;
  }
  #footer .container {
    grid-template-columns: 20rem 1fr 20rem;
  }
  #footer .container .content-text:nth-child(2) {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  #header {
    margin-block-end: 4rem;
  }
}
@media screen and (min-width: 993px) {
  #navigation_standard.mod_navigation {
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
  }
  #navigation_standard.mod_navigation ul {
    display: flex;
    gap: 1.75rem;
  }
  #navigation_standard.mod_navigation ul li a, #navigation_standard.mod_navigation ul li strong.active {
    color: #745a51;
  }
  #navigation_standard.mod_navigation ul li a:hover {
    color: #e7b392;
  }
  #navigation_standard.mod_navigation ul li.active, #navigation_standard.mod_navigation ul li.trail {
    color: #745a51;
    box-shadow: 0 2px 0 0 #745a51;
  }
  .language-switcher {
    position: absolute;
    right: 0;
    top: 1rem;
  }
  .language-switcher .active {
    font-weight: bold;
  }
  #navigation_standard {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  #navigation_standard.mod_navigation {
    display: block !important;
    position: fixed;
    width: 100%;
    height: calc(100% - var(--header-height));
    top: var(--header-height);
    background-color: white;
    z-index: 99;
    right: 0;
    transform: translateX(100vw);
    transition: transform 0.375s ease-in-out;
  }
  #navigation_standard.mod_navigation ul.level_1 {
    display: grid;
    gap: 1rem;
    padding-top: 2rem;
  }
  #navigation_standard.mod_navigation ul.level_1 li {
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
  }
  #navigation_standard.mod_navigation ul.level_1 li a, #navigation_standard.mod_navigation ul.level_1 li strong {
    font-size: 1.2rem;
  }
  #navigation_standard.mod_navigation.open {
    transform: translateX(0);
  }
  #navigation_standard.mod_navigation .language-switcher {
    padding: 2rem;
    text-align: center;
  }
  #navigation_standard.mod_navigation .language-switcher .active {
    font-weight: bold;
  }
}
.menu--toggle {
  display: block;
  width: 3rem;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
}
.menu--toggle svg {
  stroke: #e7b392;
}
body:has(.mod_navigation.open) {
  overflow: hidden;
}
@media screen and (min-width: 993px) {
  .menu--toggle {
    display: none;
  }
}
:root {
  --content-spacing: 10vw;
  --content-gap: 4rem;
  --content-text-grid-gap: 1rem;
  --news-columns-count: 1;
  --article-image-width: min(100%, 40rem);
}
.mod_article {
  padding-inline: var(--layout-padding-inline);
}
.mod_article:has(h1):not(:first-child) {
  margin-block-start: var(--content-spacing);
}
.mod_article figure {
  margin-bottom: 3.5rem;
}
.mod_article .content-headline {
  text-align: center;
}
.mod_article img, .mod_article figcaption {
  justify-self: center;
  margin-inline: auto;
  width: var(--article-image-width);
}
.mod_article .rte {
  text-align: center;
}
.mod_article.col-6 .content-text {
  text-align: center;
}
.mod_newsreader .content-headline--sub {
  max-inline-size: unset;
  text-align: center;
}
.mod_newsreader .content-text, .mod_newsreader .content-image {
  margin-block-start: 2rem;
  text-align: center;
}
.mod_newsreader .ce_text_teaser {
  font-weight: var(--font-weight-600);
}
.mod_newslist .teaser--text h2 {
  padding-inline: 0 !important;
}
.mod_article#mb-content {
  margin-block-end: 4rem;
}
.mod_article#account .content-text {
  text-align: center;
}
.mod_article#account .content-image {
  text-align: center;
}
.mod_article#account .content-image figure {
  display: inline-block;
}
.mod_article#account .content-image img {
  width: 10rem;
  justify-self: start;
}
figcaption {
  font-size: var(--font-size-0);
  line-height: 1.1;
  text-align: left;
  padding: 0.5rem;
}
.media-right figure {
  margin-block-end: 2rem;
}
.more {
  font-weight: var(--font-weight-600);
}
@media screen and (min-width: 576px) {
  :root {
    --news-columns-count: 2;
  }
  .slider-wrapper figure {
    max-width: 30rem;
  }
  .slider-wrapper h2 {
    align-self: end;
    margin-block: 0;
  }
}
@media screen and (min-width: 768px) {
  .mod_article.col-6 {
    --column-gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--column-gap);
  }
  .mod_article.col-6 .content-text {
    flex-basis: calc(50% - calc(var(--column-gap) /2 ));
  }
  .mod_article#account {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
  }
  .mod_article#account .content-text {
    flex-basis: calc(50% - 1rem);
  }
  .mod_article#account .content-image {
    flex-basis: calc(50% - 1rem);
  }
  .mod_article#account .content-image img {
    width: 10rem;
    justify-self: start;
  }
  .mod_article.contact .rte {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --content-text-grid-gap: 3rem;
  }
  .content-text.media-right {
    display: grid;
    grid-template-areas: "title title" "image text";
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .content-text.media-right h1 {
    grid-area: title;
  }
  .content-text.media-right figure {
    grid-area: image;
    margin-block-end: 2rem;
  }
  .content-text.media-right div {
    grid-area: text;
  }
}
/* work-sans-regular - latin */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../files/dateien/fonts/work-sans-v5-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Work Sans"), local("WorkSans-Regular"), url("../../files/dateien/fonts/work-sans-v5-latin-regular.eot?#iefix") format("embedded-opentype"), url("../../files/dateien/fonts/work-sans-v5-latin-regular.woff2") format("woff2"), url("../../files/dateien/fonts/work-sans-v5-latin-regular.woff") format("woff"), url("../../files/dateien/fonts/work-sans-v5-latin-regular.ttf") format("truetype"), url("../../files/dateien/fonts/work-sans-v5-latin-regular.svg#WorkSans") format("svg");
  /* Legacy iOS */
}
/* work-sans-600 - latin */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../files/dateien/fonts/work-sans-v5-latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Work Sans SemiBold"), local("WorkSans-SemiBold"), url("../../files/dateien/fonts/work-sans-v5-latin-600.eot?#iefix") format("embedded-opentype"), url("../../files/dateien/fonts/work-sans-v5-latin-600.woff2") format("woff2"), url("../../files/dateien/fonts/work-sans-v5-latin-600.woff") format("woff"), url("../../files/dateien/fonts/work-sans-v5-latin-600.ttf") format("truetype"), url("../../files/dateien/fonts/work-sans-v5-latin-600.svg#WorkSans") format("svg");
  /* Legacy iOS */
}
/* work-sans-700 - latin */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../files/dateien/fonts/work-sans-v5-latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Work Sans Bold"), local("WorkSans-Bold"), url("../../files/dateien/fonts/work-sans-v5-latin-700.eot?#iefix") format("embedded-opentype"), url("../../files/dateien/fonts/work-sans-v5-latin-700.woff2") format("woff2"), url("../../files/dateien/fonts/work-sans-v5-latin-700.woff") format("woff"), url("../../files/dateien/fonts/work-sans-v5-latin-700.ttf") format("truetype"), url("../../files/dateien/fonts/work-sans-v5-latin-700.svg#WorkSans") format("svg");
  /* Legacy iOS */
}
:root {
  --font-size-00: .5rem;
  --font-size-0: .75rem;
  --font-size-1: 1rem;
  --font-size-2: 1.1rem;
  --font-size-3: 1.25rem;
  --font-size-4: 1.5rem;
  --font-size-5: 2rem;
  --font-size-6: 2.5rem;
  --font-size-7: 3rem;
  --font-size-8: 3.5rem;
  --font-size-h1: var(--font-size-5);
  --font-size-h2: var(--font-size-4);
  --font-size-h3: var(--font-size-3);
  --font-size-h4: var(--font-size-2);
  --font-size-h5: var(--font-size-1);
  --font-size-h6: var(--font-size-1);
  --font-size-p: 1rem;
  --font-weight-900: 900;
  --font-weight-700: 700;
  --font-weight-600: 600;
  --font-weight-500: 500;
  --font-weight-400: 400;
  --font-weight-300: 300;
}
h1, h2, h3, h4, h5, h6 {
  position: relative;
  font-family: inherit;
  line-height: normal;
  font-weight: 400;
  color: #e7b392;
  text-wrap: balance;
}
h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-600);
  margin-bottom: 2.5rem;
  line-height: 1;
  text-align: center;
}
h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-600);
  margin-bottom: 0.5rem;
  line-height: 1;
  color: #745a51;
}
h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-400);
  margin-bottom: 0.5rem;
  line-height: 1;
}
h4 {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-400);
}
h5 {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-400);
}
h6 {
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-400);
}
p {
  margin: 0 0 20px;
}
a {
  display: inline-block;
}
a, a:link, a:visited, a:focus, a:active, a:hover, .active {
  outline: 0 none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
  color: #745a51;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  border: none;
}
li, li:link, li:visited, li:focus, li:active, li:hover {
  outline: 0 none;
  text-decoration: none;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  border: none;
}
a, a:link, a:visited, a:active {
  color: #745a51;
}
a:hover, a:focus, a:active, .trail, .active {
  color: #e7b392;
}
b, strong {
  font-weight: 700;
}
sup {
  top: -0.5em;
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #745a51;
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
  overflow: auto;
}
.caption {
  position: relative;
  width: 100%;
  font-size: 0.8em;
  color: #745a51;
  padding: 20px 0 50px;
}
.back {
  width: 100%;
  clear: both;
  margin: 30px 0;
}
@media screen and (min-width: 769px) {
  :root {
    --font-size-h1: var(--font-size-7);
  }
}
:root {
  --swiper-pagination-height: 2rem;
  --swiper-image-width: 300px;
}
.swiper-wrapper {
  padding-block-end: var(--swiper-pagination-height);
}
.swiper-slide--inner .content {
  padding: 1rem;
  text-align: center;
}
.swiper-slide--inner .headline {
  font-weight: 600;
  font-size: var(--font-size-h3);
}
.swiper-slide--inner .subline {
  display: block;
  margin-block-end: 2rem;
}
.swiper-slide--inner .subline:empty {
  display: none;
}
.swiper-slide--inner .text {
  --line-count: 5;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-count);
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: calc(1rem * 1.3 * var(--line-count));
}
.swiper-slide--inner .image {
  grid-area: image;
}
.swiper-slide--inner .image figure {
  margin-block-end: 0;
}
.swiper-slide--inner .image picture {
  display: flex;
  justify-content: center;
}
.swiper-slide--inner .image img {
  width: var(--swiper-image-width);
  aspect-ratio: 1;
  object-fit: cover;
}
.swiper-slide--inner button {
  background: transparent;
  border: none;
  outline: none;
  color: #745a51;
  margin-block-start: 1rem;
  cursor: pointer;
  font-weight: var(--font-weight-600);
  margin-block-end: 2rem;
}
.swiper-slide--inner button:hover {
  color: #e7b392;
}
.mod_article:has(h1:only-child) + .mod_article:has(.ce_rsce_sliderswiper) {
  margin-block-start: calc(var(--content-spacing) / 3);
}
.swiper-button {
  padding: 0.5rem;
}
.swiper-buttons {
  position: absolute;
  top: calc(0.5 * var(--swiper-image-width));
  width: 106%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
.swiper-button-next, .swiper-button-prev {
  color: #745a51;
  margin: 0;
  top: 0;
  transform: translateY(-50%);
  width: 2rem;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: var(--font-size-3);
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}
[popover]:popover-open {
  opacity: 1;
}
[popover] {
  padding: 1rem;
  opacity: 0;
  width: min(calc(100vw - 1rem), 50rem);
  height: min(calc(100dvh - 1rem), 50rem);
  margin: 0 auto;
  top: 50%;
  translate: 0 -50%;
  overflow: auto;
  transition: all 0.7s allow-discrete;
}
@starting-style {
  [popover]:popover-open {
    opacity: 0;
  }
}
[popover]::backdrop {
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.7s allow-discrete;
}
[popover]:popover-open::backdrop {
  background-color: rgba(0, 0, 0, 0.75);
}
@starting-style {
  [popover]:popover-open::backdrop {
    background-color: rgba(0, 0, 0, 0);
  }
}
.popover-content {
  display: grid;
  gap: 2rem;
  position: relative;
  text-align: center;
}
.popover-content .headline {
  font-weight: 600;
  font-size: var(--font-size-h3);
}
.popover-content .subline {
  display: block;
  margin-block-end: 2rem;
}
.popover-content img {
  width: 10rem;
}
.close-popover {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #e7b392;
  border-radius: 50%;
  width: 2rem;
  aspect-ratio: 1;
  font-size: var(--font-size-0);
  line-height: 1.5;
  color: white;
  display: grid;
  place-content: center;
  border: none;
  outline: none;
  cursor: pointer;
}
@media screen and (min-width: 400px) {
  .swiper-button {
    padding: 0.5rem;
  }
  .swiper-buttons {
    position: absolute;
    top: calc(0.5 * var(--swiper-image-width));
    width: 103%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
  }
  .swiper-button-next, .swiper-button-prev {
    color: #745a51;
    margin: 0;
    top: 0;
    transform: translateY(-50%);
    width: 2rem;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: var(--font-size-5);
  }
  .swiper-button-next {
    right: 0;
  }
  .swiper-button-prev {
    left: 0;
  }
}
@media screen and (min-width: 576px) {
  .swiper-buttons {
    width: calc(var(--swiper-image-width) + 6rem);
  }
}
@media screen and (min-width: 768px) {
  :root {
    --swiper-image-width: 25rem;
  }
  .swiper-slide--inner .text {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: auto;
    height: auto;
  }
  .swiper-slide--inner button {
    display: none;
  }
}
.masonry-grid {
  margin: 0 auto;
  padding: 0;
}
.masonry-grid figure {
  margin-block-end: 2rem;
}
.masonry-grid .headline {
  font-weight: 600;
}
.masonry-grid .subheadline {
  display: block;
  margin-block-end: 2rem;
}
.masonry-grid .masonry-grid-item {
  display: grid;
  margin: 1rem;
  height: auto;
  width: 300px;
  transition: opacity 0.25s linear;
}
.masonry-grid .masonry-grid-item img {
  object-fit: cover;
  aspect-ratio: 1;
}
.masonry-grid .masonry-grid-item:nth-child(odd) img {
  aspect-ratio: 0.8;
}
.masonry-grid .masonry-grid-item a, .masonry-grid .masonry-grid-item.teaser-link {
  transition: opacity 0.25s linear;
}
.masonry-grid .masonry-grid-item a:hover, .masonry-grid .masonry-grid-item a:active, .masonry-grid .masonry-grid-item.teaser-link:hover, .masonry-grid .masonry-grid-item.teaser-link:active {
  color: inherit;
  opacity: 0.8;
}
.masonry-grid .masonry-grid-item a .teaser--text, .masonry-grid .masonry-grid-item.teaser-link .teaser--text {
  padding: var(--layout-padding-inline);
  padding-block-start: 0;
}
.masonry-grid .masonry-grid-item a .teaser--text h2, .masonry-grid .masonry-grid-item a .teaser--text span, .masonry-grid .masonry-grid-item a .teaser--text div, .masonry-grid .masonry-grid-item.teaser-link .teaser--text h2, .masonry-grid .masonry-grid-item.teaser-link .teaser--text span, .masonry-grid .masonry-grid-item.teaser-link .teaser--text div {
  padding-inline: 0;
}
.masonry-grid .masonry-grid-item a .teaser--text span, .masonry-grid .masonry-grid-item.teaser-link .teaser--text span {
  font-weight: var(--font-weight-600);
}
.masonry-grid .masonry-grid-item .subline {
  display: block;
  font-weight: var(--font-weight-600);
  margin-block-end: 0.5rem;
}
.masonry-grid .masonry-grid-item figure {
  margin-block-end: 1rem;
}
.masonry-grid-item.new {
  display: block;
}
.masonry-grid-item.new .masonry-content {
  border: 1px solid #f5dfd1;
  border-top: none;
  padding: var(--layout-padding-inline);
}
.masonry-grid-item.new .masonry-content .headline, .masonry-grid-item.new .masonry-content .subheadline, .masonry-grid-item.new .masonry-content h2, .masonry-grid-item.new .masonry-content span {
  padding-inline: 0;
}
.masonry-grid-item.new figure {
  margin: 0;
}
a.button--back {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: #745a51;
  padding: 0.25rem 0.5rem;
  border-radius: 0.125rem;
  color: #e7dfdd;
  text-transform: lowercase;
}
a.button--back::before {
  content: "";
  width: 0.75rem;
  aspect-ratio: 1;
  background-color: #e7dfdd;
  clip-path: polygon(70% 1%, 20% 50%, 70% 100%, 50% 100%, 0% 50%, 50% 0);
}
/* ----------------------- SEITE NICHT GEFUNDEN ----------------------- */
#seite-nicht-gefunden, #page-non-trouvee {
  position: relative;
  width: 80%;
  margin: 0 10% 100px 10%;
}
#seite-nicht-gefunden .ce_text, #page-non-trouvee .ce_text {
  text-align: center;
}
/* ----------------------- ZUGRIFF VERWEIGERT ----------------------- */
#zugriff-verweigert, #acces-refuse {
  position: relative;
  width: 80%;
  margin: 0 10% 100px 10%;
}
#zugriff-verweigert .ce_text, #acces-refuse .ce_text {
  text-align: center;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fbase.scss%22%2C%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fpartials%2F_reset.scss%22%2C%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fpartials%2F_layout.scss%22%2C%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fpartials%2F_nav.scss%22%2C%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fpartials%2F_content.scss%22%2C%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fpartials%2F_fonts.scss%22%2C%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fpartials%2F_swiper.scss%22%2C%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fpartials%2F_masonry.scss%22%2C%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fpartials%2F_elements.scss%22%2C%22var%2Fwww%2Fvhosts%2Fhilfswerk-burkinafaso.ch%2Fhttpdocs%2Ffiles%2Fdateien%2Fscss%2Fpartials%2F_http_errors.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAAA%3BACCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoBA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BACpGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAACI%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAOZ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BACjGJ%3BAAGQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAIQ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAUhB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAIQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAShB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAKA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BACtHJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAMQ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAQZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAEI%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOR%3BAAGQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAOZ%3BAAEI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAJlMR%3BAKCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALDA%3BAKeA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALfA%3BAK6BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA4BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BACpMD%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAQR%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAIA%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoBA%3BAACI%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAACI%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAC%2FPR%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAUR%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BACpFJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BARVJ%3BASCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BATND%3BASWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%22%7D */