@charset "UTF-8";
@font-face {
  font-family: "MeineSchriftart";
  src: url("fonts/EurostileExtendedBlack.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: "MeineSchriftart", sans-serif;
  background-color: rgb(4, 28, 44);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.middle {
  background-color: rgb(4, 28, 44);
}

.logo {
  text-decoration: none;
}

.header {
  height: 250px;
  width: 100%;
  background-image: url("assets/background/header_background.svg");
}

.headerindex {
  height: 350px;
  width: 100%;
  background-image: url("assets/background/header_background.svg");
}

.navigation {
  height: 100px;
  background: rgb(4, 28, 44);
  position: sticky;
  top: 0;
  z-index: 3000;
  width: 100%;
}

.brand {
  position: absolute;
  float: left;
  height: 100px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a,
.brand a:visited {
  color: #c6dae7;
  text-decoration: none;
}

.nav-container {
  max-width: 100vw;
  margin: 0 auto;
}

nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 20px;
  line-height: 100px;
  background: rgb(4, 28, 44);
  color: #c6dae7;
  text-decoration: none;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  background: #c6dae7;
  color: rgb(4, 28, 44);
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}
nav ul li ul li {
  width: 101px;
}

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
}
.nav-dropdown a {
  width: 107px;
}

.nav-list li .nav-dropdown a {
  width: 61px;
  white-space: normal;
  line-height: 3;
  display: block;
  text-align: center;
}
.nav-list li .nav-dropdown a:nth-child(2) {
  line-height: 1;
}
.nav-list li .nav-dropdown li:nth-child(2) a {
  line-height: 3;
}
.nav-list li:nth-child(2) .nav-dropdown a {
  width: 67px;
  line-height: 3;
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  height: 100px;
  width: 100px;
}

@media only screen and (max-width: 798px) {
  .brand {
    z-index: 2001;
    position: fixed;
  }
  .nav-mobile {
    display: block;
    position: fixed;
    top: 20px;
  }
  nav {
    width: 100%;
    padding: 90px 0 15px;
    border-radius: 3px !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 2000;
    background: rgb(4, 28, 44);
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
    background-color: #041c2c;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
  nav li {
    background-color: #041c2c;
  }
  nav li .hero-btnnav {
    background-color: #00b5e2;
    margin-top: 0px !important;
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  nav li:last-child {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .nav-dropdown {
    position: static;
  }
  .nav-list li .nav-dropdown a {
    line-height: 20px !important;
  }
  .nav-list li:nth-child(2) .nav-dropdown li:nth-child(2) a {
    line-height: 1 !important;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 3px;
  height: 5px;
  width: 35px;
  background: #c6dae7;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}
#nav-toggle .nav-list li .nav-dropdown a {
  line-height: 20px;
}

article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}

.hero-btnnav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px; /* gewünschte Button-Höhe */
  min-width: 120px; /* optional */
  padding: 0 15px; /* optional */
  text-decoration: none;
  background: #00b5e2 !important;
  color: #c6dae7 !important;
  margin-top: 13%;
  font-size: 16px;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 35px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s, background 0.8s, color 0.8s;
  position: relative;
  overflow: hidden;
}

.hero-btnnav::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(4, 28, 44, 0.395), transparent);
  top: -100%;
  left: -100%;
  transition: all 0.5s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 3px;
}

.hero-btnnav:hover,
.hero-btnnav:focus {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 5px 5px 0 rgba(198, 218, 231, 0.25);
  background: rgb(4, 28, 44) !important;
  color: #c6dae7 !important;
  border: 1px solid #c6dae7;
}

.hero-btnnav:hover::before,
.hero-btnnav:focus::before {
  top: 100%;
  left: 100%;
}

/* Inhalt immer über dem Effekt */
.hero-btnnav > * {
  position: flex;
  z-index: 2;
}

.willkommenimg {
  height: 250px;
  display: block;
  margin: auto;
}

.willkommenimgindex {
  height: 350px;
  display: block;
  margin: auto;
}

a .hero-btn {
  color: #00b5e2;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  background: #00b5e2;
  color: #c6dae7;
  padding: 8px 15px;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.8s ease;
  color: rgb(4, 28, 44);
  border: 0;
}
.hero-btn:hover {
  background: rgb(4, 28, 44);
  color: #c6dae7;
  transition: 0.5s ease;
  border: 1px solid #c6dae7;
}

.hero-jetzt {
  display: none;
}

.socialmedia {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}
.socialmedia .fa-brands {
  color: #041c2c;
}
.socialmedia ul {
  position: relative;
  display: flex;
  transform: rotate(-25deg) skew(25deg);
  transform-style: preserve-3d;
}
.socialmedia ul li {
  position: relative;
  list-style: none;
  width: 80px;
  height: 80px;
  margin: 0px 20px;
}
.socialmedia ul li:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -5px;
  width: 100%;
  height: 10px;
  background: #c6dae7;
  transform: skewX(-41deg);
}
.socialmedia ul li:after {
  content: "";
  position: absolute;
  top: 5px;
  left: -9px;
  width: 9px;
  height: 100%;
  background: #c6dae7;
  transform: skewY(-49deg);
}
.socialmedia ul li span {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex !important;
  background: #c6dae7;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px !important;
  transition: 1.5s ease-out;
}
.socialmedia ul li:hover span {
  z-index: 1000;
  transition: 0.3s;
  color: #fff;
}
.socialmedia ul li:hover span:nth-child(5) {
  transform: translate(40px, -40px);
  opacity: 1;
}
.socialmedia ul li:hover span:nth-child(4) {
  transform: translate(30px, -30px);
  opacity: 0.8;
}
.socialmedia ul li:hover span:nth-child(3) {
  transform: translate(20px, -20px);
  opacity: 0.6;
}
.socialmedia ul li:hover span:nth-child(2) {
  transform: translate(10px, -10px);
  opacity: 0.4;
}
.socialmedia ul li:hover span:nth-child(1) {
  transform: translate(0px, 0px);
  opacity: 0.2;
}
.socialmedia ul li:nth-child(1):hover span {
  background: #bd00a6 !important;
}
.socialmedia ul li:nth-child(2):hover span {
  background: #25d366 !important;
}
.socialmedia ul li:nth-child(3):hover span {
  background: #08f7f0 !important;
}
.socialmedia ul li:nth-child(4):hover span {
  background: #080808 !important;
}
@media screen and (max-width: 490px) {
  .socialmedia ul li {
    width: 60px;
    height: 60px;
    margin: 0px 20px;
  }
}

.schriftzug {
  display: block;
  margin: auto;
  height: 150px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  max-width: 2800px;
}
.gallery .picture-container {
  max-width: 400px;
  height: 300px;
  overflow: hidden;
  display: inline-block;
  margin: 10px;
  justify-content: center;
}
.gallery .picture-container .picture {
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  display: block;
  transition: all 0.5s ease;
}
.gallery .picture-container .picture:hover {
  transform: scale(1.1);
}

.sponsorslider {
  margin-top: 20px;
}
.sponsorslider h1 {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.sponsorslider .slick-slide {
  margin: 0px 10px;
}
.sponsorslider .slick-slide img {
  width: 100%;
  margin: 10px 0 10px 0;
}
.sponsorslider .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.sponsorslider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-image: url("assets/backgroudn_night.jpg");
}
.sponsorslider .slick-list:focus {
  outline: none;
}
.sponsorslider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.sponsorslider .slick-slider .slick-track,
.sponsorslider .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.sponsorslider .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  background-image: url("assets/background.jpg");
  width: auto;
  display: flex !important;
  align-items: center !important;
}
.sponsorslider .slick-track:before,
.sponsorslider .slick-track:after {
  display: table;
  content: "";
}
.sponsorslider .slick-track:after {
  clear: both;
}
.sponsorslider .slick-loading .slick-track {
  visibility: hidden;
}
.sponsorslider .slick-slide {
  display: block;
  float: left;
  height: 100%;
  min-height: 1px;
  align-items: center;
}
.sponsorslider [dir=rtl] .slick-slide {
  float: right;
}
.sponsorslider .slick-slide img {
  display: block;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.sponsorslider .slick-slide.slick-loading img {
  display: none;
}
.sponsorslider .slick-slide.dragging img {
  pointer-events: none;
}
.sponsorslider .slick-initialized .slick-slide {
  display: block;
}
.sponsorslider .slick-loading .slick-slide {
  visibility: hidden;
}
.sponsorslider .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.sponsorslider .slick-arrow.slick-hidden {
  display: none;
}

.kontaktieren {
  margin: 0 100px 50px auto;
  max-width: 90%;
  max-height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("assets/background/konatkaufnahme.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 3px;
  text-align: center;
  padding: 100px 0;
}

.footer {
  position: relative;
  width: 100%;
  text-align: center;
  padding-block: 40px 10px;
  color: #041c2c;
  background-image: url("assets/background/footer.svg");
  margin-top: auto;
}
.footer img {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  width: auto;
  background: transparent;
  z-index: 2;
}
.footer ul li {
  list-style: none;
  display: inline-block;
  padding: 8px;
  position: relative;
}
.footer ul li:hover {
  cursor: pointer;
}

.hero-btn {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.hero-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(4, 28, 44, 0.395), transparent);
  top: -100%;
  left: -100%;
  transition: all 0.5s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 3px;
}
.hero-btn:hover, .hero-btn:focus {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 5px 5px 0 rgba(198, 218, 231, 0.25);
}
.hero-btn:hover::before, .hero-btn:focus::before {
  top: 100%;
  left: 100%;
}
.hero-btn > * {
  position: relative;
  z-index: 2;
}

#loadMoreBtn {
  display: block;
  margin: 20px auto;
  justify-content: center;
}

