.wrapper {
  display: block;
  position: relative;
  width: 35px;
  height: 35px;
}
.wrapper .bun:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 12%;
  background: white;
  border-radius: 35px;
  transition: all 0.5s cubic-bezier(0.1, 0.9, 0, 1.2);
  top: 10%;
  right: 0;
}
.wrapper .bun:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 12%;
  background: white;
  border-radius: 35px;
  transition: all 0.5s cubic-bezier(0.1, 0.9, 0, 1.2);
  bottom: 10%;
  left: 0;
}
.wrapper .bun .burger {
  position: absolute;
  display: flex;
  align-items: center;
  height: 35px;
  width: 35px;
}
.wrapper .bun .burger:before, .wrapper .bun .burger:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 12%;
  background: white;
  border-radius: 35px;
  transition: all 0.5s cubic-bezier(0.1, 0.9, 0, 1.2);
}
.wrapper input {
  display: block;
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.wrapper input:hover ~ .bun:before, .wrapper input:hover ~ .bun:after, .wrapper input:hover ~ .bun :before, .wrapper input:hover ~ .bun :after {
  background: #f2f2f2;
}
.wrapper input:checked ~ .bun:before, .wrapper input:checked ~ .bun:after {
  width: 0;
}
.wrapper input:checked ~ .bun .burger:before {
  transform: rotate(135deg);
}
.wrapper input:checked ~ .bun .burger:after {
  transform: rotate(45deg);
  box-shadow: 0 0 0 0 white;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: #1d1d1b;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 16px;
}

ul {
  list-style-type: none;
}

a:hover {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

h1 {
  hyphens: auto;
}

.shadow {
  box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.shadow:hover {
  box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.7) !important;
  transform: scale(1.04);
}

a {
  color: #1d1d1b;
  transition: color 0.2s;
  font-weight: 600;
}
a.active {
  font-weight: 600;
}
a:hover {
  color: rgba(29, 29, 27, 0.8352941176);
}

.bg-cov {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-con {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.text-summary {
  font-weight: 600;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

div#core {
  flex-grow: 1;
}

section .content-image {
  width: 100%;
  padding-bottom: 17%;
  margin-bottom: 40px;
}

.home-welcome h1 {
  margin-bottom: 25px;
}
.home-welcome .article-image-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-welcome .article-image {
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 20px;
}
.home-welcome .article-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer {
  margin-top: 75px;
  background-color: #0f70b7;
  color: #ffffff;
  padding: 25px;
}
footer a {
  font-weight: 100;
}
footer .place-right {
  display: flex;
  justify-content: left;
  align-items: center;
}
footer .place-right #zueri-waehlt-partner-carousel {
  width: 100%;
  aspect-ratio: 2/1;
  background-color: white;
}
footer .place-right #zueri-waehlt-partner-carousel .carousel-inner {
  aspect-ratio: 2/1;
}
footer .place-right #zueri-waehlt-partner-carousel .carousel-inner .carousel-item {
  aspect-ratio: 2/1;
}
footer .place-right #zueri-waehlt-partner-carousel .carousel-inner .carousel-item::before {
  background-color: rgba(0, 0, 0, 0) !important;
}
footer .place-right #zueri-waehlt-partner-carousel .carousel-inner .carousel-item .carousel-center {
  width: 100%;
  aspect-ratio: 2/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .place-right #zueri-waehlt-partner-carousel .carousel-inner .carousel-item .carousel-center div {
  width: 70%;
  aspect-ratio: 2/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.copyright {
  padding: 15px 0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .powered-by {
    display: flex;
    justify-content: right;
  }
  .place-right {
    justify-content: right !important;
  }
}
header {
  margin-bottom: 60px;
}
header section.header .logo {
  max-height: 140px;
}

header > .navigation {
  background-color: #0f70b7;
}
header > .navigation.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0px 4px 15px 0px #1d1d1b;
}
header > .navigation a {
  font-weight: 100;
}
header > .navigation nav > ul {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
}
header > .navigation nav > ul > li {
  position: relative;
}
header > .navigation nav > ul > li > a {
  padding: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header > .navigation nav > ul > li > a.has-subnav i {
  display: none;
}
@media screen and (max-width: 991px) {
  header > .navigation nav > ul > li > a.has-subnav i {
    display: block;
  }
}
header > .navigation nav > ul > li:hover > ul.dropdown {
  opacity: 1;
  top: 100%;
  pointer-events: auto;
}
header > .navigation nav > ul > li > ul.dropdown {
  display: none;
}
@media screen and (min-width: 992px) {
  header > .navigation nav > ul > li > ul.dropdown {
    display: block;
    position: absolute;
    background-color: #0f70b7;
    opacity: 0;
    top: 50%;
    pointer-events: none;
    left: 0;
    white-space: nowrap;
    transition: top 0.2s, opacity 0.2s;
    z-index: 9999;
  }
}
header > .navigation nav > ul > li > ul.dropdown.open-subnav {
  display: block;
  border: none;
}
header > .navigation nav > ul > li > ul.dropdown > li > a {
  display: block;
  padding: 4px 10px;
}

header > .navigation a,
footer a {
  color: #ffffff;
  transition: color 0.5s;
}
header > .navigation a.active, header > .navigation a:hover,
footer a.active,
footer a:hover {
  color: #1d1d1b;
}

footer ul.dropdown {
  display: none;
}
footer a.has-subnav i {
  display: none;
}

@media screen and (max-width: 767px) {
  footer nav {
    display: none;
  }
}
header > .navigation {
  z-index: 999;
}
header > .navigation .burger {
  display: flex;
  align-items: center;
  height: 44px;
}
@media screen and (min-width: 992px) {
  header > .navigation .burger {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  header > .navigation .container {
    position: relative;
  }
  header > .navigation nav {
    display: none;
    position: absolute;
    top: 100%;
    left: -50%;
    width: 200%;
    background-color: #ffffff;
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  header > .navigation nav ul {
    flex-direction: column;
    border-top: 1px solid #1d1d1b;
  }
  header > .navigation nav ul li a {
    background-color: #0f70b7;
  }
  header > .navigation nav ul li a.active, header > .navigation nav ul li a:hover {
    color: #ffffff;
    background-color: rgba(15, 112, 183, 0.8352941176);
  }
  header > .navigation nav ul li > ul.dropdown {
    text-align: center;
  }
}

#core section + section {
  padding-top: 60px;
}

.partners .partner-wrapper {
  margin-bottom: 15px;
  padding: 10px;
}
.partners .partner-wrapper .partner {
  width: 100%;
  padding: 15px;
}
.partners .partner-wrapper .partner .partner-content {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.partners .partner-wrapper .partner .partner-content .title {
  color: #0f70b7;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}