
header{
  background: linear-gradient(90deg, #306FDB 1.81%, #1A438B 98.61%);
  position: relative;
  font-family: Fira Sans;
  color: #fff;
  font-weight: 700;
  padding: 0 10px;
}
.navigation-wrapper{
  display: flex;
  justify-content: space-between;    
  min-height: 36px;
  height: 36px;
}
.navigation #menu-headermenu li:nth-child(2){
  margin: 0 20px;
}
.nav-toggle{
  width: 38px;
  padding: 8px 8px;
  cursor: pointer;
  margin-right: 8px;
}
.nav-toggle span{
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background-color: #fff;
  transition: all .25s;
}

/* collpase menu */
ul#menu-headermenu{
  position: absolute;
  margin-right: 0;
  display: block;
  width: 100%;
  background-color: #fff;
  left: 0;
  padding: 0 10px;
  margin-top: 35px;
  box-shadow: 0 3px 5px hsla(0,0%,0%,.1);
  overflow: hidden;
  transition: all .3s ease-out;
  z-index: 10;
  max-height: 0;
}
ul#menu-headermenu.collapse {
  max-height: 15em;
}
ul#menu-headermenu li{
  display: flex;
  position: relative;
  transition: color .35s ease;
  color: #456;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 19px;
  border-bottom: 2px solid transparent;
}
.navigation #menu-headermenu li:nth-child(2){
  margin: 0;
}


@media screen and (min-width: 767px) {
  .navigation{
      padding-right: 20px;
  }
  .navigation-wrapper{
      min-height: 64px;
      align-items: center;
      max-width: 1336px;
      margin: 0 auto;
  }
  ul#menu-headermenu li{
    color: #fff;
  }
  .navigation #menu-headermenu  li:nth-child(2){
    margin: 0 20px;
  }
  .navigation #menu-headermenu li:hover{
      border-bottom: 2px solid #fff;
  }
  ul#menu-headermenu{
      display: flex!important;
      max-height: fit-content;
      margin: 0;
      position: unset;
      background: unset;
      padding: 0 10px;
      box-shadow: none;
  }
  .navigation-wrapper .logo a img,
  .navigation-wrapper .headerlogo a img{
      width: 250px;
      height: auto;
  }
  a.hide-in-deskop.nav-toggle{
      display: none;
  }
}
@media screen and (max-width: 767px) {
  ul#menu-headermenu li a{
      padding: 0.5em 0;
  }
}