@charset "UTF-8";
/* --- FEUILLE DE STYLE --- */
/* --- COULEURS --- */
/*
Bordeau : #7A1B39, rgba(122,27,57,1)
Or :#C19947, rgba(193,153,71,1) 
*/
/** --->>> GLOBAL --- **/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*  margin: 0;
    padding: 0;
    */
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  /* Attention les fonctions JS scroll ne marcheront pas avec overflow-x: hidden; */
  /*overflow-x: hidden;*/
}

body {
  background-color: white;
  scroll-behavior: smooth;
}

p, div, td {
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2 {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: rgba(140, 29, 64, 0.2);
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  transition: all 0.2s ease;
}

h1 {
  margin-bottom: 25px;
}

h1 > .ombre, h2 > .ombre {
  position: absolute;
  color: #8C1D40;
  text-transform: none;
  right: 10px;
  top: 16px;
  font-size: 22px;
}

.isHome h1, .isHome h2 {
  line-height: inherit;
}
.isHome h2 {
  /*right: 10%;*/
  font-size: 70px;
}

.isHome h2 > .ombre {
  top: 40px;
  font-size: 40px;
}

/* --->>> CLASSES GENERALES */

.rubrique {
  max-width: 1300px;
  margin: 50px auto 0 auto;
  cursor: default;
}

.container {
  width: 1300px;
  margin: auto;
}

.spacer {
  clear: both;
}

.flexRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.flexColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

.noscroll {
  overflow-x: hidden;
}

.alignleft {
  float: left;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
}

.toright {
  text-align: right;
  margin-right: 5%;
}

.toleft {
  text-align: left;
  margin-left: 5%;
}

.corner {
  position: absolute;
  z-index: 1;
  background: white;
  height: 100px;
  width: 100vw;
}

.corner.rightTop {
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  bottom: -0.5px;
}

.corner.rightBottom {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  top: -0.5px;
}

.corner.leftTop {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  bottom: -0.5px;
}

/* --->>> HEADER <<<--- */

header {
  z-index: 5;
  position: fixed;
  width: 100%;
  height: 130px;
  margin-top: 30px;
  padding: 0 25px;
  background-color: white;
  opacity: 0.85;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  font-family: 'Playfair Display', serif;
  -webkit-box-shadow: 0px 5px 28px -4px rgba(120, 120, 120, 0.5);
  box-shadow: 0px 5px 28px -4px rgba(120, 120, 120, 0.5);
}

header .header_container {
  height: 100%;
  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;
  max-width: 1920px;
  margin: auto;
}

header.scroll, header.noBandeau {
  margin-top: 0;
  opacity: 1;
}

header #logo {
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 100px;
  width: 120px;
}

header nav {
  margin-bottom: 15px;
}

header nav .menu_principal > li {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: black;
  text-align: center;
  font-family: 'Playfair Display', serif;
  display: inline-block;
  margin-left: 40px;
  padding-top: 15px;
  position: relative;
}

header nav .menu_principal > li:not(.myArqana) .lien_menu_principal {
  padding-bottom: 30px;
}

header nav .menu_principal > li:not(.myArqana)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: none repeat scroll 0 0 transparent;
  background: #8C1D40;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

header:not(.resp) nav .menu_principal > li:hover::after {
  width: 100%;
  left: 0;
}

header nav .menu_principal > li:not(.myArqana):hover .lien_menu_principal {
  color: #7A1B39;
}

header:not(.resp) nav .menu_principal > li:not(.myArqana):hover .menu_secondaire {
  opacity: 1;
  visibility: visible;
}

header:not(.resp) nav .menu_principal > li:not(.myArqana):hover .arrow-down {
  opacity: 1;
  left: calc(100% - 20px);
}

header:not(.resp) nav .arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #8C1D40;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 100%;
}

