html {
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffe7cd;
  position: relative;
}

* {
  font-family: Verdana, sans-serif;
}

.link-own {
  color: #2e5e5c;
}
.link-own:hover {
  color: #478e8b;
}

img {
  border-radius: 10px;
}
.carousel-inner {
  border-radius: 10px !important;
}

/* MENU */
/* Stil Menüleiste */
.navbar {
  z-index: 100000 !important;
}

.left-aligned {
  margin-left: auto;
}

.bg-dark {
  background-color: #284c55 !important;
}

.bg-transparent {
  background-color: rgba(40, 76, 85, 0.5) !important;
  /* background-color: rgba(0, 0, 0, 0.3) !important; */
}

.menu-text {
  color: #ffc670 !important;
  font-size: larger;
}

.navbar-nav .nav-item {
  margin-right: 2rem;
  /* Abstand der Textblöcke */
}

/* Stil Dropdown-Elemente */
.dropdown-menu {
  /* min-width: 250px; */
  background-color: #284c55;
  border-color: #284c55;
  border-radius: 15px;
}

/* Stil Dropdown-Links */
.dropdown-item {
  padding: 10px 20px;
  /* Abstand zwischen Text (erster: Höhe, zweiter: Abstand links) */
  background-color: #284c55;
  color: #fff9ef;
}
.dropdown-item:hover {
  background-color: #396e7b;
  /* Farbe beim Hovern */
  color: #fff9ef;
}
@media only screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* HEADER */
.bg-hero {
  background-color: #ff9037;
}
.header_text {
  color: rgb(255, 231, 205);
  text-shadow: 1px 0px 20px rgba(0, 0, 0, 0.8);
  font-weight: bold;
}
.text-header-50 {
  color: black;
}

/* CALLOUT */
.bd-callout {
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid #e9ecef;
  border-left-width: 0.25rem;
  border-radius: 0.25rem;
}

.bd-callout h4 {
  margin-bottom: 0.25rem;
}

.bd-callout p:last-child {
  margin-bottom: 0;
}

.bd-callout code {
  border-radius: 0.25rem;
}

.bd-callout + .bd-callout {
  margin-top: -0.25rem;
}

.bd-callout-info {
  border-left-color: #5bc0de;
}

.bd-callout-warning {
  border-left-color: #f0ad4e;
}

.bd-callout-danger {
  border-left-color: #d9534f;
}

