* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.253), rgba(10, 23, 72, 0.473)),
    url(img/banner.jpeg);
  filter: brightness(0.8);
  background-position: center;
  background-size: cover;
  position: relative;
}
nav {
  display: flex;
  padding: 2% 8%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 300px;
  margin-top: 20px;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 15px;
  position: relative;
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
}
.text-box img {
  height: 150px;
  margin-bottom: 20px;
}
.text-box h1 {
  font-size: 62px;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 18px;
  color: #fff;
}
.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 16px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.hero-btn:hover {
  border: 1px solid #f44336;
  background: #f44336;
  transition: 1s;
}
.red-btn {
  border: 1px solid #f44336;
  background: transparent;
  color: #f44336;
}
.red-btn:hover {
  color: #fff;
}

nav .fa-solid {
  display: none;
}
row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 700px) {
  nav img {
    width: 150px;
  }
  .text-box h1 {
    font-size: 30px;
  }
  .text-box p {
    font-size: 15px;
  }
  .nav-links ul li {
    display: block;
    margin-left: -15px;
  }
  .nav-links {
    position: fixed;
    background: #f44336;
    height: 100vh;
    width: 160px;
    top: 0;
    right: -160px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa-solid {
    display: block;
    color: #fff;
    font-size: 22px;
    margin-left: 10px;
    margin-top: 10px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 20px;
  }
}

/* Impressum */

.sub-header {
  min-height: 35vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.253), rgba(10, 23, 72, 0.473)),
    url(img/banner.jpeg);
  filter: brightness(0.9);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.sub-header h1 {
  margin-top: 10px;
}
.impressum {
  width: 70%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}
.impressum-col {
  text-align: left;
}
.impressum ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 15px;
  position: relative;
}
.impressum a {
  text-decoration: none;
  color: black;
}
.impressum a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.impressum a:hover::after {
  width: 100%;
}

/* Kontakt */

.kontakt {
  width: 70%;
  margin: auto;
  display: flex;
  padding-top: 80px;
  padding-bottom: 50px;
}
.kontakt .fa-solid {
  font-size: 20px;
  color: #f44336;
  margin-bottom: 15px;
}
.kontakt h5 {
  font-size: 20px;
  margin-bottom: 1px;
  color: #555;
  font-weight: 600;
}
.kontakt p {
  font-size: 14px;
  padding: 0;
  margin-bottom: 50px;
}
.kontakt-col {
  flex-basis: 20%;
}
.kontakt form {
  flex-basis: 40%;
}
.kontakt iframe{
  flex-basis: 50%;
  height: 1000px;
  align-content: center;
}

.kontakt input,
.kontakt textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .kontakt {
    display: block;
    padding-top: 30px;
  }
  .kontakt .fa-solid {
    margin-bottom: 4px;
    padding-left: 20px;
  }
  .kontakt h5 {
    font-size: 15px;
    margin-bottom: 0px;
    padding-left: 20px;
  }
  .kontakt p {
    font-size: 12px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
  .kontakt form {
    padding-top: 50px;
  }
  .kontakt iframe {
    padding-top: 30px;
    height: 1175px;
    align-content: center;
  }
}
