.container_header {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 50vh;
}

.img_container_header {
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 100%;
  z-index: -100;
  object-fit: cover;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  filter: brightness(90%);
}

.container_pagetitle {
  position: absolute;
  font-family: "RobotoSemiBold";
  font-size: 2rem;
  color: whitesmoke;
  padding-left: 10rem;
  bottom: 1rem;
  transition: 0.3s ease;
}

.container_impressum_wrapper {
  padding-left: 10rem;
  padding-right: 10rem;
  width: 100%;
  position: relative;
  flex-direction: column;
  display: flex;
  padding-top: 4rem;
  box-sizing: border-box;
  width: 70%;
  transition: 0.3s ease;
}

.container_impressum_wrapper a {
  text-decoration: none;
  display: inline-block;
  color: rgb(0, 90, 198);
  position: relative;
}

.container_impressum_wrapper a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.1s ease;
}

.container_impressum_wrapper a:hover::after {
  width: 100%;
}

.container_impressum_wrapper i {
  font-size: 0.8rem;
}

.container_impressum_wrapper p:first-child:after {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background-color: rgb(0, 90, 158);
  margin: 2rem 0;
}

.container_impressum_wrapper p:last-child::before {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background-color: rgb(0, 90, 158);
  margin: 2rem 0;
}

.container_impressum_wrapper h2::after {
  content: "";
  display: block;
  width: 20%;
  height: 1px;
  background-color: rgb(0, 90, 158);
  margin: 2rem 0;
}

@media (max-width: 1600px) {
  .container_pagetitle {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .container_impressum_wrapper {
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 6rem;
    padding-top: 4rem;
    width: 80%;
  }
}

@media (max-width: 1200px) {
  .container_pagetitle {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.3rem;
  }
  .container_impressum_wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 4rem;
    padding-top: 2rem;
    width: 90%;
  }
}
