/* custom font */
@font-face {
  font-family: 'Coolvetica';
  src: url('Font/coolvetica.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}

/*orange #e38500*/
/*blue  #140E35*/
/*Header all pages*/
body {
  padding-top: 56px;
  font-family: 'Coolvetica', sans-serif;
  overflow-x: hidden;
}
html {
  margin-right:0vh;
}
.left-aligned {
  margin-left: auto;
}

.bg-dark {
  background-color: #140E35 !important;
}

.bg-hero {
  background-color: #e38500;
}

/*colour of turning texts*/

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

.bd-callout h4 {
  margin-bottom: .25rem
}

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

.bd-callout code {
  border-radius: .25rem
}

.bd-callout+.bd-callout {
  margin-top: -.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: white;
  font-weight: bold;
  text-decoration: none;
}

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

/* Container to hold the banner */
.logo-banner {
  width: 100%;
  height: 30px;
  overflow: hidden;
  /* Hide overflowing logos */
  position: relative;
  /* For absolute positioning of the tracks */
  display: flex;
  align-items: center;
  white-space: nowrap;
  /* Prevent wrapping */
  margin-bottom: 50px;
}

/* Track to hold the logos */
.logo-track {
  display: inline-flex;
  position: absolute;
  top: 0;
  height: 100%;
  align-items: center;
  justify-content: space-around;
  width: auto;
  /* Space between logos */
}

/* Set the width of the track to 100% of the screen */
.track-1,
.track-2 {
  width: 100%;
}

.track-1 {
  left: 0px;
  /* Start on screen */
}

.track-2 {
  left: 1450px;
  /* Start off-screen to the right */
}

/* Logos styling */
.logo-track a img {
  height: 30px;
  /* Adjust logo size */
  width: auto;
  margin-left: 20px;
  /* Maintain aspect ratio */
}

/*Header flip text*/

.leftSide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 5vh;
}

/* From Uiverse.io by kennyotsu */

.cardHeader {
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  color: #e38500;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 16px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  transform: translateY(30%);
}

.words {
  overflow: hidden;
  position: relative;
  height: 80%;
}

.words::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--bg-color) 10%,
      transparent 30%,
      transparent 70%,
      var(--bg-color) 90%);
  z-index: 20;
}

.word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #ffffff;
  /*colour for turning texts?*/
  animation: spin_4991 15s infinite;
}

