@font-face {
  font-display: swap;
  font-family: Gotham;
  font-weight: 200;
  src: url("/assets/fonts/Gotham-Book.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Gotham;
  font-weight: 400;
  src: url("/assets/fonts/Gotham-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Gotham;
  font-weight: 700;
  src: url("/assets/fonts/Gotham-Bold.woff2") format("woff2");
}
:root {
  --blue: #002252;
  --black: #000;
  --orange: #E9462E;
  --white: #fff;
  --gray:#F7F7F7;
}

body {
  margin: 0;
  padding: 0;
  font-family: Gotham, sans-serif;
  -webkit-hyphens: auto;
          hyphens: auto;
  background-color: --gray;
  position: relative;
}

.orange {
  color: var(--orange);
}

.mb-40 {
  margin-bottom: 40px;
}

h2 {
  font-size: 40px;
  font-weight: 400;
}
@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}

p {
  font-weight: 200;
  font-size: 18px;
  line-height: 25px;
}

.container {
  width: 100%;
  padding: 0 25px;
}
@media (min-width: 1450px) {
  .container {
    width: 1400px;
    margin: 0 auto;
  }
}

.bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
  display: flex;
  align-items: center;
}
.bg img {
  width: 100%;
  height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.bg::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--gray);
  opacity: 0.75;
  top: 0;
  left: 0;
  content: "";
}

.header {
  display: flex;
  width: 100%;
  padding: 25px 0;
}
.header .header-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 25px;
}
.header .lang-menu {
  display: flex;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .header .lang-menu {
    gap: 20px;
  }
}
.header .lang-menu .lang-menu--container a {
  font-size: 25px;
  text-decoration: none;
  color: var(--blue);
  font-weight: 200;
}
.header .lang-menu .lang-menu--container a:hover {
  text-decoration: underline;
}
.header .lang-menu .lang-menu--container a.active {
  font-weight: 700;
}
.header .lang-menu .lang-menu--container span {
  font-size: 25px;
}

.text {
  padding: 200px 0 100px;
  display: flex;
  width: 100%;
}
@media (max-width: 767px) {
  .text {
    padding: 100px 0 75px;
  }
}
.text .coming-soon img {
  max-width: 700px;
}
@media (min-width: 1200px) {
  .text .text-wrapper {
    width: 75%;
  }
}
.text ul {
  padding: 0;
  list-style-position: inside;
  font-size: 18px;
  font-weight: 500;
  margin: 40px 0 30px;
}
.text ul li {
  margin-bottom: 10px;
}
.text .download-btn {
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  color: var(--blue);
}
.text .download-btn:hover {
  text-decoration: underline;
}

.contacts {
  display: flex;
  width: 100%;
  padding-bottom: 100px;
}
.contacts .contacts-wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  row-gap: 20px;
}
.contacts .contacts-wrapper .contact-container {
  width: calc(33.3% - 10px);
}
@media (max-width: 1200px) {
  .contacts .contacts-wrapper .contact-container {
    width: 50%;
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .contacts .contacts-wrapper .contact-container {
    width: calc(100% - 10px);
  }
}
.contacts .contacts-wrapper .contact-container .contact-content {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 20px 5px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(247, 247, 247, 0.5);
  border-radius: 25px;
  padding: 50px 25px;
}
.contacts .contacts-wrapper .contact-container .contact-content p {
  margin: 0;
}
.contacts .contacts-wrapper .contact-container .contact-content h3, .contacts .contacts-wrapper .contact-container .contact-content h4 {
  font-weight: 400;
}
.contacts .contacts-wrapper .contact-container .contact-content h3 {
  color: var(--blue);
  font-size: 32px;
  margin: 15px 0 35px;
}
.contacts .contacts-wrapper .contact-container .contact-content h4 {
  font-size: 25px;
  margin: 15px 0;
}
.contacts .contacts-wrapper .contact-container .contact-content .text-link {
  margin-bottom: 15px;
}
.contacts .contacts-wrapper .contact-container .contact-content a {
  color: var(--black);
  text-decoration: none;
}
.contacts .contacts-wrapper .contact-container .contact-content a:hover {
  text-decoration: underline;
}

.dataprivacy-wrapper {
  padding-bottom: 100px;
}
.dataprivacy-wrapper a {
  color: var(--blue);
}
.dataprivacy-wrapper a:hover {
  text-decoration: none;
}

h1 {
  font-size: 60px;
  color: var(--blue);
}

.impressum-text {
  color: var(--blue);
}
.impressum-text a {
  color: var(--blue);
}
.impressum-text a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */