@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600&family=Roboto:ital,wght@0,300;0,400;0,700;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: "Roboto", sans-serif;
}

#logo {
  height: 45px;
}

.nav-container {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: white;
  height: 75px;
  position: fixed;
  z-index: 1;
  box-shadow: 0 4px 6px -6px #222;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 35px;
  max-width: 1200px;
  width: 100%;
}

.links a {
  font-size: 1.1em;
  font-weight: 300;
  text-decoration: none;
  color: black;
  margin-left: 8px;
  font-family: "Barlow Condensed", sans-serif;
}

.links a:hover {
  text-decoration: underline;
}

.links a.active {
  background-color: black;
}

#burger-icon {
  display: none;
}

#burger-icon {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #1e222d;
  z-index: 1;

  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 2em;
  margin-top: 1em;
}

.mobile-nav a:hover {
  text-decoration: underline;
}

#mobile-logo {
  padding: 10px 35px;
  height: 150px;
  position: absolute;
  top: 25px;
}

#close-button {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  font-size: 3em;
  padding: 10px 35px;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .links {
    display: none;
  }

  #burger-icon {
    display: block;
  }
}

.title-text-small {
  display: none;
}

.title-section {
  display: flex;
  justify-content: center;
  padding-top: 75px;
}

.title-box {
  position: relative;
}

.title-box .overlay {
  position: absolute;
  bottom: 3px;
  left: 0;
  height: 50%;
  width: 60%;
  background-color: #005db3;
  opacity: 0.7;
  color: white;
  padding: 2em;

  font-size: 0.8em;
}

#title-image {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

.title-text {
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  margin-right: 2em;
  margin-bottom: 4em;
}

.title-text h1 {
  font-size: 2.1em;
}

.title-text h2 {
  font-weight: 300;
}

@media (min-width: 1200px) {
  .title-text {
    margin-bottom: 7em;
    margin-right: 6em;
  }

  .title-text h1 {
    font-size: 3.5em;
  }

  .title-text h2 {
    font-weight: 300;
    font-size: 2em;
  }
}

@media (max-width: 600px) {
  .title-text {
    margin-bottom: 2em;
  }

  .title-text h1 {
    font-size: 1.7em;
  }

  .title-text h2 {
    font-weight: 300;
  }
}

@media (max-width: 470px) {
  .title-text-small {
    display: block;
    margin-left: 0;
  }

  .title-text-big {
    display: none;
  }

  .title-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    background-color: black;
    width: 100%;
  }

  .title-text {
    left: 0;
    bottom: 0;
    margin: 0;
    margin-left: 1.2em;
    margin-bottom: 1.5em;
  }

  .title-text h1 {
    font-size: 1.6em;
  }

  .title-text h2 {
    font-weight: 300;
    font-size: 1.3em;
  }
}

.info {
  margin-top: 5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /*max-width: 1000px;*/
}

.info-title {
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 2em;
  font-size: 2.5em;
  color: black;
  text-align: center;
}

.warum-gallery {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* ÜBER UNS */
#ueber_uns {
  padding: 0em 4em 4em 4em;
}

.warum-icon {
  height: 120px;
}

/* NEUSTER STAND */
#neuster_stand {
  background-color: #131722;
  padding-top: 1px;
  padding-bottom: 75px;
}

#neuster_stand .info-title {
  color: white;
}

.tradingview-widget-container {
  max-width: 800px;
  width: calc(100% - 10px);
}

/* BERATEN */
.employee-picture {
  height: 250px;
  border-radius: 100%;
}

.employee-name {
  font-family: "Roboto", sans-serif;
  margin-top: 25px;
}

.employee-description {
  font-family: "Roboto", sans-serif;
  max-width: 320px;
  margin-top: 25px;
  margin-bottom: 50px;
}

@media (max-width: 850px) {
  .warum-gallery {
    flex-direction: column;
  }

  .warum-icon {
    margin-bottom: 55px;
  }
}