@keyframes spin_4991 {
  10% {
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
  }

  25% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  35% {
    -webkit-transform: translateY(-202%);
    transform: translateY(-202%);
  }

  50% {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  60% {
    -webkit-transform: translateY(-302%);
    transform: translateY(-302%);
  }

  75% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
  }

  85% {
    -webkit-transform: translateY(-402%);
    transform: translateY(-402%);
  }

  100% {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}

.footer {
  position: relative;
  z-index: 2;
}


/*TEXTCONTAINER*/
/* From Uiverse.io by SouravBandyopadhyay */
.notification {
  display: flex;
  flex-direction: column;
  isolation: isolate;
  position: relative;
  width: 100%;
  max-width:1150px;
  height: auto;
  /*background: #e0e0e0;*/
  border-radius: 1rem;
  overflow: hidden;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 20px;
  --gradient: linear-gradient(to bottom, #e38500, #b86b01, #a35f00);
  --color: #e38500;
  padding: 10px;
  margin-bottom: 50px;
  animation: float-text 10s ease-in-out infinite;
}

.notification:before {
  position: absolute;
  content: "";
  inset: 0.0625rem;
  border-radius: 0.9375rem;
  background: #ffffff;
  z-index: 2
}

.notification:after {
  position: absolute;
  content: "";
  width: 0.25rem;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}

.notification:hover:after {
  transform: translateX(0.15rem)
}

.notititle {
  color: var(--color);
  padding: 0.65rem 0.25rem 0.4rem 1.25rem;
  font-weight: 500;
  font-size: 2rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notititle {
  transform: translateX(0.15rem)
}

.notibody {
  color: #000000;
  padding: 0 1.25rem;
  transition: transform 300ms ease;
  z-index: 5;
}

.notification:hover .notibody {
  transform: translateX(0.25rem)
}

.notiglow,
.notiborderglow {
  position: absolute;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle closest-side at center, #140e35, transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.notiglow {
  z-index: 3;
}

.notiborderglow {
  z-index: 1;
}

.notification:hover .notiglow {
  opacity: 0.1
}

.notification:hover .notiborderglow {
  opacity: 0.1
}

.note {
  color: var(--color);
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  width: 75%;
}

a {
  color: #FF9702;
  text-decoration: none;
  font-weight: bold;
}

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

/*Page Description*/
.page-description {
  width: 100%;
  height: auto;
  padding: 5%;
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1;
  background-image: linear-gradient(#C7EEEF,#f1fdfd, white);
}

.page-description-title {
  width: 100%;
  text-align: left;
  font-size: 40px;
  font-weight: bold;
}

.page-description-text {
  font-size: 20px;
}

/*waves*/
#waves {
  position: relative;
  width: 100%;
  /* Set width as needed */
  height: 200px;
  /* Set height as needed */
  margin-top: 30vh;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.wave+.wave {
  z-index: 2;
}

/*Scrollable Component*/
.main_container {
  display: flex;
  width: 100%;
  background-color: #1a3d50;
  z-index: 2;
  position: relative;
}

.main_sidebar {
  position: sticky;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  color: rgb(255, 255, 255);
  padding: 20px;
  margin-top: -10vh;
  padding-top: 10vh;
}

.main_sidebar ul {
  list-style: none;
}

.main_sidebar ul li {
  margin-bottom: 20px;
}

.main_sidebar ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 18px;
  padding: 2px;
  transition: background-image 0.3s ease;
  background-size: cover;
  /* Ensure image scales to fit the width */
  background-repeat: no-repeat;
  /* Avoid tiling of the image */
  background-position: center;
  /* Center the image */
  background-origin: content-box;
  /* Ensure the image is relative to the content */
}

.main_sidebar ul li a:hover {
  background-color: #e38500;
  padding: 2px;
  border-radius: 5px;
}

.main_sidebar ul li a:active {
  background-color: #e38500;
  padding: 2px;
  border-radius: 5px;
}

.active-link {
  background-color: #e38500;
  padding: 5px;
  border-radius: 5px;
}

.content {
  padding: 20px;
  width: calc(100% - 420px);
  /* Dynamische Breite, um den Sidebar-Platz zu berücksichtigen */
}


.content p {
  margin-bottom: 20px;
}

.content-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
}

#sidebarTitle {
  font-size: 2em;
  font-weight: bold;
}

.postTitle {
  font-size: 2em;
  font-weight: bold;
}

.postText {
  font-size: 1em;
}

.postImageContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.postImage {
  height: 200px;
  width: auto;
}

.pdfobject-container {
  height: 90vh;
  border: 1px solid #ccc;
}

#content_container {
  width: 90%;
  margin-left: 5%;
  display: flex;
  flex-direction: column;
}

#title {
  font-size: 40px;
  font-weight: bold;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
}

/*Ground*/
.ground-container {
  position: relative;
  width: 100%;
  background-color: #1a3d50;
  z-index: 2;
}

.ground-image {
  width: 100%;
}

@keyframes float-text {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(1deg);
  } 
}
  /*Table*/
  /* From Uiverse.io by Rodrypaladin */ 
  .table{
    width: 100%;
    overflow: hidden;
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); border-radius: 10px;
  }
  .table__caption{
    padding: 5px;
  }
  .card__title {
    font-weight: bold;
    background-color: #FF9702; 
    color: white; 
    letter-spacing: 1px;
    padding: 0px 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 24px;
  }
  
  .card__data {
    font-size: 18px;
    display: flex;
    flex-direction: column;
  }
  
  .card__entry{
    width: 100%;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #ddd;
    font-size:20px;
  }
  
  .card__entry:hover  .card__right,
  .card__entry:hover  .card__left,
  .card__entry:hover  .card__middle_2,
  .card__entry:hover  .card__middle{
    background-color: #ffe4b5;
  }
  
  .card__right {
    width: 10%;
  }
  
  .card__middle {
    width: 20%;
  }
  .card__middle_2 {
    width: 20%;
  }
  .card__left {
    width: 70%;
  }
  
  .card__right .table_item {
    padding-left: 0.8em;
  }
  
  .card__left .table_item {
    padding-right: 0.8em;
  }
  
  .card__entry:nth-child(odd) {
background: #f2f2f2;  }
  
  
  .card__entry:last-child{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .table__caption{
    padding: 0px 5px;
  }

  #navbarSupportedContent{
    letter-spacing: 1px;
  }