/*
  Created by Stephane Arribart.
  Date: 06/09/2020
  Time: 10:25

  --- sidenav ---

*/
* {
  box-sizing: border-box;
}

li {
  list-style: none;
}

.menu-wrap {
  background-color: rgba(46, 34, 28, 0.95);
  position: fixed;
  top: 0;
  height: 100%;
  width: 720px;
  margin-left: -720px;
  font-size: 1em;
  font-weight: 300;
  overflow: auto;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
  text-align: center;
}
@media (max-width: 990px) {
  .menu-wrap {
    width: 100%;
    text-align: left;
  }
}

.menu-show {
  margin-left: 0;
}

.menu-sidebar {
  margin-top: 30px;
  vertical-align: middle;
  position: relative;
}
@media (max-width: 990px) {
  .menu-sidebar a.logo {
    margin-left: 70px;
  }
}

.menu-sidebar ul {
  margin: 0;
  padding: 0;
  column-count: 2;
  -webkit-column-count: 2;
  -webkit-perspective: 1;
  -webkit-column-gap: 30px;
  column-gap: 30px;
  text-align: left;
}
@media (max-width: 990px) {
  .menu-sidebar ul {
    column-count: 1;
  }
}

.menu-sidebar li {
  padding: 0 0 20px 0;
  margin: 0;
}

.menu-sidebar ul span.col_left, .menu-sidebar ul span.col_right {
  display: block;
  vertical-align: top;
}
@media (max-width: 990px) {
  .menu-sidebar ul span.col_left, .menu-sidebar ul span.col_right {
    display: block;
    margin-left: 70px;
  }
}

.menu-sidebar ul span.col_left {
  margin-left: 70px;
}

.menu-sidebar li > a, .menu-sidebar li > span.link {
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  font-family: "playfair_displayregular", serif;
  font-weight: normal;
  letter-spacing: 1px;
}

.menu-sidebar li > a:hover {
  color: #c49a6c;
}

.menu-sidebar li > span.subtitle a {
  color: #c49a6c;
  display: block;
  padding: 2px 0;
  font-size: 0.8em;
  letter-spacing: 1px;
}

.menu-sidebar li > span.subtitle a:hover {
  color: #fff;
}

.menu-sidebar li.social {
  display: table;
}

.menu-sidebar li.social > a {
  position: relative;
  display: table-cell;
  text-align: center;
  margin--right: 20px;
}

.menu-sidebar li.social > a > span {
  font-family: "robotoregular", serif;
  display: block;
  font-size: 6px;
  padding: 0 5px;
}

.logo_chateau {
  display: table;
  width: 90%;
  margin: 0 auto;
  padding: 0;
}

.logo_chateau span.ligne_chateau {
  display: table-row;
}

.logo_chateau span.lien_chateau {
  display: table-cell;
  vertical-align: middle;
}

.logo_chateau span.lien_chateau a {
  display: inline-block;
}

.logo_chateau span.lien_chateau a img {
  max-width: 55%;
  height: auto;
}

.logo_chateau span.lien_chateau a.cantegril {
  background: url(../TEMPLATE/logo_home_cantegril.png) center center no-repeat;
  background-size: 75%;
}
.logo_chateau span.lien_chateau a.cantegril:hover {
  background: url(../TEMPLATE/logo_home_cantegril_inv.png) center center no-repeat;
  background-size: 75%;
}

.logo_chateau span.lien_chateau a.clos_floridene {
  background: url(../TEMPLATE/logo_home_clos_floridene.png) center center no-repeat;
  background-size: 75%;
}
.logo_chateau span.lien_chateau a.clos_floridene:hover {
  background: url(../TEMPLATE/logo_home_clos_floridene_inv.png) center center no-repeat;
  background-size: 75%;
}

.logo_chateau span.lien_chateau a.doisy_daene {
  background: url(../TEMPLATE/logo_home_doisy_daene.png) center center no-repeat;
  background-size: 75%;
}
.logo_chateau span.lien_chateau a.doisy_daene:hover {
  background: url(../TEMPLATE/logo_home_doisy_daene_inv.png) center center no-repeat;
  background-size: 75%;
}

.logo_chateau span.lien_chateau a.haura {
  background: url(../TEMPLATE/logo_home_haura.png) center center no-repeat;
  background-size: 75%;
}
.logo_chateau span.lien_chateau a.haura:hover {
  background: url(../TEMPLATE/logo_home_haura_inv.png) center center no-repeat;
  background-size: 75%;
}

.logo_chateau span.lien_chateau a.reynon {
  background: url(../TEMPLATE/logo_home_reynon.png) center center no-repeat;
  background-size: 75%;
}
.logo_chateau span.lien_chateau a.reynon:hover {
  background: url(../TEMPLATE/logo_home_reynon_inv.png) center center no-repeat;
  background-size: 75%;
}

.logo_chateau span.lien_chateau a.doisy_dubroca {
  background: url(../TEMPLATE/logo_home_doisy_dubroca.png) center center no-repeat;
  background-size: 75%;
}
.logo_chateau span.lien_chateau a.doisy_dubroca:hover {
  background: url(../TEMPLATE/logo_home_doisy_dubroca_inv.png) center center no-repeat;
  background-size: 75%;
}

.toggle-button {
  position: fixed;
  width: 44px;
  height: 40px;
  top: 50px;
  left: 40px;
  padding: 4px;
  transition: 0.25s;
  z-index: 15;
}

.toggle-button:hover {
  cursor: pointer;
}

.toggle-button .menu-bar {
  position: absolute;
  border-radius: 2px;
  width: 80%;
  transition: 0.5s;
}

.toggle-button .menu-bar-top {
  border: 2px solid #c49a6c;
  border-bottom: none;
  top: 0;
}

.toggle-button .menu-bar-middle {
  height: 2px;
  background-color: #c49a6c;
  margin-top: 7px;
  margin-bottom: 7px;
  top: 4px;
}

.toggle-button .menu-bar-bottom {
  border: 2px solid #c49a6c;
  border-top: none;
  top: 22px;
}

.button-open .menu-bar-top {
  border-color: #c49a6c;
  transform: rotate(45deg) translate(8px, 8px);
  transition: 0.5s;
}

.button-open .menu-bar-middle {
  background-color: #c49a6c;
  transform: translate(230px);
  transition: 0.1s ease-in;
  opacity: 0;
}

.button-open .menu-bar-bottom {
  border-color: #c49a6c;
  transform: rotate(-45deg) translate(7px, -7px);
  transition: 0.5s;
}

.bottom_nav {
  bottom: 30px;
  position: absolute;
  width: 100%;
}
@media (max-width: 1200px) {
  .bottom_nav {
    position: relative;
    margin-left: 70px;
  }
}
@media (max-height: 768px) {
  .bottom_nav {
    position: relative;
  }
}

.bottom_nav a {
  color: #c49a6c;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "playfair_displayregular", serif;
  font-size: 0.8em;
}

.bottom_nav a:hover {
  color: #fff;
}

.local a {
  padding: 0 10px;
  border-right: 1px solid #fff;
}

.local a:last-child {
  border-right: none;
}

.bottom_nav span a {
  color: #c49a6c;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "robotoregular", serif;
  font-weight: normal;
  font-size: 0.6em;
}

.bottom_nav span a:hover {
  color: #fff;
}

/*# sourceMappingURL=sidenav.css.map */
