* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #fbfbfb;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "PPEditorialNew";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/PPEditorialNew/PPEditorialNew-Regular.woff2)
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/Roboto/Roboto-Regular.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/Roboto-Light.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Roboto/Roboto-ExtraLight.ttf) format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/Roboto-LightItalic.ttf) format("truetype");
  font-display: swap;
}

.pop-up {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.pop-up.is-open {
  display: grid;
  place-items: center;
}

.pop-up-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}

.pop-up-dialog {
  position: relative;
  width: min(92vw, 860px);
  background: #fbfbfb;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  animation: pop-in 200ms ease-out;
}

@keyframes pop-in {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pop-up-dialog {
    animation: none;
  }
}

.pop-up-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}

.pop-up-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pop-up-text {
  padding: 24px 24px 28px;
}

.pop-up-text h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 1.2rem + 0.3vw, 1.4rem);
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
}

.pop-up-text p {
  margin: 0 0 12px;
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.pop-up-cta {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  padding: 0.6rem 0.8rem;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: 1rem;
}

.pop-up-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.pop-up-close:hover {
  background: #ffffff;
}
.pop-up-close svg {
  display: block;
}

.sidebar {
  position: fixed;
  z-index: 1000;
  left: 0;
  width: clamp(300px, 15vw, 420px);
  border-right: 1px solid #4d4d4d;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  background-color: #fbfbfb;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}

.logo-wrapper img {
  width: 240px;
  height: auto;
}

.main-navigation {
  margin-top: 3rem;
}

.main-navigation ul {
  padding: 0;
}

.main-navigation ul li {
  list-style: none;
}

.main-link {
  color: #4d4d4d;
  font-weight: 200;
  font-size: 1.3rem;
  text-decoration: none;
  line-height: 2.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.current-page {
  text-decoration: 1px #cca152 underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.has-submenu {
  position: relative;
  overflow: hidden;
}

.submenu {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: max-height 0.3s ease;
}

.submenu {
  padding-left: 1rem !important;
}

.submenu a {
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 200;
  color: #7a7a7a;
  text-decoration: none;
}

.sidebar-footer {
  position: absolute;
  bottom: 1rem;
  background-color: #fbfbfb;
}

.sidebar-footer {
  margin-top: auto;
  padding: 1rem 0;
  background-color: #fbfbfb;
}

.language-switch {
  position: relative;
  width: max-content;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 2px;
  border: 1px solid hsl(0 0% 82%);
  background-color: #fbfbfb;
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.12s ease;
}

.lang-trigger:hover {
  box-shadow: 0 4px 14px hsl(0 0% 0% / 0.1);
}

.lang-trigger:active {
  transform: translateY(1px);
}

.chev {
  transition: transform 0.18s ease;
}

.lang-list {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.4rem);
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  min-width: 180px;
  z-index: 5000;
  border: 1px solid hsl(0 0% 82%);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 10px 30px hsl(0 0% 0% / 0.12);
  transform-origin: bottom left;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

.text {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.lang-label {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1rem;
}

.lang-list li:hover,
.lang-list li:focus {
  background: hsl(210 16% 96%);
}

.lang-list li[aria-selected="true"] {
  background: hsl(210 16% 94%);
}

.language-switch[data-open="true"] .lang-list {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.language-switch[data-open="true"] .chev {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .lang-list,
  .chev,
  .lang-trigger {
    transition: none;
  }
}

.mobile-header {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line {
  background-color: #fff;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fff;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #fbfbfb;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.menu-mobile img {
  filter: invert(100%);
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 100;
  text-decoration: none;
  padding: 0.7rem 0;
  color: #4d4d4d;
}

.menu-links img {
  width: 12px;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #4d4d4d;
}

.menu-bottom a {
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  color: #4d4d4d;
}

.menu-mobile-page {
  background-color: #fbfbfb;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
}

.menu-mobile-page-closing {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.8rem 1.4rem;
  width: 100%;
  position: absolute;
  top: 0;
}

.page-body {
  margin-left: clamp(300px, 15vw, 420px);
  width: calc(100% - clamp(300px, 15vw, 420px));
  width: max(0px, calc(100% - clamp(300px, 15vw, 420px)));
  position: relative;
}

main {
  width: 100%;
  position: relative;
}

.hero-img-wrapper {
  width: 100%;
  height: 90vh;
  top: 0;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}

h1 {
  color: #fffdf6;
  font-family: "PPEditorialNew", sans-serif;
  font-size: 3.8rem;
  line-height: 4.4rem;
  font-weight: 400;
}

.hero-text p {
  color: #fffdf6;
  font-weight: 200;
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.hero-btn button {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1rem;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.hero-link {
  display: flex;
  align-items: center;
  gap: 3px;
}

.hero-link a {
  color: #fffdf6;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
}

.intro-section {
  margin: 4rem 6rem;
}

.intro-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.intro-text {
  width: 65%;
}

.intro-img {
  padding-top: 1rem;
  width: 35%;
  height: auto;
}

.intro-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 25%;
}

.intro-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
}

.intro-section p {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.intro-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.intro-btn button {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1rem;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.intro-link {
  display: flex;
  align-items: center;
  gap: 3px;
}

.intro-link a {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
}

.immunologie-section {
  margin: 6rem 6rem;
}

.subheader h3 {
  padding: 0.6rem 1rem;
  border: 1px solid #4d4d4d;
  border-radius: 25px;
  display: inline-block;
  font-weight: 100;
  font-size: 1rem;
  color: #4d4d4d;
}

.immunologie-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.immunologie-section p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.services-section {
  margin: 6rem 6rem;
}

.services-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.services-section p {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.2rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.services-item {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.services-img {
  width: 100%;
  height: 100%;
}

.services-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(70%);
  z-index: 1;
}

.services-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.services-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: #fffdf6;
}

.services-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: #fffdf6;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.services-text p {
  color: #fffdf6;
  font-size: 1.1rem;
}

.services-item:hover .services-text {
  max-height: 200px;
  opacity: 1;
  pointer-events: auto;
}

.services-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.services-btn button {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1rem;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.services-link {
  display: flex;
  align-items: center;
  gap: 3px;
}

.services-link a {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
}

.interviews-section {
  margin: 6rem 6rem;
}

.interviews-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.overlays-wrapper {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.interview-item {
  position: relative;
  flex: 1 1 calc((100% - 2 * 1.2rem) / 3);
  aspect-ratio: 16 / 9;
  background: #000;
}

.interview-item img {
  filter: brightness(50%);
}

.interview-item img,
.interview-item .video-placeholder,
.interview-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  z-index: 100;
}

.overlay-text p {
  color: #fffdf6;
  font-weight: 100;
  font-size: 1.1rem;
}

.overlay-text a {
  color: #fffdf6;
  font-weight: 100;
  font-size: 1.1rem;
}

.overlay-text button {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  padding: 0.6rem 0.8rem;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.interview-date {
  position: absolute;
  bottom: -2.5rem;
}

.interview-date p {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.1rem;
}

.news-section {
  margin: 6rem 6rem;
}

.news-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.news-section p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.news-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
}

.news-item {
  position: relative;
  width: 100%;
  height: 470px;
}

.news-img {
  width: 100%;
  height: 100%;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.news-title {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
}

.news-title h3 {
  color: #fffdf6;
  font-weight: 300;
  font-size: 1.3rem;
  margin: 0;
}

.faq-section {
  margin: 6rem 6rem;
}

.faq-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.faq-section p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.accordion-layout {
  display: flex;
  flex-direction: column;
}

.accordion-layout {
  width: 100%;
}

.accordion-item {
  display: flex;
  align-items: center;
  height: 80px;
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid #eae4dd;
}

.question-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
}

.question-box h4 {
  font-size: 1.2rem;
  font-weight: 100;
  color: #4d4d4d;
}

.cross-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 80px;
}

.cross-box img {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cross-box img.rotated {
  transform: rotate(225deg);
}

.answer-item {
  padding-left: 10px;
  padding-top: 2rem;
  padding-right: 100px;
  transition: height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
  height: 0;
}

.answer-item p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.answer-item a {
  color: #cca152;
  font-size: 1.2rem;
  font-weight: 100;
  text-decoration: none;
}

.answer-item ul {
  padding: 0 0 0 20px;
}

.contact-section {
  margin: 6rem 6rem;
}

.contact-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.contact-section p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}

.contact-layout h3 {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 1.33rem;
}

.muc,
.aschheim {
  width: 50%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.contact-item img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item a {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
  text-decoration: none;
  line-height: 1.4;
}

.line-contact {
  width: 80%;
  height: 1px;
  background-color: #4d4d4d;
}

.contact-hours {
  display: flex;
  align-items: flex-start;
}

.contact-hours p {
  display: flex;
  align-items: flex-start;
  margin-top: 0;
}

.hours-left {
  width: 8rem;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  margin-top: 4rem;
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
}

.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-img img {
  filter: brightness(50%);
  object-fit: cover;
  width: 100%;
  height: 450px;
}

#map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff6ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

#map-overlay p {
  font-size: 1.1rem;
  font-weight: 100;
  margin-bottom: 20px;
  padding: 0 20px;
  color: #fff6ec;
}

#map-overlay a {
  font-size: 1rem;
  font-weight: 100;
  color: #fff6ec;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#accept-map {
  width: 140px;
  height: 45px;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Inter", sans-serif !important;
  background-color: #fff6ec;
  color: #080808;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.map-iw {
  font-family: Inter, Arial, sans-serif;
  padding: 14px 16px;
  line-height: 1.45;
  min-width: 260px;
  max-width: 320px;
}

.map-iw__title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: #4d4d4d;
}

.map-iw__addr {
  margin: 0 0 8px 0;
  font-style: normal;
  font-size: 14px;
  font-weight: 100;
  color: #4d4d4d;
}

.map-iw__link {
  display: inline-block;
  font-size: 13px;
  color: #1a73e8;
  text-decoration: none !important;
}

.map-iw__link:hover,
.map-iw__link:focus {
  text-decoration: underline;
}

.gm-style .gm-ui-hover-effect {
  top: 8px !important;
  right: 8px !important;
  border-radius: 50%;
}

.gm-style .gm-style-iw-c {
  border-radius: 8px;
  padding: 0 !important;
}

.gm-style .gm-style-iw-d {
  overflow: visible !important;
}

footer {
  background-color: #3c3d37;
  padding: 4rem 6rem 0.8rem 6rem;
}

.logo-footer {
  width: 180px;
  height: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-top p {
  color: #fffdf6;
  font-weight: 100;
  font-size: 1rem;
}

.footer-social-icons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-social-icons img {
  width: 40px;
  cursor: pointer;
}

.footer-line {
  margin-top: 2rem;
  width: 100%;
  height: 1px;
  background-color: #4d4d4d;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.footer-layout h3 {
  font-weight: 300;
  color: #fffdf6;
  font-size: 1.4rem;
}

.contact-item-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-layout ul {
  padding: 0;
}

.footer-layout ul li {
  list-style: none;
}

.footer-layout a {
  color: #fffdf6;
  font-weight: 100;
  text-decoration: none;
  line-height: 1.6rem;
}

.location-item-footer {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.location-item-footer img {
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #fffdf6;
  font-weight: 100;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.credits {
  color: #fffdf6;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pop-up-layout {
    grid-template-columns: 1fr;
  }
  .pop-up-text {
    padding: 18px 18px 22px;
  }

  .pop-up-text p {
    font-size: 1rem;
  }

  .rmv-m {
    display: none;
  }

  .pop-up-text h3 {
    font-size: 1.4rem;
  }

  .pop-up-img img {
    max-height: 200px;
  }

  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex !important;
  }

  .mobile-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .logo-mobile {
    width: 120px;
  }

  .page-body {
    width: 100%;
    margin-left: 0;
  }

  .hero-text {
    width: 95%;
  }

  .hero-img-wrapper {
    height: 95vh;
  }

  h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .intro-section,
  .services-section,
  .interviews-section,
  .news-section,
  .faq-section,
  .contact-section,
  .immunologie-section {
    margin: 4rem 1rem;
  }

  .intro-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .intro-layout {
    flex-direction: column-reverse;
    gap: 0;
  }

  .intro-img {
    width: 100%;
  }

  .intro-img img {
    width: 100%;
    object-position: cover;
  }

  .intro-text {
    width: 100%;
  }

  .intro-btn {
    display: none;
  }

  .immunologie-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .services-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .services-item {
    height: 400px;
  }

  .interviews-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .overlays-wrapper {
    display: grid;
  }

  .interview-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .news-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .news-wrapper {
    flex-direction: column;
  }

  .news-item {
    height: 400px;
  }

  .faq-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .cross-box {
    width: 20px;
  }

  .answer-item {
    padding-right: 0;
  }

  .contact-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .contact-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .muc,
  .aschheim {
    width: 100%;
  }

  .line-contact {
    width: 100%;
  }

  .overlay-img img {
    width: 100%;
    height: 500px;
  }

  footer {
    padding: 4rem 1rem 0.8rem 1rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-social-icons {
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .footer-layout,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex !important;
  }

  .mobile-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .logo-mobile {
    width: 120px;
  }

  .page-body {
    width: 100%;
    margin-left: 0;
  }

  .hero-text {
    width: 95%;
  }

  .hero-img-wrapper {
    height: 95vh;
  }

  h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .intro-section,
  .services-section,
  .interviews-section,
  .news-section,
  .faq-section,
  .contact-section,
  .immunologie-section {
    margin: 4rem 1rem;
  }

  .intro-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .intro-layout {
    gap: 2rem;
  }

  .intro-img {
    width: 100%;
  }

  .intro-img img {
    width: 100%;
    object-position: cover;
  }

  .intro-text {
    width: 100%;
  }

  .intro-btn {
    display: none;
  }

  .immunologie-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .services-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .services-cards {
    grid-template-columns: 1fr 1fr;
  }

  .services-item {
    height: 400px;
  }

  .interviews-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .overlays-wrapper {
    display: grid;
  }

  .interview-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .news-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .news-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .news-item {
    height: 400px;
  }

  .faq-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .cross-box {
    width: 20px;
  }

  .answer-item {
    padding-right: 0;
  }

  .contact-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .contact-layout {
    gap: 2rem;
  }

  .muc,
  .aschheim {
    width: 100%;
  }

  .line-contact {
    width: 100%;
  }

  .overlay-img img {
    width: 100%;
    height: 500px;
  }

  footer {
    padding: 4rem 1rem 0.8rem 1rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-social-icons {
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .footer-layout,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .hero-text {
    width: 80%;
  }

  .intro-section,
  .services-section,
  .interviews-section,
  .news-section,
  .faq-section,
  .contact-section,
  .immunologie-section {
    margin: 6rem 2rem;
  }

  .overlay-text {
    width: 94%;
  }

  .overlay-img img {
    width: 100%;
    height: 500px;
  }

  footer {
    padding: 4rem 2rem 0.8rem 2rem;
  }
}
