@charset "utf-8";
/* CSS Document */
/*------------------------  NAVIGATION -------------------------*/

.block-nav-desktop {
display: inline;
}

.block-nav-smartphone {
display: none;
}

.bandeau-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  position: fixed;
  padding: 0 32px;
  top: 0;
  width: 100%;
  height: 85px;
  font-family: "Manrope Medium";
  font-weight: 500;
  font-size: 16px;
  color: #5B6E83;
  background: #fff;
  /*box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);*/
  border-bottom: 1px solid #E6EBF0;
  z-index: 100;
}

.bandeau-nav-logo {
  width: 200px;
}
.bandeau-nav-logo img {
  width: 200px;
  height: auto;
}
.bandeau-nav-link {
  width: 100%;
  font-family: "Manrope Medium";
  font-weight: 500;
  text-align: center;
}

.bandeau-nav-link ul {
  display: inline-block;
}
.bandeau-nav-link li {
  display: inline-block;
  list-style-type: none;
  line-height: 85px;
  height: 85px;
  padding: 0px;
}

.bandeau-nav-link a {
  font-family: "Manrope Medium";
  font-weight: 500;
  font-size: 16px;
  color: #5B6E83;
  text-decoration: none;
  cursor: pointer;
  padding: 0px 0px 27px;
  margin-left : 16px;
  margin-right :16px;
}
.bandeau-nav-link a:hover {
  color: #283c50;
  /*padding: 0 16px 26px;*/
  border-bottom: 5px solid #283C50;
}
.bandeau-nav-link h1 {
  text-transform: uppercase;
  font-size: 35px;
}
.bandeau-nav-link span {
  text-transform: none;
  font-size: 16px;
}

.bandeau-nav-link-selected {
  /*padding: 0 16px 26px;*/
  border-bottom: 5px solid #283C50;
  color : #283C50;
}

.menu-no-hover a {
  border-bottom: 0px solid #283c50 !important;
}
.menu-no-hover a:hover {
  border-bottom: 0px solid #283c50 !important;
}


.bandeau-nav-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sous-menu-nav {
  display: flex;
  /*align-items: center;*/
  justify-content: center;
  position: absolute;
  /*top: 90px;*/ /*132px*/
  left: 0;
  height: 85px;
  width: 100%;
  z-index: 10;
  background: #fff;
  color: #5B6E83;
  border-bottom: 1px solid #E6EBF0;
box-shadow: 0px 10px 10px 0px rgba(0, 0, 17, 0.04);
}
.sous-menu-nav a {
  display: inline-block;
  padding: 0 20px;
  height: 85px;
  line-height: 84px;
  color: #5B6E83;
  text-decoration: none;
}
.sous-menu-nav a:hover {
color:#283c50;
text-decoration: underline;
border-bottom: 0px;
}

/*  BURGER */
.menu-toggle {
  display: none;
}
.bar1, .bar2, .bar3 {
  width: 32px;
  height: 3px;
  background-color: #293C50;
  margin: 6px 0;
  transition: 0.4s;
  border-radius : 2px;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
  transform: rotate(-45deg) translate(-5px, 6px);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}






@media only screen and (max-width : 959px) {

.block-nav-desktop {
display: none;
}

.block-nav-smartphone {
display: inline;
}
  .menu-toggle {
    display: block;
    margin: 2px 32px 0 0;
    width: 45px;
    height: 45px;
    padding: 5px 0 0;
    cursor: pointer;
  }
  .bandeau-nav {
  justify-content: space-between;
    padding: 0px;
    height: 85px;
  }

    .bandeau-nav-link {
    position: absolute;
    top: 85px;
    width: 100%;
    float: none;
    margin: 0;
    z-index: 10;
}
    .bandeau-nav-link ul {
    display: none;
    background: rgba(255,255,255,1);
    margin: 0;
	padding : 16px;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 17, 0.16);
  }

  .bandeau-nav-link li {
    display: block;
	font-family: "Manrope Bold";
    /*background: rgba(255,255,255,0.5);*/
    font-size: 17px;
    text-align: left;
    width: 100%;
    height: auto;
	line-height: 40px;
    padding: 4px 0px;
	background: #F3F3F8;
	margin : 8px 0px;
	border-radius: 8px;
  }
  .bandeau-nav-link span {
    padding: 8px;
  }

  .bandeau-nav-link a {
    /*display: inline-block;*/
    text-decoration: none;
    width: 100%;
    padding: 0px;
}
  .bandeau-nav-link a:hover {
      color: #283c50;
    border-bottom: 0px solid #869bae;
    cursor: pointer;
}
  .bandeau-nav-logo {
    width: 100%;
    text-align: left;
        padding: 8px 0 0 32px;
  }
  .bandeau-nav-logo img {
    width: 160px;
  }
  
  .sous-menu-nav2 {
  height: auto;
  width: 100%;
  z-index: 10;
}
.sous-menu-nav2 a {
    display: block;
    font-size: 15px;
    padding: 16px;
    height: auto;
    line-height: 20px
}
.sous-menu-nav2 a:hover {
  color: #5b6e83;
  /*height: 60px;*/
}
  
  
}