@charset "UTF-8";
/**** Variables
===================================*/
@font-face {
  font-family: "Bakery";
  src: url("../font/bakery.woff2") format("woff2"), url("../font/bakery.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LouisGeorgesCafe";
  src: url("../font/lgc-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LouisGeorgesCafe";
  src: url("../font/lgc-bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LouisGeorgesCafe";
  src: url("../font/lgc-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "LouisGeorgesCafe";
  src: url("../font/lgc-bold-italic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "LouisGeorgesCafe";
  src: url("../font/lgc-light.woff") format("woff");
  font-weight: light;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LouisGeorgesCafe";
  src: url("../font/lgc-light-italic.woff") format("woff");
  font-weight: light;
  font-style: italic;
  font-display: swap;
}
/**** Code burger
===================================*/
/*Cacher les onglets des menus déroulant*/
.sub-menu {
  display: none;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sub-menu.open {
  display: block;
  opacity: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-container {
	position: relative;
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.main-header__nav .active{
	display: block !important;
	left: 0;
}

.main-header__nav .active li{
	margin: 0;
}

/*.current_page_item{
	background-color: #fbb03b !important;
    color: #fff !important;
}*/
.icon_burger {
  display: none;
}

.related ul li {
	padding-left: 0 !important;
  /*display: none;*/
}


@media only screen and (max-width: 965px) {
	.main-header__logo a img{
		padding-top: 70px;
		width: 140px;
	}
	
	.related ul {
	margin-top: 2rem !important;
  /*display: none;*/
}
	
	.spacer-header{
		display: none;
	}
	
	.nav-container{
		-webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
	}
	
  /*------------------------------------------------------------- Création de l'icone du burger (3 tirets sur un span !) */
  /*l'icone burger*/
  .icon_burger {
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: absolute;
	left: 15px;
    /*position en haut à droite*/
    float: right;
    margin: 0 10px;
    display: block;
  }
  /*le tiret central sur la span html*/
  .icon_burger span {
    background-color: #000;
    border-radius: 50px;
    /* en block car span est une balise inline par défaut !! */
    display: block;
    width: 100%;
    height: 3px;
    /*placer la span au mileu verticalement*/
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  /*création des 2 tirets en haut et en bas*/
  .icon_burger span::before,
  .icon_burger span::after {
    content: "";
    background-color: #000;
    border-radius: 50px;
    position: absolute;
    width: 100%;
    height: 3px;
  }
  /*déplace le tiret du haut en haut */
  .icon_burger span::before {
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  /*et le tiret du bas en bas */
  .icon_burger span::after {
    -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
            transform: translateY(10px);
  }
  /*-------------------------------------------------------------
  Cache le tiret central */
  /* .icon_burger.active = quand icon_burger contiendra aussi la class active */
  .icon_burger.active span {
    /* opacity: 0; cache le 3 tirets,
    on préfère un bgcolor transparent que le tiret centrel :-)*/
    background-color: transparent;
  }
  /*-------------------------------------------------------------
  Transformation en croix des tirets haut et bas */
  .icon_burger.active span::before {
    -webkit-transform: translateY(0px) rotateZ(45deg);
        -ms-transform: translateY(0px) rotate(45deg);
            transform: translateY(0px) rotateZ(45deg);
  }
  .icon_burger.active span::after {
    -webkit-transform: translateY(0px) rotateZ(-45deg);
        -ms-transform: translateY(0px) rotate(-45deg);
            transform: translateY(0px) rotateZ(-45deg);
  }
  /*-------------------------------------------------------------
  Animation de transition fluide */
  .icon_burger span {
    -webkit-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
  }
  .icon_burger span::before {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  }
  .icon_burger span::after {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  }
  /*Adaptation du menu de horizontale en menu verticale */
  .main-header {
    z-index: 10000;
    width: 100%;
    -webkit-box-shadow: 0px 0px 10px #c2c2c2;
            box-shadow: 0px 0px 10px #c2c2c2;
    top: 0;
  }
  body.admin-bar .main-header {
    top: 32px;
  }
  
  .tools-icons{
	  position: absolute;
	  right: 15px;
	  top: 80px;
  }
  body.admin-bar {
    /*margin-top: 70px;*/
  }

	.main-header__logo{
		z-index: 5;
	}
  
  #menu-nav-bar {
    width: 100%;
    position: absolute;
    top: 70px;
	left: 0;
	padding-top: 70px;
    background-color: #fff;
    margin-top: 75px;
    display: none;
    overflow-y: scroll;
  }
  #menu-main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #menu-main-menu li {
    width: 100%;
    height: 60px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .menu-item a {
    height: 60px;
	box-sizing: border-box;
    width: 100%;
    padding: 0px 30px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    border-bottom: 1px solid #c1c1c1;
  }
  .hero {
    padding-top: 90px;
  }
  main,
  .container-main-personnalisation,
  .container-main-contact,
  .container-main-galerie {
    padding-top: 70px !important;
  }
  .dgwt-wcas-search-wrapp {
    position: absolute;
    top: 65px;
    display: none;
    left: 50%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
    max-width: unset !important;
    width: 100%;
    padding: 15px 20px;
    background-color: rgb(242, 242, 242);
    border-bottom: 1px solid #c1c1c1;
  }
  .active {
    display: block;
  }
  .sub-menu {
    width: 100%;
  }
  .sub-menu li a {
    font-weight: 100;
    background-color: rgba(248, 248, 248, 0.8117647059);
    color: #383838;
  }
}/*# sourceMappingURL=header.css.map */