header nav .menu_principal .lien_menu_principal {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

header:not(.resp) nav .myArqana > a {
  cursor: pointer;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #8C1D40), color-stop(50%, #C19947));
  background: linear-gradient(to right, #8C1D40 50%, #C19947 50%);
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto auto;
  background-size: 200% 100%;
  background-position: right bottom;
  padding: 10px 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

header:not(.resp) nav .myArqana > a:hover {
  color: white;
  background-position: left bottom;
}

header nav .menu_secondaire {
  position: fixed;
  left: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0px 2px 20px -5px rgba(120, 120, 120, 0.5) inset;
  box-shadow: 0px 2px 20px -5px rgba(120, 120, 120, 0.5) inset;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

header nav .menu_secondaire .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
  padding: 25px 0;
}

header nav .menu_secondaire .container ul {
  text-align: left;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

header nav .menu_secondaire .titre_sousmenu {
  display: block;
  color: #8C1D40;
  font-size: 16px;
  margin-bottom: 10px;
}

header nav .menu_secondaire .item_sousmenu {
  text-transform: none;
  line-height: 30px;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: solid transparent 1px;
}

header nav .menu_secondaire .item_sousmenu:hover {
  color: #8C1D40;
  border-bottom: solid #8C1D40 1px;
}

header #search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

header #language_choice {
  text-transform: uppercase;
  margin-right: 8px;
  font-size: 16px;
}

#form_haut_search {
  width: 330px;
  position:relative;
}

header #search form input {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  width: 100%;
  height: auto;
  padding: 6px;
}

header #search #mySearch_close, header #search #mySearch_submit {
  opacity: 0;
  background-color: #888;
  color: #fff;
  width: 25px;
  height: 25px;
  margin-top: 0px;
  margin-right: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border-style: none;
  text-align: center;
  cursor: pointer;
  font-size: 11px;
  position: absolute;
  top: 8px;
  font-weight: 400;
  font-family: Arial;
}

/* search preview */
                        #header_search_conteneur {
                          position:relative;
                          
                        }
                        #mySearch_preview {
                          position:absolute;
                          width:330px;
                          height:auto;
                          left:0;
                          top:40px;
                          background-color:#fff;
                          z-index:999999;
                          opacity: 1;
                        }
                        #search_preview {
                         -webkit-box-shadow: 0 0 1px 1px rgba(0,0,0,0.1);
                         box-shadow: 0 0 1px 1px rgba(0,0,0,0.1);     
                         background-color:#fff;                   
                        }
                        
                        .recherche_preview_els {
                          background-color:#fff; 
                        }
                        .rp_el {
                          padding:5px;                         
                          background-color:#fff; 
                          border-bottom:1px solid rgba(100,100,100,0.3);
                          cursor:pointer;
                          
                        }
                        .rp_el:hover {
                          background-color:#eee;
                        }
                        .rp_el div {
                          font-size:12px;
                          font-family: Arial;
                          font-weight:200;
                        }
                        .rp_el {
                          display:flex;
                          justify-content: space-between;
                        }
                        .rp_el_t {
                          color:#999;
                          text-transform:uppercase;
                        }

/* image header intérieure */
#bandeau_header {
    position: relative;
    height: 75vh!important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color:#ddd;
}

#bandeau_header.bg_img {
  width: 100%!important;
}

/* SEARCH ( à partir de 600px ) */
#form_haut_search.active {
  display: block;
  position: absolute;
  bottom: -65px;
  width: 90%;
  left: 0;
  margin: 0 auto;
  right: 0;
}

/* MENU RESPONSIVE ( à partir de 1200px ) */
#fond {
  height: 0%;
  width: 0%;
  overflow: hidden;
}

#fond.resp {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 4;
}

header.resp {
  opacity: 1;
}

header.resp.scroll nav {
  top: 100px;
}

header.resp nav {
  display: block;
  position: fixed;
  left: 0;
  top: 130px;
  overflow-y: auto;
  width: 100%;
  background-color: #581329;
  padding: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  max-height: 70vh;
}

header.resp nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

header.resp nav .menu_principal > li:not(.myArqana) .lien_menu_principal {
  padding-bottom: 10px;
}

header.resp nav .menu_principal > li {
  display: block;
  width: 90%;
  margin: 8px 0;
  cursor: pointer;
  padding: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

header.resp nav .menu_principal > li:hover > .lien_menu_principal {
  background-color: #b92553;
}

header.resp nav .menu_principal > li:hover .lien_menu_principal {
  color: white;
}

header.resp nav .menu_principal .lien_menu_principal {
  display: block;
  padding: 10px 0;
  background-color: #8C1D40;
  font-size: 16px;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

header.resp nav .menu_secondaire {
  position: relative;
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin-top: 0;
  width: 100%;
  background-color: transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  overflow: hidden;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

header.resp nav .menu_secondaire.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin-top: 10px;
}

header.resp nav .menu_secondaire .container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0;
}

header.resp nav .menu_secondaire .container ul {
  margin: 0 2px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

header.resp nav .menu_secondaire .titre_sousmenu {
  display: block;
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
  background-color: #771735;
  padding: 10px 0;
}

header.resp .menu_secondaire .item_sousmenu {
  color: white;
}

header.resp .menu_secondaire .item_sousmenu:hover {
  color: white;
  border-bottom: 1px solid white;
}

#btn_haut_live {
  font-size: 16px;
  color:rgb(140, 29, 64);
  margin-right:10px;  
  font-weight:500;
}

/* BOUTON MENU RESPONSIVE ( à partir de 1200px ) */
.btnHeader {
  background-color: #8C1D40;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
}

.btnHeader:hover {
  background-color: #CEBC97;
}

#btnSearch {
  background-image: url("../images/icon_magnifier_white.svg");
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
}

