header {
    background-color: #fff;
    padding-top: 10px;
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: bold;
    color: #3F8ED9;
  }


@media screen and (max-width: 1400px) {
    header{
        font-size: 21px;
    }
}

@media screen and (max-width: 1100px) {
  header{
      font-size: 18px;
  }
}

  nav {
    display: flex;
    padding-left: 110px;
    padding-right: 10%;
    justify-content: space-between;
    align-items: center;
  }

  
  .logo img {
    height: 130px;
    width: auto;
  }

  @media screen and (max-width: 1400px) {
    .logo img {
      height: 100px;
    }
}

@media screen and (max-width: 1100px) {
  .logo img {
    height: 80px;
    width: auto;
  }
}

  
  .menu {
    list-style-type: none;
    margin: 0;
    margin-left: 5%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  
  .menu.hide {
    opacity: 0;
  }
  
  .menu li {
    margin-right: 20px;
  }
  
  .menu li a {
    text-decoration: none;
    color: inherit;
  }

  /**/
.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
  display: none;

}

.logokl img {
  height: 60px;
  width: auto;
}

.topnav #myLinks {
  display: none;
}

/* .topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background:#fff;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
} */

.topnav a {
  color: rgb(114, 114, 114);
  background-color: #fff;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 25px;
  display: block;
  justify-content: right;
}

.topnav a.icon {
  background:#fff;
  display: block;
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  width: 40px;
  height: 40px;
}

.topnav a:hover {

}

.active {
background-color: #fff;
}
/**/
  
  @media screen and (max-width: 900px) {
    nav{
      display: none;
    }
  
    .menu.hide {
      display: flex;
    }
  
    .burger-menu {
      display: block;
    }

    .topnav {
      display: block;
    }
  }
  
  .menu li:hover a {
    color: #0168c8; /* Change to the desired color */
  }
  
  .menu:hover li:not(:hover) a {
    color: #75a7d6; /* Change to the default color */
  }

  /* Hover Underline */

  a.left{ position: relative;}
  a.left:before {content: ""; 
    position: absolute;  
    width: 0;  
    height: 2px;  
    bottom: 0;  
    left: 0;  
    background-color: #3F8ED9;  
    visibility: hidden;  
    transition: all 0.3s ease-in-out;}
  a.left:hover:before {  visibility: visible;  width: 100%;}
  
/* ENDE HEAD*/

.headline {
    width: 100%;
    height: 3px;
    margin-left: 0%;
    margin-right: auto;
    background-color: #3F8ED9;
    background: linear-gradient(90deg, rgba(63,142,217,1) 0%, rgba(63,142,217,0) 100%);
    border: 0 none;
  }


