/* Grundlayout */
.roboto-mono {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

* {
  font-family: 'Roboto Mono';
  color: #000;
  overflow: hidden;
}

body {
  margin: 1%; 
  background-color: black;
}

.layout {
  display: flex;
  border: 1px solid #fff;
  background-color: #fff;
  height: 95vh;
}

.content {
  flex: 3;
  border-right: 1px solid #000;
  height: 95vh;
  background-color: black;
}

.sidebar {
  flex: 1;
  border-left: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  margin: 2vh auto;
  font-family: Roboto Condensed;
}

.strong {
  font-family: Roboto Condensed;
}

.nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
  font-size: 0.75rem;
}

.nav p {
  font-size: 0.75rem;
}

.nav a {
  text-decoration: none;
  color: black;
  position: relative;
}

.nav a.active::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: orange;
  border-radius: 50%;
  transform: translateY(-50%);
}

.section {
  margin-bottom: 4rem;
}

.section h1 {
  font-family: Roboto Condensed;
  padding-left: 2rem;
  font-size: 2.5rem;
}

.h1 {
  padding: 2rem 0 0 0;
  font-size: 2.5rem;
  border-top: 1px solid black;
}

.study-list,
.client-list {
  padding: 2rem;
  list-style: none;
  font-size: 1.5rem;
}

.info {
  font-size: 0.85rem; 
  text-align: center;
}

.info a {
  color: black;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 4px;
}

.footer {
  margin-top: 1rem;
  font-size: 0.8rem;
}

.content a {
  text-decoration: none;
  color: black;
}

.content a:hover {
  background-color: #e0dfd5;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #fff;
  border: 1px solid black;
  padding: 1rem;
  font-size: 0.9rem;
  max-width: 250px;
}

/* ausgeblendete Elemente */

.fashion {
  display: none;
}

.content h5 {
  margin-bottom: 1rem;
}

.content h6 {
  margin: 0.25rem 0;
}

.content p {
  font-size: 0.8rem;
}

.video {
  margin: 2.5rem 0 0 2.5rem;
  width: 92%;
  height: 630px;
}