.custom-header-footer {
  background-color: #420000;
  color: #fdfdfd;
  margin: 0;
}

.header-margin {
  margin-top: 50px;
}

.text-white {
  color: #fdfdfd;
}

.text-red {
  color: rgb(166.5, 33.75, 39.75);
}

.text-red-logo {
  color: #de2d35;
}

.text-border-black {
  text-shadow: 1px 1px 2px black, -1px 1px 2px black, -1px -1px 0 black, 1px -1px 0 black;
}

.shadow {
  box-shadow: 8px 8px 0 #000000;
}

.shadow-gray {
  box-shadow: 8px 8px 0 #666666;
}

.gradient-red {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, #3b0000 100%);
  background-size: cover;
  background-position: center;
  z-index: 1; /* Overlay-Effekt */
  width: 100%;
  height: 100%;
}

.text-box {
  background-color: #c53f4b;
  color: #fdfdfd;
  padding: 10px 30px;
  margin-bottom: 40px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.panel {
  display: flex;
  justify-content: center;
  align-items: center;
  height: max-content;
  padding-top: max(45px, 8%);
  padding-bottom: max(45px, 8%);
}

.p-gray {
  background-color: #e4e4e4;
}

.btn-fen {
  background-color: #de2d35;
  color: #fdfdfd;
  box-shadow: 8px 8px 0 #000000;
  width: 230px;
  position: relative;
  top: 15px;
  right: 10px;
  padding: 10px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  text-align: center;
  border: none;
}
.btn-fen:hover {
  background-color: rgb(230.25, 97.5, 103.5);
}
.btn-fen:active {
  background-color: rgb(166.5, 33.75, 39.75);
  font-weight: bold;
  position: relative;
  top: 21px;
  right: 2px;
}

.btn-fen-sm {
  background-color: #de2d35;
  color: #fdfdfd;
  box-shadow: 6px 6px 0 #000000;
  width: 120px;
  padding: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  text-align: center;
}
.btn-fen-sm:hover {
  background-color: rgb(230.25, 97.5, 103.5);
}
.btn-fen-sm:active {
  background-color: rgb(166.5, 33.75, 39.75);
  font-weight: bold;
  position: relative;
  top: 4px;
  box-shadow: 8px 8px 0 #000000;
}
.btn-fen-sm.active {
  background-color: rgb(166.5, 33.75, 39.75);
  font-weight: bold;
  position: relative;
  top: 4px;
  box-shadow: 8px 8px 0 #000000;
}

.card-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
  color: #fdfdfd;
  min-height: 200px;
  padding-left: 20px;
  padding-right: 20px;
}

.card-s {
  max-width: 350px;
  height: 350px;
}

.card-m {
  max-width: 500px;
  min-height: 350px;
  height: 45vh;
}

.card-l {
  width: 100%;
  height: 40vw;
  min-height: 350px;
}

.fen-news-card {
  border-radius: 0;
  margin: 5%;
  padding: 2%;
  border: #e4e4e4 1px solid;
}

.fen-news-card-info {
  color: #666666;
  font-style: italic;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-2790px);
  }
  100% {
    transform: translateX(0);
  }
}
.slider {
  background: #fdfdfd;
  height: 100px;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 190s linear infinite;
  display: flex;
  width: 3282px;
}
.slider .slide {
  height: 100px;
  width: fit-content;
  margin: 0 40px;
}

.logo {
  width: auto;
  height: 90px;
  position: relative;
  top: 25px;
  right: 10px;
}

.logo-s {
  width: auto;
  height: min(90px, 15vw);
  position: relative;
  top: 15px;
}

.fen-dropdown {
  background-color: #de2d35;
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
  border-radius: 0;
  border: 0;
}

.fen-dropdown li a {
  color: black;
  border-radius: 0;
  text-decoration: none;
  display: block;
}
.fen-dropdown li a.active {
  background-color: rgb(166.5, 33.75, 39.75);
  font-weight: bold;
}
.fen-dropdown li a:active {
  background-color: rgb(166.5, 33.75, 39.75);
  font-weight: bold;
}
.fen-dropdown li a:hover {
  background-color: rgb(230.25, 97.5, 103.5);
}

.fen-select {
  background-color: #de2d35;
  color: #fdfdfd;
  box-shadow: 6px 6px 0 #000000;
  width: min-content;
  padding: 8px;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  text-align: center;
  border: 0;
}
.fen-select:active {
  background-color: rgb(166.5, 33.75, 39.75);
  font-weight: bold;
}
.fen-select:hover {
  background-color: rgb(230.25, 97.5, 103.5);
}

.placeholder {
  cursor: default;
  background-color: #fdfdfd;
}

body {
  background-color: #fdfdfd;
  color: #420000;
  scrollbar-width: auto;
  scrollbar-color: #420000 #e4e4e4;
  position: relative;
}

.container {
  padding: 0 !important;
}

h1 {
  color: #86151a;
  font-size: xxx-large;
  margin-bottom: 5px;
}

h2 {
  color: #86151a;
  font-size: xx-large;
  margin-bottom: 5px;
}

h3 {
  color: #86151a;
  font-size: x-large;
  margin-bottom: 5px;
}

@supports not selector(::-webkit-scrollbar) {
  html {
    scrollbar-width: auto;
    scrollbar-color: #420000 #e4e4e4;
  }
}
html::-webkit-scrollbar {
  width: 0.5rem;
}

html::-webkit-scrollbar-thumb {
  background-color: #420000;
  border-radius: 0.7rem;
}

html::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 0.7rem;
}

.jost-carat {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

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