header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 998;
  box-shadow: 0px 0.5px 0.5px black;
}
.navbar {
  font-size: 18px;
  background-color: #003638;
  padding-top: 5px;
  padding-bottom: 5px;
}
.navliste {
  list-style-type: none;
  display: none;
}
.navliste li, .navliste li a {
  text-align: left;
  text-decoration: none;
  color: white;
  font-weight: 200;
  font-size: 24px;
  line-height: 2.4;
  cursor: pointer;
}
.logo {
  display: inline-block;
  margin-top: 10px;
  margin-left: 20px;
  font-size:35px;
  font-weight:400;
  color:white;
  cursor: pointer;
}
header img {
  margin-right: 7px;
  height: 50px;
}
.headerContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.headerLinks {
  display: flex;
  align-items: center;
}
.headerLinks > div {
  display: table-cell;
  vertical-align: middle;
}

/* Hamburger Menu Icon */

.navbar-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: white;
}
.active {
  display: block;
}
.container {
  display: inline-block;
  cursor: pointer;
}
.bar1, .bar2, .bar3 {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 8px 0;
  transition: 0.4s;
  border-radius: 2px
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: translate(-10px, 11px) rotate(45deg);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: translate(-10px, -11px) rotate(-45deg);
}

@media screen and (min-width: 765px) {
  .navbar {
      display: flex;
      justify-content: space-between;
      padding-bottom: 0;
      height: 70px;
      align-items: center;
      padding-bottom: 10px;
      padding-right: 5%;
  }
  .navliste {
      display: flex;
      margin-right: 30px;
      flex-direction: row;
      justify-content: flex-end;
  }
  .navliste li {
      margin: 0;
      margin-left: 35px;
      line-height: 1;
  }
  .navbar-toggle {
      display: none;
  }
}