#btnMenuResp {
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
  margin-left: 10px;
  position: relative;
  text-align: center;
  vertical-align: middle;
}

#btnMenuResp span {
  background-color: #fff;
  position: absolute;
  border-radius: 5px;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 60%;
  height: 4px;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

#btnMenuResp span:nth-child(1) {
  top: 12px;
  left: 8px;
}

#btnMenuResp span:nth-child(2) {
  top: 19px;
  left: 8px;
}

#btnMenuResp span:nth-child(3) {
  bottom: 10px;
  left: 8px;
}

#btnMenuResp:not(.clickMenuBurger):hover span:nth-child(1) {
  margin-top: 0px;
  transform: rotate(-45deg) scaleX(0.7);
  -webkit-transform: rotate(-45deg) scaleX(0.7);
  -moz-transform: rotate(-45deg) scaleX(0.7);
  -ms-transform: rotate(-45deg) scaleX(0.7);
  -o-transform: rotate(-45deg) scaleX(0.7);
  top: 20px;
  left: 13px;
}

#btnMenuResp:not(.clickMenuBurger):hover span:nth-child(2) {
  margin-top: 0px;
  transform: rotate(45deg) scaleX(0.7);
  -webkit-transform: rotate(45deg) scaleX(0.7);
  -moz-transform: rotate(45deg) scaleX(0.7);
  -ms-transform: rotate(45deg) scaleX(0.7);
  -o-transform: rotate(45deg) scaleX(0.7);
  top: 20px;
  left: 3px;
}

#btnMenuResp:not(.clickMenuBurger):hover span:nth-child(3) {
  background-color: transparent;
}

#btnMenuResp.clickMenuBurger span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  top: 18px;
}

#btnMenuResp.clickMenuBurger span:nth-child(2) {
  background-color: transparent;
}

#btnMenuResp.clickMenuBurger span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  top: 18px;
}

/* --->>> ACCUEIL : SLIDER <<<--- */
#Slider_Accueil_Container {
  position: relative;
  overflow: hidden;
}

#Slider_Accueil {
  position: relative;
  min-height: 90vh;
  margin: auto;
}

#Slider_Accueil .slide {
  width: 100%;
  height: 100%;
}

.parallax {
  position: relative;
  overflow: hidden;
}

#decalage_header {
  height:130px;
  transition: all 0.2s ease-in-out;
}

#Slider_Accueil .slide .bg_img {
  height: 110% !important;
  width: 100% !important;
  background-repeat: no-repeat;
  background-size: cover;
}

body .lSSlideOuter .lSPager.lSpg {
  position: absolute;
  right: 25px;
  bottom: 5px;
  -webkit-transform: inherit !important;
  transform: inherit !important;
}

body .lSSlideOuter .lSPager.lSpg > li.active a, body .lSSlideOuter .lSPager.lSpg > li:hover a {
  background-color: #8C1D40;
}

body .lSSlideOuter .lSPager.lSpg > li a {
  height: 12px;
  width: 12px;
  z-index: 2;
}

body .lSSlideOuter .lSPager.lSpg > li {
  padding: 0 5px;
}

.lSSlideOuter:hover .lSAction > a {
  opacity: 0.5;
  visibility: visible;
}

body .lSAction > a {
  opacity: 0;
  visibility: hidden;
  background-image: url("../images/control.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 60px;
  width: 60px;
  z-index: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.lSSlideOuter .lSAction > a:hover {
  opacity: 0.8;
}

body .lSAction > .lSNext {
  background-position: center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#Slider_Accueil .bloc_txt_slider {
  position: absolute;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  padding: 20px;
  max-width: 60%;
  transition: all 0.2s ease;
}

#Slider_Accueil .bloc_txt_slider:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

#Slider_Accueil .bloc_txt_slider.leftBottom {
  left: 50px;
  bottom: 200px;
}
#Slider_Accueil .bloc_txt_slider.rightBottom {
  right: 50px;
  bottom: 200px;
}
#Slider_Accueil .bloc_txt_slider.leftTop {
  left: 50px;
  top: 200px;
}
#Slider_Accueil .bloc_txt_slider.rightTop {
  right: 50px;
  top: 200px;
}
#Slider_Accueil .bloc_txt_slider.centerCenter {
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

#Slider_Accueil .bloc_txt_slider .titre_slider {
  padding: 0;
  margin: 0;
  color: #c19947;
  font-size: 30px;
  font-family: Playfair Display;
  font-weight: 600;
}

#Slider_Accueil .bloc_txt_slider .soustitre_slider {
  padding: 0;
  margin: 10px 0;
  text-decoration: underline;
  color: white;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 600;
}

#Slider_Accueil .bloc_txt_slider .texte_slider {
  margin-top: 0px;
}

#Slider_Accueil .bloc_txt_slider .texte_slider.white p {
  color: white;
}

#Slider_Accueil .bloc_txt_slider .texte_slider.black p {
  color: black;
}

#Slider_Accueil .bloc_txt_slider .texte_slider p {
  padding: 0;
  margin: 0;
  line-height: 1.4;
  font-size: 16px;
  font-family: Montserrat;
}

/* --->>> ACCUEIL : EXPLORE <<<--- */
#explore .bloc_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 350px;
}

#explore .bloc_flex.ligne_1 {
  margin: 50px 0 25px 0;
}

#explore .bloc_flex.ligne_2 {
  margin: 0 0 80px 0;
}

#explore .titre_bloc {
  margin: 10px 15px;
  text-align: left;
  color: white;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 400;
}

#explore #en_ligne {
  width: 80%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 10px;
}

#explore #en_ligne .bloc_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 80%;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  /*padding-top: 25px;  */
}

#explore #en_ligne .categorie {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 10px 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#explore #en_ligne .titre_colonne {
  display: block;
  font-size: 26px;
  color: #C19947;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

#explore #en_ligne .titre_colonne.next {
  font-size: 18px;
  margin-top: 10px;
}

#explore #en_ligne .liens_colonne {
  padding-left: 0px;
  max-width: 250px;
  text-align: center;
}

#explore #en_ligne .liens_colonne a, #explore #en_ligne .liens_colonne .infos {
  display: block;
  font-size: 16px;
  color: white;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-bottom: 10px;
}

.infos_sliens {
  margin-bottom: 15px;
  margin-top: -5px;
}

#explore #en_ligne .liens_colonne a.slien {
  display: inline;
  font-size: 14px;
}

#explore #en_ligne .liens_colonne a:hover, .liens_colonne a.slien {
  color: #C19947!important;
}

#explore #decouvrir {
  height: 280px;
  width: 300px;
  position: relative;
  margin-right: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 24%;
  flex: 1 1 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#explore #decouvrir:hover {
  /*
  -webkit-filter: grayscale(0.6);
  filter: grayscale(0.6);
  */
}

#explore #decouvrir:hover span {
  background-color: black;
}

#explore #decouvrir span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  height: 40px;
  width: 40px;
  background-color: #C19947;
  background-image: url("../images/icon_play_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#decouvrir section a {
    display: block;
    width: 100%;
    height: 100%;
}

#decouvrir section {
  width:100%;
  height:90%;
  position:absolute;
  transition: all 0.2s ease;
}

#decouvrir section.unique {
  height: 100%;
}
#decouvrir section.unique .titre_bloc{
      font-size: 22px;
      text-align:center;
}

#decouvrir section.lien2:hover {
  height: 100%;
  background-color: rgba(193,153,71,1);
}



#decouvrir section.lien2 {
  bottom:0;
  -webkit-clip-path: polygon(0 30%, 100% 70%, 100% 100%, 0 100%);
  clip-path: polygon(0 30%, 100% 70%, 100% 100%, 0 100%);
  background-color: rgba(193,153,71,1);
  
}

#decouvrir section.lien1 {
  top:0;
  -webkit-clip-path:  polygon(0 0, 100% 0, 100% 70%, 0 30%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 30%);
  background-color: rgba(0,0,0,0.6);
  
}
#decouvrir section.lien1:hover {
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

#decouvrir section.lien1 {
  top:0;
  
}

#decouvrir section .titre_bloc{
  position:absolute;
  font-size: 16px;
  
}

