html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #191c3f rgb(242, 245, 247);
}
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-track {
  background: rgb(242, 245, 247);
}
/* scrollbar*/
body::-webkit-scrollbar-thumb {
  background-color: #191c3f;
  border-radius: 6px;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  margin: 0;
}
* {
  box-sizing: border-box;
}
p {
  color: #000;
}
a,
li {
  text-decoration: none;
  color: #191c3f;
}
h2 {
  color: #3c4d92;
  font-size: 1.2em;
}
header {
  width: 100%;
}
header div {
  display: flex;
  align-items: center;
  background: #5b6faa;
  height: 6vw;
}
.logo {
  width: 30vw;
  margin-left: 5vw;
}
nav {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
}
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}
nav ul li {
  font-size: 10px;
}
nav ul li:after {
  content: "\203A";
  padding: 0 10px;
  position: relative;
  top: 1px;
  font-size: 15px;
}
nav ul li:last-child:after {
  content: "";
}
nav ul li a {
  font-size: 10px;
}
section {
  width: 100%;
  background: rgb(231, 231, 236);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.inhalt {
  width: 50vw;
  height: calc(100vh - 11vw - 30px);
  display: flex;
  align-items: center;
}
.inhalt h1 {
  margin-top: 0;
  font-weight: lighter;
  color: #191c3f;
}
.einleitung div {
  width: 60%;
}
.uebersicht {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 20px 0 12vh;
}
.uebersicht div {
  width: 25%;
  margin: 2vh 3vw;
}
.uebersicht img {
  width: 80%;
  height: auto;
}
.uebersicht p {
  font-size: 0.9em;
  line-height: 1.2;
}
footer {
  width: 100%;
  height: 5vw;
  position: fixed;
  bottom: 0;
  background: #3c4d92;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
footer * {
  color: #191c3f;
}
footer h6 {
  margin: 0 3vw 2vh 0;
}
/*slider*/
.col_100 {
  width: 100%;
  height: 95%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.splide__slide img {
  max-width: 100%;
  max-height: 100%;
  min-width: 40%;
}
.gallery {
  width: 100%;
  height: 90%;
}
.gallery .splide__list,
.gallery .splide__list li,
.gallery .splide__track {
  max-height: 100%;
  height: 100%;
}
.gallery .splide__arrow {
  top: 47%;
  background: transparent;
}
.gallery .splide__arrow--prev {
  left: -5vw;
}
.gallery .splide__arrow--next {
  right: -5vw;
}
.gallery h4,
.gallery p {
  margin: 5px 0 5px 0;
  color: #191c3f;
  position: absolute;
  bottom: -5%;
  left: 0;
}
.gallery .splide__arrow svg {
  width: 40px;
  height: 40px;
}
.gallery .splide__pagination__page {
  background: #5b6faa;
  margin: 3px 7px;
}
.gallery .splide__pagination__page.is-active {
  background: #191c3f;
}
@media only screen and (max-width: 1580px) {
  .uebersicht {
    justify-content: space-around;
  }
  .uebersicht div {
    width: 35%;
  }
}
@media only screen and (max-width: 1280px) {
  .uebersicht p {
    font-size: 0.8em;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 926px) and (orientation: landscape) {
  .inhalt {
    width: 60vw;
    padding-bottom: 1.2em;
  }
  .col_100 {
    height: 90%;
  }
  .einleitung div {
    width: 80%;
  }
  .gallery p {
    bottom: -10%;
  }
  .gallery .splide__pagination {
    bottom: -1em;
    display: none;
  }
}
@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .inhalt {
    width: 85vw;
  }
  .gallery .splide__pagination {
    bottom: -1em;
  }
}
@media only screen and (max-width: 670px) {
  header div,
  footer {
    height: 8vh;
  }
  .logo {
    width: 60vw;
  }
  nav ul {
    padding: 0 0 0 10px;
  }
  .uebersicht div {
    width: 70%;
    margin-top: 50px;
  }
  .gallery .splide__pagination {
    display: none;
  }
}