.picture-container {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.picture-container.visible {
  opacity: 1;
  transform: scale(1);
}

.kader {
  width: 100%;
  padding: 20px 0 50px 0;
}

.tabelle {
  max-width: 50%;
  display: block;
  margin: auto;
  padding: 50px 0 50px 0;
}

.vorstand-section {
  text-align: center;
  padding: 10px 0;
}
.vorstand-section .vorstand-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  width: min(1200px, 95vw);
  margin: 0 auto;
}
.vorstand-section .vorstand-cards .vorstand-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  width: 260px;
  min-width: 220px;
  max-width: 100%;
  height: 370px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.vorstand-section .vorstand-cards .vorstand-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(4, 28, 44, 0.395), transparent);
  top: -100%;
  left: -100%;
  transition: all 0.5s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 3px;
}
.vorstand-section .vorstand-cards .vorstand-card:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 0 rgba(198, 218, 231, 0.25);
}
.vorstand-section .vorstand-cards .vorstand-card:hover::before {
  top: 100%;
  left: 100%;
}
.vorstand-section .vorstand-cards .vorstand-card .vorstand-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: #c6dae7;
  padding: 2rem 1rem 1.5rem 1rem;
  color: #fff;
  text-align: center;
}
.vorstand-section .vorstand-cards .vorstand-card .vorstand-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgb(4, 28, 44);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.vorstand-section .vorstand-cards .vorstand-card .vorstand-content .funktion {
  color: rgb(4, 28, 44);
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.vorstand-section .vorstand-cards .vorstand-card .vorstand-content .statement {
  color: rgb(4, 28, 44);
  font-size: 0.95rem;
  margin: 0 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.vorstand-section .vorstand-section:first-of-type {
  padding-top: 50px;
}

.vorstand-section:last-of-type {
  padding-bottom: 50px;
}

.vorstand-section .vorstand-cards .vorstand-card:nth-child(1) {
  background-image: url("../assets/vorstandsbilder/devid.jpeg");
}
.vorstand-section .vorstand-cards .vorstand-card:nth-child(2) {
  background-image: url("../assets/vorstandsbilder/philipp.jpeg");
}
.vorstand-section .vorstand-cards .vorstand-card:nth-child(3) {
  background-image: url("../assets/vorstandsbilder/sven.jpeg");
}
.vorstand-section .vorstand-cards .vorstand-card:nth-child(3) {
  background-image: url("../assets/vorstandsbilder/sven.jpeg");
}

.vorstand-section:last-of-type .vorstand-cards .vorstand-card:nth-child(1) {
  background-image: url("../assets/vorstandsbilder/thorsten.jpeg");
}
.vorstand-section:last-of-type .vorstand-cards .vorstand-card:nth-child(2) {
  background-image: url("../assets/vorstandsbilder/david.jpeg");
}

.contact-us {
  display: flex;
  margin: auto;
  padding: 30px;
  justify-content: center;
}
.contact-us .row {
  display: flex;
  justify-content: center;
  width: 70%;
}
@media (max-width: 900px) {
  .contact-us .row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .contact-us .row .colicon {
    align-items: center;
    padding-bottom: 20px;
  }
  .contact-us .row .colcol {
    width: 100%;
  }
}
.contact-us .row .colcol {
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 10px;
  margin-bottom: 30px;
  align-items: center;
  color: #c6dae7;
}
.contact-us .row .colcol div {
  display: flex;
  align-items: center;
}
.contact-us .row .colcol .fa-solid {
  font-size: 28px;
  color: #c6dae7;
  margin-right: 30px;
  margin: 10px;
}
.contact-us .row .colcol form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-us .row .colcol form input,
.contact-us .row .colcol form textarea {
  display: flex;
  width: 94%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #c6dae7;
  border-radius: 3px;
  justify-content: center;
  background-color: transparent;
  color: #c6dae7;
}
.contact-us .row .colcol form label {
  color: #c6dae7;
}
.contact-us .row .colcol form button[type=submit] {
  align-self: center;
  margin-top: 16px;
}

.colicon {
  align-items: center;
  padding-bottom: 100px;
}

.kontaktform {
  width: 90%;
  max-width: 90%;
}

.timeline-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 0;
}
.timeline-section .design {
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-section .timeline {
  width: 80%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.timeline-section .timeline .timeline-component {
  margin: 0px 20px 20px 20px;
}
.timeline-section .timeline .timeline-component.timeline-content {
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 100px;
  background-color: #c6dae7;
  color: rgb(4, 28, 44);
  border-radius: 3px;
  overflow: hidden;
}
.timeline-section .timeline .timeline-component.timeline-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(4, 28, 44, 0.395), transparent);
  top: -100%;
  left: -100%;
  transition: all 0.5s ease;
  z-index: 0;
}
.timeline-section .timeline .timeline-component.timeline-content:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 5px 5px 0 rgba(198, 218, 231, 0.25);
}
.timeline-section .timeline .timeline-component.timeline-content:hover::before {
  top: 100%;
  left: 100%;
}
.timeline-section .timeline .timeline-component.timeline-content > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .timeline-section .timeline {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
  }
  .timeline-section .timeline .timeline-middle {
    position: relative;
    background-color: #c6dae7;
    width: 3px;
    height: 100%;
  }
  .timeline-section .timeline .main-middle {
    opacity: 0;
  }
  .timeline-section .timeline .timeline-circle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #c6dae7;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