/* footer */
footer a {
  color: #ffc670;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* sidebar */

.sidebar {
  top: 8rem;
  background-color: #f5dbbf;
  border-radius: 10px;
  z-index: 0;
}

.sidebar-text {
  color: #000000;
}
.sidebar-text.active {
  color: #000000;
  text-shadow: 0.25px 0.25px 1px #000000;
}
.sidebar-text:hover {
  color: #326663;
  text-shadow: 0.25px 0.25px 1px #326663;
}
.sidebar-title {
  text-shadow: 0.25px 0.25px 1px #000000;
}

.sidebar-ref {
  padding: 0.3em;
  margin-top: 1px;
}
.nav {
  clear: both;
}

html {
  scroll-padding-top: 70px;
  /* height of sticky header */
}

.skip {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

/* Display the link on focus. */
.skip:focus {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #888;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.image {
  display: block;
  width: 85%;
  height: 85%;
  margin: auto;
}

.image1 {
  display: block;
  width: 100%;
  height: 95%;
  margin: auto;
}

/* Team Page Cards */

.card__inner {
  width: 100%;
  height: 100%;
  -o-transition: transform 1s;
  -moz-transition: transform 1s;
  -webkit-transition: transform 1s;
  transition: transform 1s;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
}

.card__inner.is-flipped {
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.card__face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0px 3px 18px 3px rgba(0, 0, 0, 0.2);
}

.card__face--front {
  background-image: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__face--back {
  background-color: #ffe7cd;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.image_card-front {
  display: block;
  width: auto;
  height: 400px;
  /* margin: 0 auto 30px; */
  /* border-radius: 50%; */
  background-color: #ffe7cd;
  /* border: 4px solid #fff; */
  object-fit: cover;
}

.card_team {
  height: 400px;
  max-width: 265px;
  perspective: 1000px;
  background-color: #ffe7cd;
  margin: auto;
}

.card__content {
  background-color: #fff7ea;
  width: 100%;
  height: 100%;
  padding: 5px;
}

.card-text {
  hyphens: auto;
  font-size: 15px;
}

.card-title {
  hyphens: none;
  font-size: 20px;
}

/* Overview Style */

.overview {
  /* border: 4px solid #ffe6cc; */
  border-radius: 15px;
  background-color: #f5dbbf;
  padding: 1rem;
}

.mitte {
  text-align: center;
}

/* gestrichelte Trennlinie */

.ho_line_doted {
  width: 95%;
  align-self: center;
  border: dashed 1px #d8cab3;
}

.frise_chro {
  position: sticky;
  height: 130px;
  top: 4.7em;
  width: 100%;
}

.ho_line {
  width: 100%;
  border-top: solid 1px;
  opacity: 0.25;
  margin: 1rem 0;
}

.calendar {
  background: #ff9037;
  height: 50px;
  width: 100%;
  position: relative;
  z-index: 900;
}

.calendar_strip {
  position: absolute;
  width: 1px;
  height: 20px;
  bottom: 0;
  background-color: #52867c;
}

.calendar h3 {
  position: absolute;
  font-size: 70%;
  top: 20%;
  cursor: default;
}

.calendar_img {
  position: absolute;
  flex: 0 0 auto;
  height: 100%;
}

.calendar_img img {
  max-height: 80%;
}

.rond {
  z-index: 50;
  margin-top: -8px;
  background: #284c55;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #0f0;
  position: relative;
  cursor: grab;
}

.rond h2 {
  position: absolute;
  font-size: 100%;
  text-align: center;
  top: -17%;
  width: 100%;
  cursor: grab;
  color: white;
}

.rond h3 {
  position: absolute;
  font-size: 80%;
  text-align: center;
  top: 30%;
  width: 100%;
  cursor: grab;
  color: white;
}

.triangle {
  z-index: 100;
  margin-left: 2px;
  margin-top: -13px;
  content: "";
  left: 50%;
  width: 28px;
  border: 13px solid transparent;
  border-bottom: 20px solid #284c55;
  cursor: grab;
}

.rond:active,
.triangle:active,
.rond h2:active,
.rond h3:active {
  cursor: grabbing;
}

.safetyImgRight {
  float: right;
  margin-bottom: 5px;
  margin-left: 20px;
  width: 30%;
}
.safetyImgRight1 {
  float: right;
  margin-bottom: 5px;
  margin-left: 20px;
  width: 40%;
}
.safetyImgLeft {
  float: left;
  margin-bottom: 5px;
  margin-right: 20px;
  width: 35%;
}
@media only screen and (min-width: 769px) {
  .ImgRight {
    float: right;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .ImgRight {
    width: 100% !important;
  }
}
@media only screen and (min-width: 769px) {
  .ImgLeft {
    float: left;
    margin-bottom: 0.5rem;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .ImgLeft {
    width: 100% !important;
  }
}

.font-italic {
  font-style: italic !important;
}

.accordion {
  background-color: #53a098;
  color: #fff9ef;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-radius: 15px; /* Rounded corners with 15px */
}

.panel {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f5dbbf;
  border-radius: 15px; /* Rounded corners with 15px */
  padding: 1em;
}

h2,
h3 {
  font-weight: 550;
  text-align: left;
}

.site_header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site_header > h1 {
  align-self: center;
}

body:not(.mediawiki) .home-hero,
#mw-content-text .home-hero {
  display: grid;
  grid: [track] 100% / [track] 100%;
  height: 100vh;
  min-height: 500px;
}

body:not(.mediawiki) .home-hero > *,
#mw-content-text .home-hero > * {
  grid-area: track;
}

body:not(.mediawiki) .home-hero video,
#mw-content-text .home-hero video {
  width: 100%;
  height: 100%;
  /* height: 110%; */
  object-fit: cover;
  /* border-bottom-left-radius: 95px;
    border-bottom-right-radius: 95px; */
  box-shadow: rgba(0, 0, 0, 1) 1px 0 20px;
  z-index: 1;
}

body:not(.mediawiki) .home-hero-contents,
#mw-content-text .home-hero-contents {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 10rem var(--side-margin);
  color: #fec987;
  text-shadow: black 1px 0 20px;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.2) 0%, transparent 100px, transparent 100%); */
}

body:not(.mediawiki) .home-hero h1,
#mw-content-text .home-hero h1 {
  width: 14rem;
  height: 4rem;
  font-size: 3.5rem;
  color: #fec987;
  text-shadow: rgba(0, 0, 0, 0.7) 1px 0 10px;
  font-weight: bold;
  filter: drop-shadow(0 0 2px #555);
  margin-bottom: 2.5rem;
  padding-left: 20px;
}

body:not(.mediawiki) .home-hero h1 svg,
#mw-content-text .home-hero h1 svg {
  fill: currentColor;
  height: 100%;
}

body:not(.mediawiki) .home-hero p,
#mw-content-text .home-hero p {
  /* margin-top: .5rem; */
  font-size: 3rem;
  font-weight: 700;
  padding-right: 2rem;
  text-align: right;
  color: #ffc670;
  text-shadow: black 3px 0 10px;
}

