header.wrap {
  margin-bottom: 35px;
  padding-top: 20px;

  position: relative;
}
header:after {
  content: "";
  display: block;
  clear: both;
}
header h1 {
  float: left;
  margin-top: 0;

  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
}

.logo {
  display: block;
  width: 248px;
  height: 73px;
  margin-top: 20px;

  text-indent: -5000px;

  background-image: url(img/logo.png);
  background-position: 0 0;
  background-repeat: no-repeat;
}
header h1 span {
  display: block;
  height: 42px;
  width: 51px;
  margin-right: 50px;
  margin-top: 25px;
  position: relative;
  z-index: 100;
  background-image: url(img/picto-group.png);
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  text-indent: -5000px;
}

/* --------------------------------------------------
    
  MENU
    
-------------------------------------------------- */

.menu {
  padding: 0;
  margin-left: 0px;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 44px;
  list-style: none;
  letter-spacing: 1px;

  font-family: "Raleway", sans-serif;

  float: right;
  font-weight: 800;
}
.menu li {
  float: left;
  margin-left: 25px;
  margin-right: 21px;
}
.menu li:last-child {
  margin-right: 0;
}
.menu li a {
  display: block;
  padding: 11px 0 8px 0;

  color: #8492aa;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 15px;

  font-size: 12px;
  letter-spacing: 4px;
}
.menu li a:hover {
  color: #003ca6;
}
.menu li.current-menu-item a {
  color: #003ca6;
  position: relative;
}
.menu li.current-menu-item a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  bottom: -20px;
  background-color: #003ca6;
}

header .languages {
  list-style: none;
  text-transform: uppercase;

  position: absolute;
  top: 0;
  right: 0;
}
header .languages li {
  float: left;
}
header .languages li:first-child:after {
  content: "/";
  color: #8492aa;
  display: inline-block;
  margin: 0 2px;
}
header .languages li a {
  color: #8492aa;
  text-decoration: none;
  font-weight: 400;
}
header .languages li a.current {
  color: #003ca6;
  font-weight: 700;
}

header .menu-mobile-btn {
  width: 46px;
  height: 46px;
  display: block;
  position: absolute;
  top: 10px;
  left: 0px;
  cursor: pointer;

  text-indent: -5000px;

  display: none;
}
header .menu-mobile-btn:before,
header .menu-mobile-btn:after {
  content: " ";
  width: 30px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  border: 0 solid #454545;
}
header .menu-mobile-btn:before {
  height: 16px;
  border-width: 6px 0;
  margin-top: -14px;
}
header .menu-mobile-btn:after {
  border-width: 6px 0 0;
  margin-top: -3px;
}
@media only screen and (max-width: 1420px) {
  header .languages {
    right: 20px;
  }
}

@media only screen and (max-width: 1370px) {
  header h1 {
    justify-content: center;
    float: none;
  }
  .menu {
    text-align: center;
    float: none;
  }
  .menu li {
    float: none;
    display: inline-block;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1040px) {
  .menu {
    background-color: rgba(255, 255, 255, 0.6);
    max-height: 0;
    overflow: hidden;

    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
  }
  .menu-open .menu {
    max-height: 1000px;
  }
  .menu li {
    display: block;
    margin-bottom: 5px;
  }
  header.wrap {
    padding-top: 60px;
  }
  header .menu-mobile-btn {
    display: block;
  }

  .menu li.current-menu-item a {
    text-decoration: underline;
  }
  .menu li.current-menu-item a:after {
    display: none;
  }
}