#lightbox-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center !important;
  display: none;
}

.lightbox-img {
  width: 1000px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  border-radius: 3px !important;
  background: transparent;
  max-width: 95vw !important;
  max-height: 80vh !important;
  align-items: center !important;
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: #00b5e2;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  z-index: 10001;
  padding: 0 20px;
  transition: color 0.2s;
}

.lightbox-prev {
  left: 20px;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  transform: translateY(-50%);
}

.lightbox-arrow:hover {
  color: #00b5e2;
}

@media (max-width: 1200px) {
  .header {
    height: 70px;
    width: auto;
  }
  .headerindex {
    height: 150px;
    width: auto;
  }
  .willkommenimgindex {
    height: inherit;
    width: auto;
  }
  .willkommenimg {
    height: auto;
    width: 400px;
  }
  .schriftzug {
    display: block;
    height: auto;
    width: 360px;
    text-align: center;
  }
  .kontaktieren {
    margin: auto;
    display: block;
    text-align: center;
    margin-bottom: 50px;
  }
  .row {
    flex-direction: column;
    gap: 10px;
  }
  .hero-btn .desktop-label {
    display: none;
    color: #00b5e2;
  }
  .hero-btn .btn-desktop {
    display: none;
    color: #00b5e2;
  }
  .hero-btn .btn-mobile {
    display: inline;
    color: #00b5e2;
  }
  .tabelle {
    max-width: 100%;
    display: block;
    margin: auto;
    justify-content: center;
    padding: 50px 0 50px 0;
  }
}
.card {
  background: #c6dae7;
  border-radius: 3px;
  transition: all 300ms ease;
  color: rgb(4, 28, 44);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  min-width: 220px;
  height: 100%;
  min-height: 350px;
  aspect-ratio: 3/4;
  box-sizing: border-box;
}
.card .card__img {
  flex: 1 1 auto;
  width: 100%;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px 3px 0 0;
  min-height: 160px;
  max-height: 500px !important;
}
.card .card__desc {
  padding: 1em;
  flex: 0 0 auto;
  background: #fff;
  color: #041c2c;
  border-radius: 0 0 3px 3px;
  font-size: 1em;
}
.card:hover {
  cursor: pointer;
}
.card__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px 32px;
}
.card__cover {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 3px 3px 0 0;
  position: relative;
}
.card__tag {
  background: #dd2020;
  display: inline-block;
  position: absolute;
  bottom: 10px;
  left: 20px;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  color: rgb(4, 28, 44);
  background-color: #00b5e2;
}
.card__body {
  padding: 20px;
}
.card__body .hero-btn {
  display: block;
  margin: 24px auto 0 auto;
  text-align: center;
  color: #c6dae7;
  background-color: #00b5e2;
}
.card__body .hero-btn:hover {
  background-color: #c6dae7;
  color: rgb(4, 28, 44);
  border: 1px solid rgb(4, 28, 44);
  box-shadow: 5px 5px 0 rgba(198, 218, 231, 0.25);
}
.card__title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card__desc {
  margin-bottom: 20px;
  font-size: 15px;
  color: rgb(4, 28, 44);
  line-height: 1.6;
  background-color: #c6dae7 !important;
}

