@charset "UTF-8";

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

.header {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50px;
  margin: auto;
  background: var(--dark);
  z-index: 2000;

}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}

.header .menu {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  padding: 0;
}

.header .menu>.menu-item {
  position: relative;
  display: inline-block;
  margin: 0 10px;
}

.header .menu>.menu-item>a {
  display: block;
  font-family: 'Intelo', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .8rem;
  text-decoration: none;
  padding: 1rem 0;
  color: var(--olive-2);
  -webkit-transition: all 0.05s ease;
  transition: all 0.05s ease;
}

.header .menu>.menu-item>a .expand {
  position: relative;
  display: inline-block;
  width: auto;
  pointer-events: none;
  border: none;
  outline: none;
}

@media screen and (max-width:768px) {
  .header .menu>.menu-item>a .expand {
    width: 0.75rem;
  }

  .header .menu>.menu-item>a .expand:before, .header .menu>.menu-item>a .expand:after {
    position: absolute;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: var(--dark-cream);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.05s ease;
    -moz-transition: all 0.05s ease;
    -o-transition: all 0.05s ease;
    transition: all 0.05s ease;
  }
}

.header .menu>.menu-item:hover>a {
  color: var(--cream);
}

.header .menu>.menu-item>a .expand::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

/* sous menu hover*/
.header .menu>.menu-item>.sub-menu>.menu-item>a:hover {
  color: var(--dark);
  margin-left: 5px;
  -webkit-transition: all 0.05s ease;
  transition: all 0.05s ease;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a.active {
  color: var(--dark);
  margin-left: 0;
  font-weight: 600;
  pointer-events: none;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a.active {
  color: var(--dark);
  margin-left: 0;
  font-weight: 600;
  pointer-events: none;
}

/* réglage sous-menu dropdown*/
.header .menu>.menu-item>.sub-menu {
  position: absolute;
  top: 101%;
  left: -1rem;
  width: 13.5rem;
  height: auto;
  padding: 0;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: var(--cream);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-box-shadow: var(--shadow-large);
  box-shadow: var(--shadow-medium);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 10px 0 0;
}

.square:after {
  content: "";
  position: absolute;
  left: 20px;
  top: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent var(--cream) transparent;
  z-index: 9998;
}

/* * * * * * * * * * *
ANIMATION MENU DROPDOWN POUR DESKTOP
* * * * * * * * * * */
@media only screen and (min-width: 768px) {
  .dropdown:hover .dropdown_menu--animated {
    display: block;
  }

  .dropdown_menu_animated {
    display: none;
  }

  .dropdown_menu--animated li {
    display: block;
    opacity: 1;
  }

  .dropdown_menu-animation {
    animation: growDown 200ms ease-in-out forwards;
    transform-origin: top center;
  }

  @-moz-keyframes growDown {
    0% {
      transform: translateZ(100px) transLateY(15px);
      opacity: 0;
    }

    80% {
      transform: translateZ(-10px) transLateY(0px);
      opacity: 1;
    }

    100% {
      transform: translateZ(0px) transLateY(0px);
      opacity: 1;
    }
  }

  .header .menu>.menu-item>.sub-menu {
    position: absolute;
    top: 101%;
    left: -1rem;
    width: 13.5rem;
    height: auto;
    padding: 0;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: var(--cream);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -webkit-box-shadow: var(--shadow-large);
    box-shadow: var(--shadow-medium);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 10px 0 0;
  }
}

.menu>.menu-item>.sub-menu>.menu-item {
  display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
  display: block;
  font-family: 'Intelo', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-size: .8rem;
  padding: 0.5rem 1.25rem;
  color: var(--olive);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.header .burger {
  position: relative;
  cursor: pointer;
  display: none;
  width: 1.75rem;
  height: 1rem;
  margin-top: -0.25rem;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .burger-line {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  le: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: var(--cream);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header .burger-line:nth-child(1) {
  top: 0;
}

.header .burger-line:nth-child(2), .header .burger-line:nth-child(3) {
  top: 0.5rem;
}

.header .burger-line:nth-child(4) {
  top: 1rem;
}

.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

#boutique {
  font-family: 'Intelo', sans-serif;
  color: var(--cream);
  font-weight: 600;
  font-size: .85em;
  margin-left: 2.5em;
}

@media only screen and (min-width: 768px) {
  .header .menu>.menu-item-child:hover>.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .header .menu>.menu-item-child:hover>a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  #boutique {
    display: none;
  }

  .mobile-nav-logo {
    display: none;
  }

  .close {
    display: none;
  }
}

/* * * * * * * * * * *
REGLAGES RESPONSIVE
* * * * * * * * * * */
@media only screen and (max-width: 768px) {
  .dropdown_menu-animation {
    animation: none;
  }

  .header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: auto;
    margin-left: 2%;
  }

  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-logo {
    height: 60px;
    margin: -.34rem 0 0 -13px;
  }

  .header .navbar {
    position: fixed;
    display: flex;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 999;
    overflow-y: auto;
    visibility: hidden;
    background: var(--cream);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .header .navbar.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  /* reglage mobile  sous menu ouvert et +++ */
  .header .menu {
    width: 100%;
    margin: 1rem 10px 0 2rem;
  }

  .header .menu>.menu-item {
    display: block;
    margin: 0;
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a.active {
    color: var(--olive);
  }

  /* "+" à droite liste submenu */
  .header .menu>.menu-item-child>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 300;
    -webkit-transition: all .05s ease;
    -moz-transition: all 0.05s ease;
    -o-transition: all 0.05s ease;
    transition: all .05s ease;
  }

  .header .menu>.menu-item>a {
    padding: 1em 1.25rem;
    color: var(--dark);
    margin-left: -2rem;
    font-weight: 600;
  }

  .header .menu>.menu-item>a:hover {
    padding: 1em 1.25rem;
    color: var(--dark);
  }

  .header .menu>.menu-item>a .expand::before, .header .menu>.menu-item>a .expand::after {
    background: var(--dark);
  }

  .header .menu>.menu-item-child.active>a .expand:after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .header .menu>.menu-item:hover>a {
    color: var(--dark);
  }

  .header .menu>.menu-item>.sub-menu {
    position: relative;
    top: auto;
    left: -1.5rem;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a {
    padding: 0.6rem 2rem;
    font-weight: 600;
    font-size: .75em;
    color: var(--olive);
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a:hover {
    padding: 0.6rem 2rem;
    font-weight: 600;
    font-size: .75em;
    color: var(--dark);
  }

  .header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .square:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0;
    border-color: transparent transparent var(--cream) transparent;
    z-index: 0;
  }
}

@media screen and (max-width: 768px) {
  .header .menu>.menu-item>.sub-menu-plus {
    left: auto;
    right: -1rem;
  }

  .header .menu>.menu-item>.sub-menu-plus.square::after {
    left: auto;
    right: 14px;
  }
}

li {
  list-style: none;
}

.close {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 28px;
  color: var(--dark);
  z-index: 100;
  height: 40px;
}

.close:hover {
  color: var(--olive);
}

.sticky {
  position: fixed;
  width: 100%;
  left: 0;
  top: 100px;
  z-index: 600;
}

.sticky+.content {
  top: 100px;
}

@media only screen and (max-width: 768px) {
  .sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 80px;
    z-index: 600;
  }

  .sticky+.content {
    top: 80px;
  }
}

@media only screen and (min-width: 768px) {
  .header .menu>li.menu-item.hidden_xl {
    display: none;
  }

  .hidden_xl {
    display: none;
    pointer-events: none;
  }

  .header .menu>.menu-item.color_reverse>a {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .header .menu>.menu-item-child.hidden_xs {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
.hidden_xs {
  display: none;
}
}

.header .menu>.menu-item.color_reverse>a {
  padding: 1em 1.25rem;
  color: var(--olive);
  margin-left: -2rem;
  font-weight: 600;
  -webkit-transition: all .02s ease;
  -moz-transition: all 0.02s ease;
  -o-transition: all 0.02s ease;
  transition: all .25s ease;
}

.header .menu>.menu-item.color_reverse>a:hover {
  padding: 1em 1.25rem;
  color: var(--olive);
  margin-left: -2rem;
  letter-spacing: 1px;
}

.header .menu>.menu-item.color_reverse>a.active {
  padding: 1em 1.25rem;
  color: var(--dark);
  margin-left: -2rem;
  font-weight: 600;
  pointer-events: none;
}

.menu__divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: 1px;
  margin: 10px 0 10px -40px;
}
.cc-revoke{
  display: none;
}

@media screen and (min-width: 768px) {
  .visible_xs{
    display: none;
  }
}

.boutique {
  font-family: 'Intelo', sans-serif;
  font-weight: 600;
  font-size: 1.2em;
  color: var(--dark);
  margin: 0 0 30px -15px;
}

hr.nav_responsive {
  width: 100%;
  background-color: #d8d8d1;
  border: 0 none;
  height: 1px;
  margin: 20px 0 0;
}

hr.nav_responsive:last-child {
  margin: .5rem 0 10px -.95rem;
}

@media screen and (min-width: 768px) {
  hr.nav_responsive, hr.nav_responsive:last-child {
  display: none;
  }
.hiddden_xl, .boutique {
  display: none;
  }
}


/*  POINT DE RUPTURE RESPONSIVE 768PX  */