#decouvrir section.lien2 .titre_bloc{
    bottom: 6px;
    left: 10px;
    text-align: left;
}

#decouvrir section.lien1 .titre_bloc{
    top: 6px;
    right: 10px;
    text-align: right;
}

/*  --------------->>> RESEAUX SOCIAUX ACORDEON ACCUEIL  <<<--------------- */

#explore #reseaux_sociaux {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 76%;
  flex: 1 1 76%;
  background-color: #eaeaea;
  display: flex;
  max-height: 350px;
}

#explore #reseaux_sociaux .itemReseauxSociaux {
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#explore #reseaux_sociaux .titreReseauxSociaux {
  display: flex;
  align-items: center;
}

#explore #reseaux_sociaux .itemReseauxSociaux.twitter .titreReseauxSociaux span {
  background-image: url('../images/icon_twitter_black.svg');
}

#explore #reseaux_sociaux .itemReseauxSociaux.facebook .titreReseauxSociaux span {
  background-image: url('../images/icon_facebook_black.svg');
}

#explore #reseaux_sociaux .itemReseauxSociaux .iconReseauxSociaux {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 45px;
  width: 45px;
  background-color: rgba(193,153,71,1);
  background-position: center;
  background-size: 50px 50px;
  background-repeat: no-repeat;
}

#explore #reseaux_sociaux .itemReseauxSociaux.twitter .iconReseauxSociaux {
  background-image: url('../images/icon_twitter_white.svg');
  background-size: 50px 50px;
}

#explore #reseaux_sociaux .itemReseauxSociaux.facebook .iconReseauxSociaux {
  background-image: url('../images/icon_facebook_white.svg');
  background-size: 60px 60px;
}

/* --->>> ONGLETS NON ACTIFS */

#explore #reseaux_sociaux .itemReseauxSociaux:not(.active) {
  flex: 1 1 12%;
  overflow: hidden;
}

#explore #reseaux_sociaux .itemReseauxSociaux:not(.active) .fondReseauxSociaux {
  height: 100%;
  width: 100%;
  background-size: cover;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

#explore #reseaux_sociaux .itemReseauxSociaux:not(.active) .titreReseauxSociaux p {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Montserrat';
  color: white;
  text-transform: capitalize;
  transform: rotate(-90deg);
  position: absolute;
  bottom: 40px;
  right: 81%;
  left: 81%;
  z-index: 1;
}

#explore #reseaux_sociaux .itemReseauxSociaux:not(.active) .contentReseauxSociaux > div {
  display: none;
}

/* --->>> ONGLET ACTIF */

#explore #reseaux_sociaux .itemReseauxSociaux.active {
  flex: 1 1 88%;
  padding: 0 15px 0 15px;
}

#explore #reseaux_sociaux .itemReseauxSociaux.active .contentReseauxSociaux {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100% - 55px);
}

#explore #reseaux_sociaux .itemReseauxSociaux.active .titreReseauxSociaux span {
  display:block;
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  height: 55px;
  width: 55px;
}

#explore #reseaux_sociaux .itemReseauxSociaux.active .titreReseauxSociaux p {
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  color: #444;
  text-transform: uppercase;
}

#explore #reseaux_sociaux .itemReseauxSociaux.active .contentReseauxSociaux > div {
  /*background-color: darkgrey;*/
  padding: 10px;
}

/** --------------->>> FOCUS <<<--------------- **/
#focus_container {
  position: relative;
  overflow: hidden;
}

#focus {
  position: relative;
  min-height: 90vh;
  max-height: 90vh;
  margin: auto;
}

#focusTextes .focus_texte {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  background-color: white;
  width: 100%;
}

#focusTextes h3 {
  color: #7A1B39;
  font-size: 12pt;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

#focusTextes p {
  font-size: 10pt;
  font-weight: 400;
}

#focusTextes .focus_texte_content {
  width: 900px;
  text-align: justify;
  margin: 0 0 0 auto;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#focus .slide {
  width: 100%;
  height: 100%;
}

#focus .bg_img {
  display: block;
  width: 100% !important;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

body #focus_container .lSSlideOuter .lSPager.lSpg {
  left: 25px;
  right: inherit;
}

/** --------------->>> FOOTER <<<--------------- **/
footer {
  margin-top: 25px;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

footer #footer_logo {
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 110px;
  width: 110px;
  margin: 0 auto 25px auto;
}

footer #footer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .footer_item {
  border-top: solid 2px #7A1B39;
  padding: 20px 0;
  margin: 0 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer #links ul {
  font-size: 13px;
}