.employee-gallery-figure h1 {
  margin-top: 0.5em;
  font-size: 1.5em;
  font-weight: 200;
  padding-left: 4px;
}

.employee-gallery-figure h2 {
  font-size: 1.2em;
  font-weight: 400;
  padding-left: 4px;
}

.banner {
  width: 100%;
  background-color: #1e222d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 2em 3em;
}

.banner-text {
  font-size: 1.8em;
  margin-top: 0.5em;
  font-style: italic;
  font-weight: 700;
  max-width: 600px;
  font-family: "Roboto", sans-serif;
}

.banner-subtext {
  font-size: 1.3em;
  font-weight: 200;
  margin-top: 0.5em;
  max-width: 700px;
}

.learn-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 150px;
  height: 35px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  margin-top: 45px;
}

.learn-more-button a {
  color: black;
  text-decoration: none;
}

.footer {
  position: relative;
  width: 100%;
  background-color: #292c36;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 2em;
}

.footer-links {
  margin-top: 1.4em;
  margin-bottom: 3em;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  position: absolute;
  bottom: 0;
  right: 0;
  padding-right: 1em;
  padding-bottom: 1em;
}

#logo-white {
  height: 100px;
  margin-top: 1.8em;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.document-share {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.share-top {
  width: 600px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ebebeb;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.share-icon {
  width: 70px;
  height: 70px;
  margin-top: 2em;
  margin-bottom: 2em;
}

.share-title {
  font-size: 1.5em;
  font-weight: 300;
  margin-bottom: 2em;
}

.share-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2f4cb4;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 600px;
  max-width: 600px;
}

.share-message {
  font-size: 1em;
  font-weight: 300;
  color: white;
  margin-top: 2em;
  margin-bottom: 2em;
}

.file-window {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 15px;
  width: 70%;
  background-color: white;
  padding: 1em;
}

.word-icon {
  width: 40px;
  height: 40px;
}

.file-name {
  font-size: 1em;
  font-weight: 300;
}

.download-button {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  margin-bottom: 2em;
  cursor: pointer;
  transition: 0.3s;
}

.download-button a {
  padding: 15px 30px 15px 30px;
  color: black;
  text-decoration: none;
}

.download-button:hover {
  box-shadow: 8px 8px #99bdff;
}

.download-space {
  height: 50px;
}

.mobile-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: #243b8d;
  padding: 125px 2em 2em;
}

.error-message {
  color: white;
  font-weight: 300;
  margin-top: 2em;
  text-align: center;
}

@media (max-width: 600px) {
  .mobile-overlay {
    display: flex;
  }

  .document-share {
    display: none;
  }
}

.impressum {
  width: 100%;
  max-width: 1000px;
}

.datenschutz {
  padding: 100px 2em 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}

.datenschutz h2 {
  margin-bottom: 1em;
}

.datenschutz h3,
h4 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.datenschutz-content {
  width: 100%;
  max-width: 1000px;
}

.impressum h1 {
  margin-bottom: 1em;
}

.impressum-subtitle {
  margin-top: 1em;
  margin-bottom: .3em;
  font-weight: 600;
}

.impressum-header {
  margin-top: 1em;
  margin-bottom: .3em;
}

.impressum-detail {
  font-size: .9em;
}

.cookie-consent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 350px;
  background-color: white;
  bottom: 15px;
  right: 15px;
  z-index: 100;
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  user-select: none;
}

.cookie-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6em;
  font-weight: 600;
  padding: 1em;
}

.cookie-logo {
  width: 64px;
  height: 64px;
}

.cookie-text {
  font-size: .9em;
  padding: 1em;
}

.cookie-text b {
  font-weight: 600;
}


.cookie-buttons {
  display: flex;
}

.cookie-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  background-color: black;
  margin: 1em;
  cursor: pointer;
}

.cookie-button.cookie-accept {
  background-color: #243b8d;
  color: white;
}

.cookie-button.cookie-deny {
  background-color: white;
  border: 1px solid black;
}

.cookie-button-text {
  font-size: 1em;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}