header {
  transition: all 0.5s ease 0s;
  position: relative;
  z-index: 9999;
  background: var(--primaire);
}
.navbar-brand img {
    max-width: 15rem;
  margin-top: 4.85rem;
    transition-duration: 0.5s;
}
.navbar-default {
    max-height: 6rem;
  transition: all 0.5s ease 0s;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);

}
.navbar-default .container,
.navbar-default .container-fluid {
  position: relative;
}

header.scrollHeader .navbar-default {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background-color:var(--primaire);
    left: 0;
    border-bottom: 1px solid var(--primaire-200);
    transition: all 0.2s ease 0s;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    animation: 0.95s ease 0s normal forwards 1 running headerAnimate;
}
@keyframes headerAnimate {
    0% {
        margin-top: -150px;
    }
    100% {
        margin-top: 0;
    }
}




.menu_area {
  position: relative;
  z-index: 2;
}
.navbar {max-height: 6rem;}
.menu_area .navbar-brand {
  transition: all 0.5s ease 0s;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.navbar-nav li {
  list-style: none;
  -webkit-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.navbar-nav li.has-sub > a {
  position: relative;
}
.navbar-nav li.has-sub a:hover,
.navbar-nav li.has-sub a:active,
.navbar-nav li.has-sub a:focus {
  color: #fff;
  background: none;
}
.navbar-nav li a {
  display: block;
  color: #9d9d9d;
  font-size: 17px;
  padding: 8px 42px 8px 32px;
  white-space: normal;
}
.navbar-nav > li {
  margin-left: 10px;
  text-align: center;
}
.navbar-nav > li.has-sub {
  padding-right: 13px;
  position: relative;
}
.navbar-nav > li.has-sub:hover .sub-menu {
    display: block;
  border-radius: 0;
}
.navbar-nav > li > a {
  position: relative;
  display: block;
  font-size: .9rem;
  font-family: 'AirbnbCerealBook';
  padding: 21px 0.5rem;
  color: var(--bs-black);
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  white-space: nowrap;
}
.menu_area-light .navbar-nav > li > a {
    color: #fff;
  }
.navbar-nav  a.dropdown-item{
  font-size: .95rem;
  font-family: ''AirbnbCerealLight'';
  color: var(--bs-black);
}
.navbar-nav > li> a:hover,
.navbar-nav > li.current > a {
  color: var(--secondaire)!important;
}
.navbar-nav > li.has-sub > a:hover {
  color: #000;
}
.navbar > ul > li.has-sub > a:hover:after {
  border-color: transparent #000 #000 transparent;
}
.navbar > ul > li.has-sub > a:after {
  position: absolute;
  top: 30px;
  right: -8px;
  content: "";
  border-color: transparent #282b2d #282b2d transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  display: block;
  height: 6px;
  transform: rotate(45deg);
  transition: border 0.3s ease 0s;
  width: 6px;
}
.navbar-nav  a.dropdown-item:hover{
  color: var(--secondaire)!important;
  background-color: var(--primaire)!important;
  font-family: 'AirbnbCerealBook';
}
.navbar-nav ul {
  position: absolute;
  /* left: -9999px; */
}
.navbar ul ul li {
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.navbar ul ul li:last-child {
  margin-bottom: 0;
}
.navbar-nav li > ul {
  padding: 15px 0;
  margin: 0 0 0 10px;
  border-radius: 5px;
  min-width: 225px;
  border: none;
}
.navbar-nav li:hover > ul {
  left: auto;
}
.navbar-nav > li.has-sub > ul {
  text-align: left;
  opacity: 0;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar-nav > li.has-sub:hover > ul {
  margin-top: 0;
  opacity: 1;
}

.navbar ul ul li:last-child > a,
.navbar ul ul li.last-item > a {
  border-bottom: 0;
}
a.btn-cotation,.btn-cotation-fix {
  color: var(--primaire);
  background-color: var(--secondaire);
  font-size: .9rem;
  font-family: 'AirbnbCerealMedium';
  padding: 0.6875rem 1.875rem;
  margin-left: 4rem;
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: .25rem;
  overflow: hidden;
}
a.btn-cotation{
  line-height: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
 a.btn-cotation:hover, a.btn-cotation:active, a.btn-cotation:focus {
  color: var(--primaire);
  background-color: #fff
}
/* Demande de cotation */
.btn-cotation-fix{
  margin: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  font-size: 1.25rem;
}
 
@media screen and (min-width: 992px) {
  
  .wrapper-boxed .scrollHeader .navbar-default {
      left: 0;
      margin: 0 auto;
      max-width: 1200px;
      right: 0;
  }
  header .navbar-nav li.has-sub a:hover {
      color: #fff;
  }
  header .navbar-nav li.current > a {
      color: #fff;
  }
  header .navbar-nav > li.has-sub > a:hover {
      color: #fff;
  }
  header .navbar > ul > li.has-sub > a:hover:after {
      border-color: transparent #fff #fff transparent;
  }
  header .navbar > ul > li.has-sub > a:after {
      border-color: transparent #fff #fff transparent;
  }
  header .navbar > ul > li.current > a:after {
      border-color: transparent #fff #fff transparent;
  }
  header.scrollHeader .navbar-nav > li > a {
      color: #fff;
  }
  header.scrollHeader .navbar-nav > li.has-sub > a:hover {
      color: var(--secondaire);
  }
  header.scrollHeader .navbar-nav li.current > a {
      color: #fff;
  }
  header.scrollHeader .navbar-nav li.current > a:hover {
      color: #fff;
  }
  header.scrollHeader .navbar > ul > li.current > a:after {
      border-color: transparent #fff #fff transparent;
  }
  .menu_area-light .navbar-nav li > ul {
      background: #fff;
  }
  .menu_area-light .navbar-nav li.has-sub a:hover {
      color: #282b2d;
  }
  .menu_area-light .navbar-nav li.current > a {
      color: #fff;
  }
  .menu_area-light .navbar-nav > li.has-sub > a:hover {
      color: #fff;
  }
  .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
      border-color: transparent #fff #fff transparent;
  }
  .menu_area-light .navbar > ul > li.has-sub > a:after {
      border-color: transparent #fff #fff transparent;
  }
  .menu_area-light .navbar > ul > li.current > a:after {
      border-color: transparent #fff #fff transparent;
  }
}
@media screen and (max-width: 1399px) {
  .navbar li > ul ul {
      margin-left: -290px;
  }
}
@media screen and (max-width: 1199px) {
  .navbar-nav > li {
      margin-left: 2px;
  }
}
@media screen and (max-width: 991px) {
    .navbar-brand img{
        margin-top: 0;
        max-width: 7rem;
      }
  .navbar-nav li > ul {
      -webkit-box-shadow: none;
      -ms-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
  }
  .navbar-nav > li.has-sub > ul {
      opacity: 1;
      margin: 0;
      -webkit-box-shadow: none;
      -ms-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
      -webkit-transition: all 0s ease;
      -ms-transition: all 0s ease;
      -moz-transition: all 0s ease;
      -o-transition: all 0s ease;
      transition: all 0s ease;
  }
  .navbar li > ul ul {
      margin: 0;
      min-width: auto;
  }
  .navbar-nav > li.has-sub {
      padding-right: 0;
  }
  .navbar-nav > li > a {
      padding: 14px 20px;
      color: #282b2d;
      font-size: 15px;
  }
  .navbar-nav {
      background: #fff;
      -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
      -ms-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
      box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
      position: fixed;
      top: 4.5rem;
      left: 0;
      width: 100%;
      width: 100%;
      display: none;
  }
  .navbar-nav li.active > a {
      opacity: 1;
  }
  .navbar-nav ul {
      width: 100%;
      display: none;
      transition: none;
      -ms-transition: none;
      -moz-transition: none;
      -webkit-transition: none;
      -o-transition: none;
  }
  .navbar-nav li {
      width: 100%;
      border-top: 1px solid #e6e6e6;
      position: relative;
      padding: 0;
      margin: 0;
      text-align: left;
  }
  .navbar-nav ul li:hover {
      background: #f5f5f5;
  }
  .navbar-nav ul ul li {
      height: auto;
  }
  .navbar-nav li:hover > ul > li {
      height: auto;
  }
  .navbar ul li a,.navbar-nav > li > a:hover, .navbar-nav > li.current a {
      width: 100%;
      border-bottom: 0;
      color: var(--primaire) !important;
        font-size:1rem;
        font-family: 'AirbnbCerealMedium';
  }
  .navbar > ul > li.has-sub > a::after{
    top: 50%;
    right: 1rem;
  }
  .navbar ul ul {
      position: relative;
      left: 0;
      width: 100%;
      margin: 0;
      text-align: left;
      background: #f5f5f5;
      padding: 0;
  }
  .navbar ul ul li {
      margin-bottom: 0;
      padding: 0;
      border-color: #e6e6e6;
  }
  .navbar ul ul li a {
      width: 100%;
      border-bottom: 0;
      color: #272c49;
      background: none;
      padding: 10px 35px 10px 30px;
  }
  .navbar > ul > li {
      float: none;
  }
  .navbar-nav ul ul {
      position: relative;
      left: 0;
      width: 100%;
      margin: 0;
      text-align: left;
      background: #f5f5f5;
      padding: 0;
  }
  .navbar-toggler {
        position: absolute;
        right: 0;
        cursor: pointer;
        z-index: 12399994;
        border: none;
  }
  .navbar-toggler.menu-opened:after {
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      top: 23px;
      border: 0;
      height: 2px;
      width: 19px;
      background: #fff;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
  }
  .navbar-toggler.menu-opened:before {
      top: 23px;
      background: #fff;
      width: 19px;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }
}