footer a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: solid transparent 1px;
}

footer a:hover {
  border-bottom: solid black 1px;
}

footer #reseauxSociaux {
  text-align: center;
}

footer #reseauxSociaux ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer #reseauxSociaux a.rs {
  display: inline-block;
  margin: 0 6px;
  background-color: #7A1B39;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background-position: center 1px;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

footer #reseauxSociaux a.rs:hover {
  background-color: black;
}

footer #reseauxSociaux a.rs.twitter {
  background-image: url("../images/icon_twitter_white.svg");
}

footer #reseauxSociaux a.rs.facebook {
  background-image: url("../images/icon_facebook_white.svg");
}

footer #reseauxSociaux a.rs.instagram {
  background-image: url("../images/instagram-logo.png");
  background-size: 24px 24px!important;  
  background-position: center!important;
}

footer #newsletter p {
  margin: 0 0 15px 0;
  padding: 0;
}

footer #newsletter form input[type="email"] {
  border: 0;
  background-color: #fff;
  padding: 0 0 0 10px;
  margin: 0;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-box-shadow: 0 0 5px 1px rgba(150, 150, 150, 0.5);
  box-shadow: 0 0 5px 1px rgba(150, 150, 150, 0.5);
  width: calc(100% - 45px);
}

footer #newsletter form * {
  height: 30px;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.5);
}

footer #newsletter #btnArrow {
  width: 30px;
  background-color: #8C1D40;
  cursor: pointer;
  background-image: url("../images/chevron_white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px;
  border: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  margin: 0;
}

footer #newsletter #nretour {
  color: #8C1D40;
  margin:10px 0;
}

  .btn_cata {
    display:inline-block;
    border:1px solid #8C1D40;
    color:#8C1D40;
    padding: 5px 10px;
    cursor:pointer;
    margin-left:5px;
    transition:0.5s;
    display:flex;
    align-items: center;    
  }
  
  .btn_cata:hover {
    background-color:#8C1D40;
    border:1px solid #8C1D40;
    color:#fff;
  }
  
#footer_mentions {
  margin:25px 0;
  display:flex;
  width:100%;
  justify-content:space-between;
}
#footer_mentions div {
  font-size: 12px;
  color:#555;
}
#footer_mentions a {
  display:block;
  color:#555;
}  
  
/*** menu horizontal intérieur */
#menuh {
  position: relative;
  display:flex;
  /*justify-content:space-between;*/
  margin:20px 0;
  min-height:40px;
  width:100%;
  
}
#menuh_retour {
  display:flex;
  flex-direction: column;
  justify-content: center;
  min-width:20%;
  
}
#menuh_boutons {
    display:flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    /*width: 80%;*/
    -webkit-transform: translate(0%, -50%);
  
}

.menuh_bouton {
    display: flex;
    align-content: center;
    align-items: center;
    margin: 10px 0px 10px 10px;
    transition: 0.5s ease;
}
.menuh_bouton:hover .menuh_bouton_icon {
  background-color: #000;
}
.menuh_bouton:hover p {
  color: #000;
}
.menuh_bouton > p {
    cursor: pointer;
    color: #8C1D40;
    font-weight: 700;
}

.menuh_bouton_icon {
    border: none;
    display: block;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 25px;
    background-color: #8C1D40;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: 0.4s ease;
}
.menuh_bouton_icon[icon=print] {
    background-image: url(../images/catalogue_tri_icon3.png);
}
.menuh_bouton_icon[icon=export] {
    background-image: url(../images/catalogue_tri_export.png);
}  

/* btns de tri */
 .item_tri {
    display: flex;
    align-content: center;
    align-items: center;
    margin:10px 0px 10px 10px;
}

 .item_tri > p{
    cursor: pointer;
    color: #8C1D40;
    font-weight: 700;
}

.item_tri .item_icone_tri, #triSearch_form input[type=submit] {
    border: none;
    display: block;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 25px;
    background-color: #8C1D40;
    min-width: 30px;
    min-height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: 0.4s ease;
}

.item_tri .item_icone_tri:hover {
    filter: brightness(50%);
}

.tri_annee {
    background-image: url(../images/catalogue_tri_icon4.png);
}

.tri_jour {
    background-image: url(../images/catalogue_tri_icon6.png);
}

.tri_annee:hover {
     background-image: url(../images/catalogue_tri_icon4_black.png);
}

