html {
  width: 100vw;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: #002365;
  background: linear-gradient(0deg, #001d4f 0%, rgb(0, 93, 195) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: "Alegreya Sans";
  font-size: 1.5rem;
  font-weight: 340;
  color: rgb(255, 255, 255);
}
body .spacer {
  height: 20vh;
}
body h1, body h2, body h3 {
  font-family: "Carter One";
  font-size: 3rem;
  color: white;
}
body a {
  color: white;
  text-decoration: underline;
}
body a:hover {
  font-weight: bold;
}
body h1 {
  font-size: 3rem;
  font-weight: 100;
}
body h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
body header {
  display: none;
  background-color: rgb(255, 255, 255);
  border: 1px solid white;
  border-top: none;
  -webkit-backdrop-filter: blur(7rem);
          backdrop-filter: blur(7rem);
  border-bottom-left-radius: 3rem;
  -webkit-backdrop-filter: blur(3rem);
          backdrop-filter: blur(3rem);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 8vh;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  z-index: 1000;
}
body header .nav ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-right: 2rem;
  font-size: 1.5rem;
}
body header .nav ul li a {
  color: #002365;
  text-decoration: none;
  font-family: "Carter One";
}
body header .nav ul li a.rex-current {
  text-decoration: underline;
}
body header .nav ul li a:hover {
  font-weight: unset;
  text-decoration: underline;
}
body header .logo {
  max-height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
body header .logo img {
  max-height: 7rem;
  height: 4rem;
  margin-left: 2rem;
}
body main section, body main .section {
  width: 100vw;
  min-height: 50vh;
  margin: 0;
  padding: 0;
}
body main section .wrapper, body main .section .wrapper {
  width: 90%;
  max-width: 1200px;
  position: relative;
  padding-top: 20vh;
  margin: auto;
}
body main section .wrapper .bild-grid, body main .section .wrapper .bild-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 20vh;
}
body main section .wrapper .bild-grid .bild img, body main .section .wrapper .bild-grid .bild img {
  max-width: 100%;
  max-height: 30vh;
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main section .wrapper .mitglied-grid, body main .section .wrapper .mitglied-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  row-gap: 10rem;
  padding-bottom: 20vh;
}
body main section .wrapper .mitglied-grid .mitglied, body main .section .wrapper .mitglied-grid .mitglied {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
body main section .wrapper .mitglied-grid .mitglied.detail, body main .section .wrapper .mitglied-grid .mitglied.detail {
  flex-direction: row;
}
body main section .wrapper .mitglied-grid .mitglied.detailrechts, body main .section .wrapper .mitglied-grid .mitglied.detailrechts {
  flex-direction: row-reverse;
  text-align: right;
}
body main section .wrapper .mitglied-grid .mitglied img, body main .section .wrapper .mitglied-grid .mitglied img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main section .wrapper .mitglied-grid .mitglied .placeholder, body main .section .wrapper .mitglied-grid .mitglied .placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: clip;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main section .wrapper .mitglied-grid .mitglied .placeholder i, body main .section .wrapper .mitglied-grid .mitglied .placeholder i {
  font-size: 200px;
}
body main section .wrapper .mitglied-grid .mitglied .info, body main .section .wrapper .mitglied-grid .mitglied .info {
  display: flex;
  flex-direction: column;
}
body main section .wrapper .mitglied-grid .mitglied .info b, body main section .wrapper .mitglied-grid .mitglied .info strong, body main .section .wrapper .mitglied-grid .mitglied .info b, body main .section .wrapper .mitglied-grid .mitglied .info strong {
  color: #FFE289;
  font-style: italic;
}
body main section .wrapper .mitglied-grid .mitglied .info .desc, body main .section .wrapper .mitglied-grid .mitglied .info .desc {
  font-size: 2rem;
  font-family: "Carter One";
}
body main section .wrapper .downloadgrid, body main .section .wrapper .downloadgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
body main section .wrapper .downloadgrid .pdf, body main .section .wrapper .downloadgrid .pdf {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
body main section .wrapper .downloadgrid .pdf i, body main .section .wrapper .downloadgrid .pdf i {
  font-size: 5rem;
}
body main section .wrapper .downloadgrid .pdf div, body main .section .wrapper .downloadgrid .pdf div {
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  max-width: calc(100% - 6rem);
}
body main section .wrapper .downloadgrid .pdf div .name, body main .section .wrapper .downloadgrid .pdf div .name {
  font-size: 1.5rem;
  font-family: "Carter One";
}
body main section .wrapper .downloadgrid .pdf div .download, body main .section .wrapper .downloadgrid .pdf div .download {
  color: #FFE289;
}
body main section.fullscreen, body main .section.fullscreen {
  width: 100vw;
  min-height: 50vh;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
body main section.fullscreen.catcher .wrap, body main .section.fullscreen.catcher .wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
body main section.fullscreen.catcher .wrap .bubbles, body main .section.fullscreen.catcher .wrap .bubbles {
  bottom: 30%;
}
body main section.fullscreen.catcher h2, body main .section.fullscreen.catcher h2 {
  font-size: 5rem;
}
body main section.fullscreen.catcher .catch-button, body main .section.fullscreen.catcher .catch-button {
  font-size: 3rem;
  padding: 2rem;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(3rem);
          backdrop-filter: blur(3rem);
  color: #002365;
  border-radius: 3rem;
  font-weight: bold;
}
body main section.fullscreen.catcher .catch-button:hover, body main .section.fullscreen.catcher .catch-button:hover {
  opacity: 0.7;
  font-weight: bold;
}
body main section.fullscreen.catcher .mail, body main .section.fullscreen.catcher .mail {
  font-size: 3rem;
}
body main section.fullscreen.catcher a, body main .section.fullscreen.catcher a {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
body main section.fullscreen.catcher a:hover, body main .section.fullscreen.catcher a:hover {
  font-weight: unset;
  opacity: 0.8;
}
body main section.fullscreen.news, body main .section.fullscreen.news {
  background-image: url("/assets/img/fish.png");
  background-repeat: no-repeat;
  background-origin: border-box;
  background-position: -50% bottom;
  background-size: 20%;
  animation: fish 30s linear infinite;
}
body main section.fullscreen.news .fullwidth, body main .section.fullscreen.news .fullwidth {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}
body main section.fullscreen.news .fullwidth h2, body main .section.fullscreen.news .fullwidth h2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem;
  font-size: 3rem;
}
body main section.fullscreen.news .fullwidth .news-roll, body main .section.fullscreen.news .fullwidth .news-roll {
  display: flex;
  overflow-x: auto;
  gap: 3rem;
  margin-bottom: 20vh;
  padding: 1.5rem;
}
body main section.fullscreen.news .fullwidth .news-roll .element, body main .section.fullscreen.news .fullwidth .news-roll .element {
  width: 20rem;
  min-width: 20rem;
  margin: 0 0;
  padding: 1rem;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #002365;
  justify-content: flex-start;
}
body main section.fullscreen.news .fullwidth .news-roll .element img, body main .section.fullscreen.news .fullwidth .news-roll .element img {
  width: 100%;
  height: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
body main section.fullscreen.news .fullwidth .news-roll .element .desc, body main .section.fullscreen.news .fullwidth .news-roll .element .desc {
  color: #002365;
  font-family: "Carter One";
}
body main section.fullscreen.news .fullwidth .news-roll .element .text, body main .section.fullscreen.news .fullwidth .news-roll .element .text {
  color: #002365;
}
body main section.fullscreen .wrap, body main .section.fullscreen .wrap {
  width: 90%;
  max-width: 1200px;
  position: relative;
  padding-top: 10vh;
  margin: auto;
}
body main section.fullscreen .wrap .heading, body main .section.fullscreen .wrap .heading {
  width: 100%;
  text-align: left;
  padding-bottom: 3rem;
}
body main section.fullscreen .wrap .heading h2, body main .section.fullscreen .wrap .heading h2 {
  font-size: 3rem;
}
body main section.fullscreen .wrap .text, body main .section.fullscreen .wrap .text {
  margin-left: 0;
  width: 70%;
  margin-bottom: 20vh;
}
body main section.fullscreen .wrap .bubbles, body main .section.fullscreen .wrap .bubbles {
  position: absolute;
  bottom: -35%;
  right: 4%;
  width: 24%;
}
body main section.fullscreen .wrap .bubbles img, body main .section.fullscreen .wrap .bubbles img {
  max-width: 100%;
}
body main section.fullscreen .wrap.tnb, body main .section.fullscreen .wrap.tnb {
  display: flex;
  gap: 3rem;
  padding: 1rem;
  margin: 7rem auto 0rem;
  border-radius: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
}
body main section.fullscreen .wrap.tnb .text, body main .section.fullscreen .wrap.tnb .text {
  margin: 0;
}
body main section.fullscreen .wrap.tnb .img-rect, body main .section.fullscreen .wrap.tnb .img-rect {
  max-width: 35%;
}
body main section.fullscreen .wrap.tnb .img-rect img, body main .section.fullscreen .wrap.tnb .img-rect img {
  width: 100%;
  border-radius: 3rem;
}
body main section.hero, body main .section.hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
body main section.hero .smooth-border, body main .section.hero .smooth-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 50px;
  background: var(--parma);
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, rgb(5, 75, 88) 100%);
  z-index: 10;
}
body main section.hero .name img, body main .section.hero .name img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
body main section.hero .widget, body main .section.hero .widget {
  position: absolute;
  border-radius: 3rem;
  padding: 2rem;
  z-index: 1;
  bottom: 20vh;
  left: 10vw;
  width: 30vw;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(3rem);
          backdrop-filter: blur(3rem);
}
body main section.hero .widget h1, body main section.hero .widget h2, body main section.hero .widget h3, body main .section.hero .widget h1, body main .section.hero .widget h2, body main .section.hero .widget h3 {
  color: #002365;
}
body main section.hero .widget .sub, body main .section.hero .widget .sub {
  text-align: center;
}
body .footer-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  z-index: -1;
}
body .footer-bg img {
  width: 100%;
  opacity: 0.3;
}
body .footer-bg img {
  max-height: 100%;
}
body footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 10;
  background-color: rgb(255, 255, 255);
  border: none;
  border-top-left-radius: 3rem;
  -webkit-backdrop-filter: blur(3rem);
          backdrop-filter: blur(3rem);
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 8vh;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
body footer .links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
  font-size: 1.25rem;
}
body footer a {
  color: #002365;
  text-decoration: none;
  font-family: "Carter One";
}
body footer a:hover {
  font-weight: unset;
  text-decoration: underline;
}
body footer .company {
  height: 100%;
  display: flex;
}
body footer .company .logo {
  max-height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
body footer .company .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 7vh;
  margin-right: 2rem;
}
body .buublewrapper {
  height: 100%;
  width: 100vw;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
body .buublewrapper div {
  height: 60px;
  width: 60px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  position: absolute;
  top: 10%;
  left: 10%;
  animation: 4s linear infinite;
}
body .buublewrapper div .dot {
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 20%;
  right: 20%;
}
body .buublewrapper div:nth-child(1) {
  top: 20%;
  left: 20%;
  animation: animate 8s linear infinite;
}
body .buublewrapper div:nth-child(2) {
  top: 60%;
  left: 80%;
  animation: animate 10s linear infinite;
}
body .buublewrapper div:nth-child(3) {
  top: 40%;
  left: 40%;
  animation: animate 3s linear infinite;
}
body .buublewrapper div:nth-child(4) {
  top: 66%;
  left: 30%;
  animation: animate 7s linear infinite;
}
body .buublewrapper div:nth-child(5) {
  top: 90%;
  left: 10%;
  animation: animate 9s linear infinite;
}
body .buublewrapper div:nth-child(6) {
  top: 30%;
  left: 60%;
  animation: animate 5s linear infinite;
}
body .buublewrapper div:nth-child(7) {
  top: 70%;
  left: 20%;
  animation: animate 8s linear infinite;
}
body .buublewrapper div:nth-child(8) {
  top: 75%;
  left: 60%;
  animation: animate 10s linear infinite;
}
body .buublewrapper div:nth-child(9) {
  top: 50%;
  left: 50%;
  animation: animate 6s linear infinite;
}
body .buublewrapper div:nth-child(10) {
  top: 45%;
  left: 20%;
  animation: animate 10s linear infinite;
}
body .buublewrapper div:nth-child(11) {
  top: 10%;
  left: 90%;
  animation: animate 9s linear infinite;
}
body .buublewrapper div:nth-child(12) {
  top: 20%;
  left: 70%;
  animation: animate 7s linear infinite;
}
body .buublewrapper div:nth-child(13) {
  top: 20%;
  left: 20%;
  animation: animate 8s linear infinite;
}
body .buublewrapper div:nth-child(14) {
  top: 60%;
  left: 5%;
  animation: animate 6s linear infinite;
}
body .buublewrapper div:nth-child(15) {
  top: 90%;
  left: 80%;
  animation: animate 9s linear infinite;
}
@keyframes animate {
  0% {
    transform: scale(0) translateY(0) rotate(70deg);
  }
  100% {
    transform: scale(1.3) translateY(-100px) rotate(360deg);
  }
}
body .wrapper-parallax {
  display: flex;
  width: 100vw;
  height: 100vh;
  min-height: -moz-min-content;
  min-height: min-content;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 5vh;
}
body .wrapper-parallax .over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
body .wrapper-parallax .over .box {
  position: absolute;
  bottom: 10vh;
  left: 5vw;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgb(255, 255, 255);
  color: #002365;
  -webkit-backdrop-filter: blur(3rem);
          backdrop-filter: blur(3rem);
  border-radius: 3rem;
  padding: 2rem;
  width: 40vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
body .wrapper-parallax .over .box .logo {
  position: relative;
}
body .wrapper-parallax .over .box .logo img {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
body .wrapper-parallax .over .box .text {
  color: #002365;
}
body .wrapper-parallax .over .box .text h1, body .wrapper-parallax .over .box .text h2 {
  color: #002365;
}
body .wrapper-parallax img {
  width: 110vw;
  height: 110vh;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
body .wrapper-parallax .smooth-border {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100vw;
  height: 50px;
  background: var(--parma);
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, var(--parma) 100%);
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  z-index: 10;
}
body .wrapper-parallax layer {
  width: 110vw;
  height: 110vh;
  display: flex;
  position: absolute;
  top: -5vh;
  left: -5vw;
  transition: all 200ms ease;
}
body .wrapper-parallax .bg {
  z-index: 1;
}
body .wrapper-parallax .bg img {
  width: 105vw;
  height: 105vh;
}
body .wrapper-parallax .ly-1 {
  z-index: 3;
}
body .wrapper-parallax .ly-2 {
  z-index: 4;
}
body .wrapper-parallax .ly-3 {
  z-index: 5;
}
body main section.fullscreen.news .fullwidth .news-roll {
  overflow-y: hidden;
  scrollbar-width: thin; /* oder auto */
  scrollbar-color: rgba(0, 0, 0, 0) white; /* thumb | track */
  padding: 1rem;
  color: white;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #666 #222;
}
body main section.fullscreen.news .fullwidth .news-roll ::-webkit-scrollbar {
  width: 8px;
}
body main section.fullscreen.news .fullwidth .news-roll ::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
body main section.fullscreen.news .fullwidth .news-roll ::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 5px;
}
body main section.fullscreen.news .fullwidth .news-roll a.element {
  text-decoration: none;
}
body main section.fullscreen.news .fullwidth .news-roll a.element:hover {
  font-weight: unset;
}
body .nav-responsive {
  display: none;
  transform: translateX(-110%);
  transition: 400ms ease-in-out;
}
body .nav-responsive.active {
  display: flex;
}
body .nav-resp-tr {
  display: none;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  body main section.fullscreen.catcher .catch-button {
    font-size: 2rem;
    margin: auto;
  }
  body main section.fullscreen.catcher .mail {
    font-size: 2rem;
    margin: auto;
  }
  body header .logo img {
    height: 7vh;
  }
  body .nav-resp-tr {
    display: flex;
    color: #002365;
    text-decoration: none;
    margin: 2rem;
    font-size: 2rem;
  }
  body .nav {
    display: none;
  }
  body .nav-responsive {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(110%);
    transition: 400ms ease-in-out;
    display: flex;
    position: fixed;
    width: 100vw;
    height: 92vh;
    border-top-left-radius: 3rem;
    top: 8vh; /* oder passend zu deinem Layout */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(2rem);
            backdrop-filter: blur(2rem);
    z-index: 999;
  }
  body .nav-responsive.active {
    transform: translateX(0%);
    transition: 400ms ease-in-out;
    display: flex;
  }
  body .nav-responsive ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-size: 2rem;
    text-align: center;
  }
  body .nav-responsive ul li a {
    color: #002365;
  }
  body .wrapper-parallax .over .box {
    left: 3vw;
    padding: 2vw;
    width: 90vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  body .wrapper-parallax .over .box .text {
    text-align: center;
  }
  body .wrapper-parallax .over .box .logo {
    max-width: 100%;
    max-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .wrapper-parallax .over .box .logo img {
    max-width: 80%;
    max-height: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
  }
  body main section.fullscreen .wrap .heading {
    text-align: left;
    padding-bottom: 0;
  }
  body main section.fullscreen .wrap .heading h2 {
    font-size: 2rem;
  }
  body main section.fullscreen .wrap {
    width: 95%;
  }
  body main section.fullscreen .wrap .text {
    width: 100%;
  }
  body main section.fullscreen.news .fullwidth .news-roll .element {
    padding: 0.5rem;
    border-radius: 1.5rem;
  }
  body main section.fullscreen .wrap.tnb {
    flex-direction: column !important;
    width: 90vw;
    border-radius: 2rem;
  }
  body main section.fullscreen .wrap.tnb .img-rect {
    max-width: 100%;
  }
  body main section.fullscreen .wrap.tnb .img-rect img {
    width: 100%;
    border-radius: 1rem;
  }
  html {
    overflow-x: hidden;
  }
  section.fullscreen.catcher .catch-button {
    text-align: center;
  }
  section.fullscreen.catcher .mail {
    text-align: center;
  }
  body main .section .wrapper .mitglied-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  body main .section .wrapper .downloadgrid {
    display: flex;
    gap: 5rem;
    flex-direction: column;
  }
  body {
    word-wrap: break-word !important;
  }
  body main .section .wrapper .mitglied-grid .mitglied .info .desc {
    font-size: 1.5rem;
  }
  body main section.fullscreen.catcher h2 {
    font-size: 3rem;
    text-align: center;
  }
}
@keyframes fish {
  0% {
    background-position: -50% bottom;
  }
  100% {
    background-position: 150% top;
  }
}/*# sourceMappingURL=main.css.map */