body {
  margin: 0;
  font-family: "RobotoRegular";
  font-size: 1rem;
  color: rgb(15, 36, 62);
  background-color: whitesmoke;
}

.container_topline_wrapper {
  padding-left: 10rem;
  padding-right: 10rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  box-sizing: border-box;
  border-bottom: solid 1px rgb(0, 90, 158);
  background-color: rgba(245, 245, 245, 0.8);
  height: 8rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    height 0.3s ease,
    padding 0.3s ease,
    background-color 0.3s ease;
}

.container_topline_wrapper.shrink {
  height: 5rem;
  background-color: rgba(245, 245, 245, 0.8);
  box-shadow: 0 4px 12px rgba(15, 36, 62, 0.3);
  backdrop-filter: blur(10px);
  font-family: "RobotoLight";
  -webkit-backdrop-filter: blur(10px);
  transition:
    height 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.container_topline {
  display: flex;
  padding-bottom: 1rem;
  padding-top: 1rem;
  width: 100%;
  height: auto;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
}

.img_logo_datei {
  display: inline-block;
  width: auto;
  height: 8rem;
  transition: 0.3s ease;
}

.container_topline_wrapper.shrink .img_logo_datei {
  height: 5rem;
  width: auto;
}

.navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 1rem;
  margin: 0;
  position: relative;
}

.desktop-nav {
  display: flex;
  gap: 1.5rem;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 36, 62, 0.4);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.menu-overlay.show {
  display: flex;
}

.menu-toggle {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-link {
  color: rgb(0, 90, 158);
  text-decoration: none;
  margin-left: 2rem;
  font-size: 1.2rem;
  transition: font-size 0.3s ease;
}

.container_topline_wrapper.shrink .menu-link {
  font-size: 1rem;
  margin-left: 1.7rem;
}

.menu-close {
  display: none;
  position: fixed;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: whitesmoke;
  z-index: 1000;
}

.menu-link:hover {
  text-decoration: none;
  font-family: "RobotoSemiBold";
  color: rgb(15, 36, 62);
  transition: all 0.3s ease;
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: rgb(0, 90, 158);
}

.container_footer {
  box-sizing: border-box;
  background-color: rgb(15, 36, 62);
  padding-left: 10rem;
  padding-right: 10rem;
  margin-top: 6rem;
  transition: 0.3s ease;
  font-family: "RobotoLight";
}

.container_footer_info {
  display: flex;
  padding-top: 4rem;
  padding-bottom: 2rem;
  align-items: flex-start;
}

.info {
  display: flex;
  flex-direction: column;
  padding-right: 50%;
  gap: 0.3rem;
}

.info_link {
  color: whitesmoke;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  position: relative;
}

.info_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.1s ease;
}

.info_link:first-child:hover::after {
  width: 100%;
}

.info_link:hover::after {
  width: 90%;
}

.copyright_text {
  text-align: right;
  color: whitesmoke;
  font-size: 0.8rem;
  border-top: solid 1px rgb(0, 90, 158);
  padding-bottom: 1rem;
}

.kontakt_text {
  color: whitesmoke;
  font-size: 0.9rem;
  margin: 0;
}

.kontakt_text p {
  margin-top: 0;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(15, 36, 62);
  color: whitesmoke;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  z-index: 9999;
  display: none;
  list-style-type: disc;
}

#cookie-banner ul {
  list-style-type: disc;
  margin: 1rem auto;
  padding-left: 2rem;
  text-align: left;
  display: inline-block;
}

.cookie-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.cookie-buttons button {
  padding: 1rem;
  border: none;
  cursor: pointer;
  width: 10rem;
}

#cookie-banner button {
  margin: 0 1rem;
  padding: 0.8rem;
  border: none;
  cursor: pointer;
}

#accept-cookies {
  background: #4caf50;
  color: white;
}

#decline-cookies {
  background: #f44336;
  color: white;
}

@media (max-width: 1600px) {
  .container_topline_wrapper {
    padding-left: 5rem;
    padding-right: 5rem;
    height: 6rem;
  }
  .img_logo_datei {
    height: 6rem;
    width: auto;
  }
  .container_footer {
    padding-left: 5rem;
    padding-right: 5rem;
    margin-top: 4rem;
  }
}

@media (max-width: 1200px) {
  .container_topline_wrapper {
    padding-left: 0;
    padding-right: 0;
    height: 5rem;
  }
  .img_logo_datei {
    height: 5rem;
    width: auto;
  }
  .menu-link {
    font-size: 1.1rem;
  }
  .container_footer {
    padding-left: 1em;
    padding-right: 1rem;
    margin-top: 2rem;
  }
  .info {
    padding-right: 35%;
  }
}

@media (max-width: 1024px) {
  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(15, 36, 62, 0.9);
    opacity: 0.9;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  .desktop-nav {
    display: none;
  }
  .menu-overlay.show {
    display: flex;
    pointer-events: auto;
  }
  .menu {
    display: flex;
    flex-direction: column;
    min-width: 250px;
    padding: 2rem;
    position: relative;
  }
  .menu-close {
    display: flex;
    color: whitesmoke;
    z-index: 9999;
  }
  .menu-link {
    margin: 1rem 0;
    text-decoration: none;
    color: whitesmoke;
    font-size: 1.4rem;
    transition: transform 0.2s ease;
  }
  .menu-link:hover {
    text-decoration: underline;
    transform: scale(1.1);
    color: whitesmoke;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
    transition: right 0.4s ease-in-out;
  }
  .container_menu_portal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
  }
  .menu-link_portal:hover {
    color: whitesmoke;
    text-decoration: underline;
    transform: scale(1.1);
  }
  .info {
    padding-right: 20%;
  }
  .info_link {
    font-size: 0.8rem;
  }
  .kontakt_text {
    font-size: 0.8rem;
  }
  .cookie-buttons {
    flex-direction: column;
  }
}