.tri_jour:hover {
     background-image: url(../images/catalogue_tri_icon6_black.png);
}

/* recherche */
#triSearch_form form {
	display: flex;
    align-items: center;
    justify-content: space-between;
}

#triSearch {
  border:1px solid #888;
  display: flex;
  justify-content: space-between;
}

#triSearchText {
    font-family: 'Playfair Display', serif;
    padding-left: 5px;
    height: 25px;
    border:0;
    width:80%;
}

#triSearchClose {
  opacity:0;
  background-color:#eee;
  color:#444;
  width:19px;
  height:19px;
  margin-top:3px;
  margin-right:3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:50%;
  text-align:center;
  cursor:pointer;
  font-size:11px;
}
#triSearchClose:hover {
  background-color:#666;
  color:#fff;
}

#mySearch_close, #header_search_conteneur #mySearch_submit {
  opacity:0;
  background-color:#888;
  color:#fff;
  width:25px;
  height:25px;
  margin-top:0px;
  margin-right:3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:50%;
  border-style: none;
  text-align:center;
  cursor:pointer;
  font-size:11px;
  position:absolute;
  
  top:8px;
  font-weight:400;
  font-family:Arial;
}

#header_search_conteneur #mySearch_submit {
  right:38px;
  background-color:#8C1D40;
  line-height: 8px;
  font-size: 16px;
  visibility: hidden;
  background-image: url(../images/enter-arrow.png);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center;
}

#mySearch_close {
  right:5px;
}

#mySearch_close:hover {
  background-color:#333;
}

#tri_item_ligne2 #btn_search_vente {
    display: none;
}
#btn_search_vente > span {
    background-image: url(../images/catalogue_tri_icon1.png);
}

.select_tri option {
    padding: 5px;
    direction: rtl;
    background-color: #8C1D40;
    color: white;
}

#triSearch_form input[type=submit]  {
    display: inline;
	background-image: url(../images/catalogue_tri_icon1.png);
}

#triSearch_form input[type=submit]:hover {
	filter: brightness(50%);
}


/* Style Select Tri */
.select_tri {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 40px 10px 0px;
    /*max-width: 70px;*/
    text-align-last: right;
    color: #8C1D40;
    font-weight: 700;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    border:0px;
    outline:0px;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 30px;
    transition: 0.4s ease;
} 


/* ------------------- POP IN  ------------------- */
.popin-fond {
    display: none;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    left:0;
    z-index:999;

}

.popin-contenu {
    display: none;
    background-color:#fff;
    color:#fff;
    padding: 20px 10px;
    
    min-height:50%;
    height:80%;
    width:80%;
    margin:5% auto;
    max-width:1200px;
    background-size:cover;
    background-position:center;
    -webkit-box-shadow: 0 0 3px 3px rgba(0,0,0,0.5);
    box-shadow: 0 0 3px 3px rgba(0,0,0,0.5);
    position:relative;
    
    z-index:99;
}
.popin-scroll {
 overflow-y:auto;
 height:100%;
}
.popin-texte {
  position:relative;
  width:100%;
  height:100%;
  
}

#popin-source-texte {
  margin:10px 0;
}

#popin-source-texte p, #popin-source-texte td, #popin-source-texte div, #popin-source-texte th {
  color:#fff;
}

.popin-contenu h1 {
  color:#fff;
  padding: 0;
  margin: 0;
  margin-bottom:10px;
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase;
}

.popin-contenu h2 {
  color:#fff;
  font-size:20px;
  font-weight: normal;
}

.popin-contenu h3 {
  color:#8C1D40;
  font-size:20px;
  font-weight: normal;
}
.popin-contenu div {
   color:#fff;
}


.popin-bloc-contenu {
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
}



.popin-fermer {
  position:absolute;
  top:-15px;
  right:-15px;
  cursor:pointer;
  z-index:98;
  /*
  background-color:#8C1D40;
  display:flex;
  align-items:center;
  color:#fff;
  font-size:20px;
  text-align:center;
  padding:10px 20px;
  
  
  
  */
    border-radius:17px;
    height: 30px;
    width: 30px;
    background-color:rgba(255,255,255,0.7);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/retour_catalogue.png);  
    transition:0.5s;
}

.popin-fermer:hover {
 /*background-color:#222;*/
 background-color:rgba(255,255,255,1);
}