.card__cover--one {
  background-image: url(assets/spielbilder/34.JPG);
}
.card__cover--two {
  background-image: url(assets/blogbilder/elfer.jpg);
}
.card__cover--three {
  background-image: url(assets/blogbilder/comming\ soon\ \(1\).png);
  background-color: rgb(4, 28, 44);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 900px) {
  .card__container {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 0 10px;
  }
  .card__container .card {
    width: 100%;
    max-width: 350px;
  }
}
a {
  display: block;
  color: inherit;
  text-decoration: none;
  position: static;
}

.blog-header-overlay {
  position: absolute;
  bottom: 20px;
  left: 40px;
  background: rgba(4, 28, 44, 0.7);
  color: #c6dae7;
  padding: 12px 24px;
  border-radius: 3px;
}
.blog-header-overlay h1 {
  margin: 0;
  font-size: 2.2rem;
}
.blog-header-overlay span {
  font-size: 1rem;
}
@media (max-width: 600px) {
  .blog-header-overlay {
    left: 10px;
    right: 10px;
    padding: 10px 8px;
  }
  .blog-header-overlay h1 {
    font-size: 1.2rem;
  }
  .blog-header-overlay span {
    font-size: 0.9rem;
  }
}

.headerindex {
  position: relative;
}

.blog-main {
  max-width: 800px;
  margin: 40px auto 40px auto;
  background: #c6dae7;
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(34, 35, 58, 0.15);
  padding: 40px 32px 48px 32px;
  color: rgb(4, 28, 44);
}
@media (max-width: 600px) {
  .blog-main {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.blog-main article h2 {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}
.blog-main article p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.blog-main article blockquote {
  margin: 32px 0;
  padding: 18px 28px;
  background: rgb(4, 28, 44);
  border-left: 5px solid #00b5e2;
  border-radius: 3px;
  color: #c6dae7;
  font-style: italic;
}
.blog-main article .blog-content-img {
  width: 780px;
  height: auto;
  border-radius: 3px;
  margin: 32px 0;
  display: block;
}
@media (max-width: 900px) {
  .blog-main article .blog-content-img {
    max-width: 100%;
    margin: 24px 0;
  }
}
@media (max-width: 600px) {
  .blog-main article .blog-content-img {
    max-width: 100%;
    margin: 16px 0;
    border-radius: 2px;
  }
}
.blog-main article .blog-back-btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.blog-main article ul {
  list-style: none;
}
.blog-main article .hero-btn {
  background-color: #00b5e2;
  color: #c6dae7;
}
.blog-main article .hero-btn:hover {
  background-color: #c6dae7;
  color: rgb(4, 28, 44);
  border: 1px solid rgb(4, 28, 44);
  box-shadow: 5px 5px 0 rgba(198, 218, 231, 0.25);
}

.impressum-main {
  max-width: 800px;
  margin: 40px auto 40px auto;
  background: #c6dae7;
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(34, 35, 58, 0.15);
  padding: 40px 32px 48px 32px;
  color: rgb(4, 28, 44);
}
.impressum-main .impressum-header {
  text-align: center;
  margin-bottom: 32px;
}
.impressum-main .impressum-header h1 {
  font-size: 2.2rem;
  margin: 0;
  color: rgb(4, 28, 44);
}
.impressum-main .impressum-content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  color: rgb(4, 28, 44);
}
.impressum-main .impressum-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: rgb(4, 28, 44);
}
.impressum-main .impressum-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.impressum-main .impressum-content a {
  color: rgb(4, 28, 44);
  text-decoration: underline;
}
.impressum-main .impressum-content a:hover {
  text-decoration: none;
}

@media (max-width: 600px) {
  .impressum-main {
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px 5px 32px 5px;
  }
}

/*# sourceMappingURL=style.css.map */
