/*----------------------------- header */
/*header*/
header h1 {
  color: #ffffff;
  position: absolute;
  top: 100px;
  left: 3%;
  text-shadow: 0 0 10px rgba(4, 13, 84, 0.885);
}

/*wave*/
header .wave {
  display: block;
  position: absolute;
  left: 0px;
  top: 16px;
  padding-right: 0px;
}

header .wave-hell {
  display: block;
  position: absolute;
  left: 0px;
  top: 152px;
  padding-right: 0px;
}

header .wave-unten {
  display: block;
  position: absolute;
  left: 0px;
  top: 420px;
  right: 0px;
  width: 100%;
  height: 400px;
}

/*images*/
header .logo-image {
  position: fixed;
  z-index: 1000;
  left: 0px;
  top: 0px;
  height: 130px;
  width: 130px;
}

header .header-image {
  position: absolute;
  top: 180px;
  min-height: 500px;
  width: 100%;
  left: 0px;
  object-fit: cover;
  filter: brightness(1.1);
  pointer-events: none;
}

/*backround*/

header .wave-unten-div {
  position: absolute;
  display: flex;
  background-color: rgb(32, 86, 128);
  left: 0px;
  top: 660px;
  height: 300px;
  width: 100%;
}

header .container {
  position: absolute;
  display: flex;
  background-color: rgb(32, 86, 128);
  left: 0px;
  top: 25px;
  height: 128px;
  width: 100%;
}

header .container-dark {
  position: absolute;
  display: flex;
  background-color: var(--wave_header);
  left: 0px;
  top: -48px;
  height: 64px;
  width: 100%;
}

header .links {
  position: fixed;
  left: 16px;
  top: 8px;
  pointer-events: all;
  background-color: #032d60;
  border-radius: 10px;
  box-shadow: 0 0 10px #000000;
  height: 74px;
  z-index: 1000;
}

header .links a {
  position: relative;
  top: 16px;
  margin: 16px;
  display: none;
  font-family: "Charm", sans-serif;
}

header a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 10px;
  font-size: 1.1em;
  pointer-events: all;
}

header .links a:hover {
  color: #99abbe;
  text-decoration: underline;
}

header .container-menü {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 128px;
  z-index: 998;
  display: flex;
  background-color: rgba(14, 27, 111, 0.3);
  border-radius: 10px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header .container-menü.active {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 1, 1);
}

header .menu-on:hover {
  background-color: rgba(235, 235, 235, 0.4);
  color: #ffffff;
}

header .menu-on {
  position: fixed;
  top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  border: solid 0px;
  margin: 0 auto;
  background-color: rgba(235, 235, 235, 0.16);
  color: #bcbcbc;
  font-size: 1.1em;
  z-index: 999;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

header .menu-on.active {
  transform: rotate(270deg);
}

header .menu-on.hidden {
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease;
  transform: rotate(360deg);
}

/*media_700*/
@media (min-width: 700px) {
  header .links a {
    display: unset;
    display: inline;
    font-size: 1.1em;
  }

  header .logo-image {
    left: unset;
    right: 0px;
    height: 170px;
    width: 170px;
  }
}