/* ------------------- POP IN  FORM ------------------- */
.popin-contenu input, .popin-contenu textarea, .popin-contenu select {
  background-color:rgba(255,255,255,0.9);
  margin:7px 0px;
  padding:10px;
  border:0;
}
.popin-contenu input[type=submit], .popin-contenu input[type=button], .btn_demande_resa {
  font-size: 14px;
  background-color:#8C1D40;
  color:#fff;
  border:0;
  cursor:pointer;
  transition:0.5s;
}
.popin-contenu input[type=submit]:hover, .popin-contenu input[type=button]:hover, .btn_demande_resa:hover {
  background-color:#222;
}

.btn_demande_resa {
    display:block;
  margin:7px 3px;
  padding:5px ; 
  font-size:12px;   
  text-align:center;
}

.popin-form-row {
  display:flex;
}
.popin-form-row input[type=email], .popin-form-row input[type=text], .popin-form-row input[type=password], .popin-form-row select {
  width:49%;
  margin-right:1%;
}

.popin-form-cell {
  width:49%;
  margin:7px 1% 7px 0;
  padding:10px;
}

.popin-form-row-label {
  width:49%;
  margin-right:1%;
  display:flex;
  align-items:center;
}
.popin-form-row textarea {
  width:100%;  
}
.popin-form-submit {
  /*position:absolute;
  bottom:10px;
  right:10px;         */
  text-align:right;
  margin-right:1%;
  margin-top:1%;
}


.popin-form-intro {
  margin:10px 0;
  color:#fff;
}

.focus_champ_vide {
  background-color: rgba(255, 153, 0, 0.9)!important;
  color:#fff!important;
}

/* ------------------- POP IN : CONNEXION ------------------- */

#connexion-fond {

}
#connexion-contenu {
  background-image:url(../images/fond-connexion.jpg);
}
#connexion-divs {
  display:flex;
  flex-direction: row-reverse;
  justify-content:space-around;
}

#connexion-adherer, #connexion-deja {
  
  margin:20px 40px;
  
  width:50%;
}
#connexion-adherer {
  margin-top:25%;
}
#connexion-adherer-contenu, #connexion-deja-contenu {
  background-color:rgba(0,0,0,0.5);
  padding:20px;
}

#connexion-signup-btn {
  cursor:pointer;
}
#connexion-signup {
  display:none;
}

#connexion_message {
  text-align:center;
  margin:10px 0 0 0;
  color:#fff;
  font-weight:600;
}


#connexion-deja-contenu input {
  width:100%;
}


#connexion-adherer {
  display:flex;
  justify-content:space-between;
  flex-direction: column;
}
#connexion-deja form {
  display:flex;
  justify-content:space-between;
  flex-direction: column;
  margin:0;
  padding:0;
}

#connexion-adherer a {

    background-color: #C1B06B;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    width: 100%;
    transition: 0.4s ease-out;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    padding:10px;
}
#connexion-adherer a:hover {
  background-color: #183E5C;
}


input, select, textarea {
  font-family: 'Montserrat', sans-serif;
  padding:4px;
  color:#222;
}

.mon_champ {
  display:none;
}

.video_vente {
    cursor:pointer;
    border-radius:5px;
}

.video_vente_img {
    height:190px;
    width:300px;
    max-width:100%;
    border-radius:5px;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.video_vente_img img {
    width:25%; 
}

.video_vente_titre {
    text-align:center;
    margin:5px auto;
    color:#fff;
    font-size:14px;
}

.btn {
    cursor: pointer;
    background-color: #C19947;
    padding: 7px 10px;
    transition: 0.3s ease;
    border: 0;
    font-size: 13px;
    margin: 2px 1px;
    width: auto!important;
    text-decoration:none;
    color:#fff;
}
.btn:hover {
  color:#fff;
  background-color:#8C1D40;
  text-decoration:none; 
}


/** --------------->>> DOCUMENTS UTILES <<<--------------- **/



/** --------------->>> RESPONSIVE : responsive.css <<<--------------- **/

/** --------------->>> bouton Réserver <<<--------------- **/

#_reserver_menu {
  cursor:pointer;
}
#_reserver_menu:hover #btn_reserver_menu{
  color:#8C1D40;
  background-color:#fff;
} 

#icon_reserver_menu {
    background-image: url(../images/suitcase.png);
    background-repeat: no-repeat;
    background-position: center;
   width: 64px;
   height: 64px;
   margin:20px auto;
   opacity:0.9;
   transition:0.5s all ease-out;
}
#_reserver_menu:hover #icon_reserver_menu, #icon_reserver_menu:hover{
  opacity:1;
} 