.home-text {
  /* background-color: #f0aa55;
    border-radius: 5rem; */
  text-align: center;
  font-size: 175%;
  /* font-weight: bold; */
  margin-left: 2rem;
  margin-right: 2rem;
}
.home-text2 {
  /* background-color: #ddc7af;
    border-color: #ddc7af;
    border-radius: 5rem;
    padding: 30px; */
  text-align: center;
  font-size: 200%;
  /* font-weight: bold; */
  margin-left: 2rem;
  margin-right: 2rem;
  color: #ffe0bf;
  /* font-weight: bold; */
  /* text-shadow: rgba(0, 0, 0, 0.6) 1px 0 10px; */
}
.mt-home-text2 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.home-text-block {
  /* background-color: #ddc7af;
    border-color: #ddc7af;
    border-radius: 5rem;
    padding: 30px; */
  text-align: left;
  font-size: 175%;
  margin-left: 0;
  margin-right: 2rem;
}
@media only screen and (max-width: 650px) {
  .home-text-block {
    text-align: center;
  }
}
.home-title {
  font-size: 300%;
  /* font-weight: bold; */
  text-align: center;
  color: #ffe0bf;
  /* text-shadow: rgba(0, 0, 0, 0.6) 1px 0 10px; */
}
.home-bg-dark {
  border-radius: 50px;
  padding: 20px;
  background-color: #fec987;
  box-shadow: rgba(0, 0, 0, 0.6) 1px 0 20px;
}
.home-button {
  background-color: #fec987;
  border-radius: 95px;
  padding: 20px;
  margin-left: 1rem;
  margin-right: 1rem;
  text-align: center;
  font-size: larger;
  height: 100%;
  width: 80%;
  box-shadow: rgba(0, 0, 0, 0.6) 1px 0 20px;
}
.home-button:hover {
  background-color: white;
}

.home-animation {
  margin-right: auto !important;
  margin-left: auto !important;
}

.home-animation-impact {
  margin-right: auto !important;
  margin-left: auto !important;
}
@media only screen and (max-width: 768px) {
  .home-animation-impact {
    max-width: 50%;
    max-height: 50%;
  }
}

home-mark {
  color: #478e8b !important;
  text-shadow: #478e8b 1px 0px 0.3px;
  /* font-weight: bold !important;  */
}
home-mark2 {
  color: #ffa162 !important;
  text-shadow: #ffa162 1px 0px 0.3px;
  /* font-weight: bold !important;  */
}

.mt-home {
  margin-top: 8rem;
}

.mb-home {
  margin-bottom: 8rem;
}

.blockquote {
  background-color: #53a098;
  border-radius: 15px;
  padding: 10px 20px;
  margin: 10px 0;
}

.blockquote_text {
  color: #fff9ef;
  text-align: center;
  font-style: italic;
  font-size: 110%;
}

.blockquote_footer_text {
  color: #ffe7cd;
  text-align: center;
  font-size: medium;
}

.blockquote figcaption {
  /* border: none; */
  background-color: rgba(0, 0, 0, 0);
}

.textbox {
  position: relative;
  text-align: center;
  color: #fff9ef;
}
.textbox-bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
  color: #fff9ef;
}
.textbox-top-left {
  position: absolute;
  top: 8px;
  left: 16px;
  color: #fff9ef;
}
.textbox-top-right {
  position: absolute;
  top: 8px;
  right: 16px;
  color: #fff9ef;
}
.textbox-bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
  color: #fff9ef;
}
.textbox-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff9ef;
}

.image-container {
  display: flex;
  justify-content: space-between;
}

.image-container img {
  max-width: 50%;
  height: auto;
}

.educationImgRight1 {
  float: right;
  margin-bottom: 5px;
  margin-left: 20px;
  width: 60%;
  max-width: 100%;
  height: auto;
}

figcaption {
  /* border: 1px solid #000000; */
  padding: 10px;
  font-size: small;
  text-align: justify;
  text-align-last: center;
  margin-top: 0.25rem;
  border-radius: 15px;
  background-color: #f5dbbf;
}

figure {
  display: block;
  text-align: center;
}

.table {
  background-color: #fff7ea;
  /* border-radius: 15px;
  padding: 10px; */
  /* display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto; */
}

.table-color {
  background-color: #fff7ea !important;
}
.bg-white {
  background-color: #ffffff !important;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 1px solid #000;
  padding: 8px;
  text-align: center;
}

th.left,
td.left {
  text-align: left;
}

.up {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 0;
}

@media only screen and (max-width: 768px) {
  .phone_users_lol {
    width: 100% !important;
  }
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-button {
  background-color: #284c55;
  border-radius: 95px;
  padding: 20px;
  margin-left: 1rem;
  margin-right: 1rem;
  text-align: center;
  color: #fff9ef;
  font-size: larger;
  height: 100%;
  width: 80%;
  box-shadow: rgba(0, 0, 0, 0.3) 1px 0 10px;
}
.page-button:hover {
  background-color: white;
}

.error-container {
  max-width: 400px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0.5, 1);
  border-radius: 15px;
  text-align: center;
  margin: auto;
}

.error-icon {
  font-size: 40px;
  color: #e74c3c;
}

.error-message {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
}

.error-details {
  margin-top: 10px;
  font-size: 14px;
  color: #777;
}

.go-back-link {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: #2e5e5c;
  font-weight: bold;
  font-size: 14px;
}

.go-back-link:hover {
  text-decoration: underline;
  color: #478e8b;
}