/*--------------------------------------------------------------
>>> TABLE DES MATIERES :
----------------------------------------------------------------
# Typo
# Variables CSS
# Main
# Fil d'ariane
# Pagination
# Couleurs - Ombres - Bordures
# Images - articles - colonnes
# Header
# Slider
# Navigation
# Boutique
# Présentation
# Offres du moment
# Prestations
# Témoignages
# Blog
# Page catégories produits / Boutique
# Page produits
# Page panier
# Page validation de commande
# Page mon compte
# Footer
# Page 404
# Contact form 7
# Vidéos - Iframes
# Fancybox
# Cookie Consent
# Skip Links
# Gutenberg
# Carousel Slick
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# TYPO
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Montserrat:wght@400;700&display=swap');

/*--------------------------------------------------------------
# VARIABLES CSS
--------------------------------------------------------------*/
:root{
  --white: #ffffff;
  --grey: #999999;
  --black: #000000;
  --color-1: #ee9a9f; /* ou #f36d9f ou #fd907a ou #ee9a9f*/
  --color-2: #00ff00;
  --color-3: #0000ff;
  --color-4: #ff00ff;
  --color-5: #ffff00;
  --color-6: #00ffff;
  --main-text-color: var(--black);
  --link: var(--color-1);
  --link-hover: var(--black);
  --btn-color: var(--white);
  --btn-bg-color: var(--color-1);
  --btn-color-hover: var(--color-1);
  --btn-bg-color-hover: var(--white);
  --menu-bg-color: var(--white);
  --menu-bg-color-hover: var(--white);
  --menu-color: var(--black);
  --menu-color-hover: var(--color-1);
  --font-family-1: 'Montserrat', sans-serif;
  --font-family-2: 'Courgette', cursive;
}



/*--------------------------------------------------------------
# MAIN
--------------------------------------------------------------*/
body {
  overflow-x: hidden;
  font-family: var(--font-family-1);
  color: var(--main-text-color);
  font-weight: 400;
  background-image: url(img/fond.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
h1, h2, h3, h4, h5, h6, .title, .subtitle, .content h1, .content h2, .content h3, .content h4, .content h5, .content h6, .content .title, .content .subtitle{
  font-family: var(--font-family-2);
  font-weight: 400;
  color: var(--main-text-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .title a, .subtitle a, .content h1 a, .content h2 a, .content h3 a, .content h4 a, .content h5 a, .content h6 a, .content .title a, .content .subtitle a{
  color: inherit;
}
.home h2 a:hover{
  color: var(--link);
}
.box, .card{
  color: var(--main-text-color);
}
strong{
  color: inherit;
}
body:not(.home){
  background-image: linear-gradient(to top, rgba(255,255,255,0.6), rgba(255,255,255,0.6)),url(img/fond.jpg);
}
.panel {
  border-radius: 0;
  box-shadow: none;
}
button, input, select, textarea, .label{
  font-family: var(--font-family-1);
}
mark {
  background-color: transparent;
  color: var(--main-text-color);
}
/*--------------------------------------------------------------
# FIL D'ARIANE
--------------------------------------------------------------*/
.woocommerce .woocommerce-breadcrumb, .woocommerce-breadcrumb{
  font-size: inherit;
  color: inherit;
  padding: 1rem 0;
  text-align: center;
}
.woocommerce-breadcrumb a:first-of-type::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  content: "\f015";
  margin-right: 0.5407911001em;
}
.woocommerce-breadcrumb .breadcrumb-separator{
  display: inline-block;
  padding: 0 0.5407911001em;
  text-indent: -9999px;
  position: relative;
}
.woocommerce-breadcrumb .breadcrumb-separator::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  content: "\f105";
  font-size: 0.875em;
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}
.woocommerce .woocommerce-breadcrumb a{
  color: var(--link); 
}
.woocommerce .woocommerce-breadcrumb a:hover{
  color: var(--link); 
}

/*--------------------------------------------------------------
# PAGINATION
--------------------------------------------------------------*/
.woocommerce nav.woocommerce-pagination ul{
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li{
  border: none;
  padding-right: 0.25em;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span{
  background-color: var(--link);
  color: #fff;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current{
  background-color: var(--link-hover);
  color: #fff;
}


/*--------------------------------------------------------------
# COULEURS - OMBRES - BORDURES
--------------------------------------------------------------*/
/* Couleurs de background */
.background-color-white{
  background-color: var(--white);
}
.background-color-grey{
  background-color: var(--grey);
}
.background-color-black {
  background-color: var(--black);
}
.background-color-1 {
  background-color: var(--color-1);
}
.background-color-2 {
  background-color: var(--color-2);
}
.background-color-3 {
  background-color: var(--color-3);
}
.background-color-4 {
  background-color: var(--color-4);
}
.background-color-5 {
  background-color: var(--color-5);
}
.background-color-6 {
  background-color: var(--color-6);
}

/* Couleurs de texte */
.color-white{
  color: var(--white);
}
.color-grey{
  color: var(--grey);
}
.color-black {
  color: var(--black);
}
.color-1 {
  color: var(--color-1);
}
.color-2 {
  color: var(--color-2);
}
.color-3 {
  color: var(--color-3);
}
.color-4 {
  color: var(--color-4);
}
.color-5 {
  color: var(--color-5);
}
.color-6 {
  color: var(--color-6);
}

/* Bouton principal */
.button, a.button, .content .button, .content a.button, input[type="submit"].button{
  border-color: var(--btn-bg-color);
  background-color: var(--btn-bg-color);
  color: var(--btn-color);
  transition: all 0.5s ease-in-out;
  border-radius: 30px;
}
.content a.wp-block-button__link, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt{
  border-radius: 30px;
  border: 1px solid var(--btn-bg-color);
  background-color: var(--btn-bg-color);
  color: var(--btn-color);
  font-weight: inherit;
  line-height: 1.5;
  padding-bottom: calc(.5em - 1px);
  padding-left: 1em;
  padding-right: 1em;
  padding-top: calc(.5em - 1px);
  transition: all 0.5s ease-in-out;
}
.button:hover, a.button:hover, .content .button:hover, .content a.button:hover, input[type="submit"].button:hover, .content a.wp-block-button__link:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover{
  background-color: var(--btn-bg-color-hover);
  border-color: var(--btn-color-hover);
  color: var(--btn-color-hover);
  border-radius: 30px;
}
.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover{
  background-color: var(--btn-bg-color);
}

/* Boutons d'autres couleurs */
.button.background-color-1:hover { 
  background-color: var(--white);
  color: var(--color-1);
  border-color: var(--color-1);
}
.button.background-color-2:hover { 
  background-color: var(--white);
  color: var(--color-2);
  border-color: var(--color-2);
}
.button.background-color-3:hover { 
  background-color: var(--white);
  color: var(--color-3);
  border-color: var(--color-3);
}
.button.background-color-4:hover { 
  background-color: var(--white);
  color: var(--color-4);
  border-color: var(--color-4);
}
.button.background-color-5:hover { 
  background-color: var(--white);
  color: var(--color-5);
  border-color: var(--color-5);
}


/* Liens */
a, .content a{
  color: var(--link);
  transition: all 0.5s ease-in-out;
}
a:hover, .content a:hover{
  color: var(--link-hover);
}

/* Ombres et bordures */
.shadow {
  box-shadow:0px 0px 2px 0px rgba(50, 50, 50, 0.75);
  transition: all 0.5s ease-in-out;
}
.shadow:hover {
  box-shadow:  0px 0px 10px 0px rgba(50, 50, 50, 0.75);
}
.radius {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
/* Messages d'info Woocommerce */
.woocommerce-info, .woocommerce-message {
  border-top-color: var(--color-1);
}
.woocommerce-info::before, .woocommerce-message::before {
  color: var(--color-1);
}

/*--------------------------------------------------------------
# ALIGNEMENT
--------------------------------------------------------------*/
.alignleft {
  float: left;
  margin: 0 10px 10px 0;
}
.alignright {
  float: right;
  margin:0 0 10px 10px;
}
.aligncenter {
  margin: 0 auto;
}
.v-align {
  vertical-align: middle;
  margin: auto 0;
}
.tabs{
  justify-content: start;
}
.button{
  height: auto;
}
.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text{
  width: auto;
}
#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text{
  padding: 0.6em;
}
.content ul.wp-block-gallery{
  margin-left: 0;
}


/*--------------------------------------------------------------
# IMAGES - ARTICLES - COLONNES
--------------------------------------------------------------*/
.content img {
  display: block;
}
.columns:last-child {
  margin-bottom: 0rem;
}

/*--------------------------------------------------------------
# STICKY EN AVANT
--------------------------------------------------------------*/
/* Ouverture */
#modalOpen:target {
  display: flex;
}
/* Fix styles bulma */
.modal {
 z-index: 300;
}
.modal-card {
 max-height: unset;
 overflow: auto;
}
.modal-card-title {
 flex-shrink: 1;
}
/* .bulma-card-body à décommenter si pas de footer dans le modal */
.modal-card-body {
 border-bottom-left-radius: 6px;
 border-bottom-right-radius: 6px;
}
.modal img{
  margin: 1rem auto;
}

/*--------------------------------------------------------------
# NOTIFICATION BOUTIQUE
--------------------------------------------------------------*/
/* Bandeau info */
.woocommerce-store-notice, p.demo_store {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 0.75em;
  background-color: var(--color-1);
}
.woocommerce-store-notice:before, p.demo_store:before{
  display: none;
}
.demo_store a.woocommerce-store-notice__dismiss-link{
  background-color: transparent;
  margin: 0;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.demo_store a.button{
  text-decoration: none;
  margin: 0 1rem;
  background-color: var(--white);
  color: var(--color-1);
}
.demo_store a.button:hover{
  background-color: var(--color-1);
  color: var(--white);
  border-color: var(--white);
}
@media only screen and (max-width: 425px){
  .demo_store a.button{
      margin: 0.5rem;
  }
}
@media (max-width: 767px){
  .demo_store a.woocommerce-store-notice__dismiss-link:before {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      font-weight: 400;
      line-height: 1;
      font-family: Font Awesome\ 5 Free;
      font-weight: 900;
      line-height: inherit;
      vertical-align: baseline;
      content: "\f057";
      margin-right: .3342343017em;
  }
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
/* HEADER PAGE ACCUEIL */


/* HEADER PAGES SECONDAIRES */
.header .hero-body{
  padding: 6rem 1.5rem;
  background-image: url(img/fond-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
.header.hero .navbar{
  background: var(--menu-bg-color);
}

/*--------------------------------------------------------------
# SLIDER
--------------------------------------------------------------*/
@media screen and (max-width: 768px){
  .slick-track{
    height: 300px;
  }
  .slider-reviews .slick-track{
    height: auto;
  }
  .slick-slide{
    object-fit: cover;
    object-position: center;
  }
}

/*--------------------------------------------------------------
# NAVIGATION
--------------------------------------------------------------*/
/* MENU NAVIGATION */
.navbar,
.navbar-dropdown {
  background: var(--menu-bg-color);
}
.navbar-item,
.navbar-link {
  color: var(--menu-color);
}
.navbar-link:not(.is-arrowless)::after{
  border-color: var(--menu-color);
}
.navbar-link:not(.is-arrowless):hover::after, .navbar-link.is-active:not(.is-arrowless)::after,  .navbar-item.has-dropdown.is-active .navbar-link:not(.is-arrowless)::after, .navbar-item.has-dropdown:focus .navbar-link:not(.is-arrowless)::after, .navbar-item.has-dropdown:hover .navbar-link:not(.is-arrowless)::after{
  border-color: var(--menu-color-hover);
}

a.navbar-item:hover,
a.navbar-item.is-active,
a.navbar-item.is-active:not(:focus):not(:hover),
.navbar-link:hover,
.navbar-link.is-active,
.navbar-link.is-active:not(:focus):not(:hover),
.navbar-brand a.navbar-item:focus,
.navbar-brand a.navbar-item:hover{
  color: var(--menu-color-hover);
  background: var(--menu-bg-color-hover);
}
.navbar-item.has-dropdown.is-active .navbar-link,
.navbar-item.has-dropdown:focus .navbar-link,
.navbar-item.has-dropdown:hover .navbar-link {
  color: var(--menu-color-hover);
  background: var(--menu-bg-color-hover);
}
.navbar-dropdown a.navbar-item:focus,
.navbar-dropdown a.navbar-item:hover {
  background-color: var(--menu-bg-color-hover);
  color: var(--menu-color-hover);
  margin: 0 5px;
}
.navbar-dropdown a.navbar-item {
  margin: 0 5px;
}
/* correction menu déroulant Edge / IE */
@media screen and (min-width: 1024px){
  .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0px);
  }
}
.navbar-brand{
  justify-content: space-between;
  align-items: center;
}
.navbar-brand img {
  max-height: unset;
  margin-right: 1rem;
}
.navbar-brand a.navbar-item:hover{
  background-color: var(--menu-bg-color);
  color: var(--menu-color);
}
input[type="search"]{
  color: var(--menu-color);
  font-family: inherit;
  box-shadow: none;
  border-color: var(--menu-color);
  background-color: transparent;
}
input[type="search"]:hover{
  border-color: var(--menu-color);
}
form.search-form .fas.fa-search{
  color: var(--menu-color);
}

/* BOUTON BURGER */
.navbar-burger{
  color: var(--menu-color);
  margin: 0;
  height: 6rem;
  width: 6rem;
}
a.navbar-burger:hover {
  color: var(--menu-color-hover);
  background-color: var(--menu-bg-color-hover);
}
.navbar-burger span {
  left: calc(50% - 25px);
  width: 50px;
  height: 6px;
  transition: all 0.5s ease;
  border-radius: 15px;
}
.navbar-burger span:nth-child(1) {
  top: calc(50% - 15px);
}
.navbar-burger span:nth-child(2) {
  top: 50%;
}
.navbar-burger span:nth-child(3) {
  top: calc(50% + 15px);
}
.navbar-burger.is-active span:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
  transform: translateY(15px) rotate(45deg);
  opacity: 1;
}
.navbar-burger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-15px) rotate(-45deg);
}
/* RECHERCHE PRODUITS */
.stylsearch {
  width: 240px;
  font-family: inherit;
  font-weight: 300;
  font-size: 0.875rem;
  border-radius: 30px;
  border-color: var(--menu-color);
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}
.stylsearch::placeholder{
  color: var(--menu-color);
  font-family: var(--font-family-1);
}
.search-form:hover .stylsearch{
  border-color: var(--menu-color-hover);
}
.search-form .fas.fa-search{
  transition: all 0.5s ease-in-out;
}
.search-form:hover .fas.fa-search{
  color: var(--menu-color-hover);
}


/* BOUTON PANIER HEADER */
.cart-contents{
  position: relative;
  z-index: 10;
}
.cart-contents:hover {
  text-decoration: none;
}
.cart-contents:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: 'Font Awesome 5 Pro';
  content: "\f291";
  font-size: 28px;
  color: var(--link);
  margin-top: 10px;
  font-weight: 900;
  padding-right: 5px;
  vertical-align: bottom;
  transition: all 0.5s ease-in-out;
}
.cart-contents:hover:before {
  color: var(--link-hover);
}
.cart-contents-count {
  text-indent: 0;
  display: block;
  width: 2em;
  height: 2em;
  line-height: 2;
  box-sizing: content-box;
  font-size: .60em;
  position: absolute;
  top: -8%;
  right: 30%;
  border-radius: 50%;
  text-align: center;
  background-color: var(--link);
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.cart-contents:hover .cart-contents-count{
  background-color: var(--link-hover);
}
@media screen and (max-width: 768px){
  .cart-contents-count {
    top: -100%;
  }
}
/* Mini panier qui s'affiche sur le hover */
.widget.woocommerce.widget_shopping_cart{
  display: none;
  position: absolute;
  right: 0px;
  width: 500px;
  z-index: 1;
  top: 80px;
  background: #fff;
  padding: 1rem;
  transition: all 0.5s ease-in-out;
}
.navbar-item.panier:hover .widget.woocommerce.widget_shopping_cart{
  display: block;
}
.woocommerce .widget_shopping_cart .total, .woocommerce.widget_shopping_cart .total {
  border-top: 1px solid #ebe9eb;
  padding: 1rem 0;
  text-align: center;
}
.woocommerce-mini-cart__buttons.buttons{
  justify-content: center;
}

/* Version Mobile */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .navbar, .navbar-end, .navbar-menu, .navbar-start, .navbar-item.has-dropdown {
    display: block;
  }
  .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-dropdown{
    position: static;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
  .navbar-dropdown .navbar-item{
    padding: 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 1439px) {
  .navbar-brand{
    min-height: 8rem;
  }
  .navbar-burger{
    display: block;
  }
  .navbar-brand .navbar-item{
    width: 100%;
    padding: 0;
    position: absolute;
  }
  .navbar-brand .navbar-item img{
    margin: 1rem auto;
    display: block;
  }
  .navbar-menu {
    padding-left: 25px;
    background-color: var(--menu-bg-color);
    display: block;
    padding: 0;
  }
  .navbar-menu .navbar-start{
    display: none;
  }
  .navbar-menu.is-active .navbar-start{
    display: block;
    padding: 2rem 0;
  }
  .navbar-end{
    position: absolute;
    top: 30px;
    max-height: 3rem;
    width: 100%;
  }
  .navbar-end .navbar-item{
    position: absolute;
  }
  .navbar-end .navbar-item:nth-child(1){
    display: none;
  }
  .navbar-end .navbar-item:nth-child(2){
    right: 50px;
    top: 0;
  }
  .navbar-end .navbar-item:nth-child(3){
    right: 0;
    top: -4px;
  }
}




/*--------------------------------------------------------------
# PRESENTATION
--------------------------------------------------------------*/
section.section.presentation{
  overflow: visible;
}
.presentation .columns.content{
  display: block;
}
.presentation .rdv a.button{
  display: block;
  margin: 0 auto;
  width: fit-content;
}
.presentation .reseaux-sociaux{
  position: relative;
}
.presentation .reseaux-sociaux .level{
  justify-content: center;
}
.presentation .reseaux-sociaux a.level-item{
  background-color: var(--color-1);
  padding: 0.5rem;
  position: relative;
  color: var(--white);
  margin: 0 1rem;
  border: 1px solid var(--color-1);
}
.presentation .reseaux-sociaux .level.is-mobile .level-item:not(:last-child){
  margin-right: 1rem;
}
.presentation .reseaux-sociaux a.level-item:hover{
  color: var(--color-1);
  background-color: var(--white);
}
.presentation .reseaux-sociaux:before{
  content:'';
  width: 100%;
  height: 1px;
  background-color: var(--color-1);
  position: absolute;
  right: 0;
  top: 36px;
}
.presentation .gerants img{
  margin: 0 auto;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 10px solid var(--color-1);
  object-fit: cover;
  object-position: center;
  box-shadow:  0px 0px 10px 0px rgba(50, 50, 50, 0.75);
}
.presentation .institut{
  width: 300px;
  margin: 0 auto;
}
.presentation .institut h2.title{
  color: var(--white);
}
.presentation .institut a{
  color: var(--white);
}
.presentation .institut a:hover{
  color: var(--black);
}
.presentation .institut a.button{
  background-color: var(--white);
  border-color: var(--white);
  color: var(--color-1);
  display: block;
  width: fit-content;
  margin: 0 auto 1rem;
}
.presentation .institut a.button:hover{
  background-color: var(--color-1);
  border-color: var(--white);
  color: var(--white);
}
.presentation .content .institut p.media-left{
  margin-bottom: 0;
}
.presentation .equipe img{
  margin: 0 auto;
}
.presentation .equipe h3{
  margin: 0.5rem;
  position: relative;
  bottom: 40px;
  color: var(--white);
}
@media screen and (min-width: 1216px){
  .presentation{
    padding: 3rem 1.5rem 10rem 1.5rem;
  }
  .presentation .columns.content{
    padding: 20rem 0;
    position: relative;
    display: flex;
  }
  .presentation .gerants img{
    position: absolute;
    left: 0;
    top: -125px;
  }
  .presentation .gerants h2{
    position: absolute;
    width: 250px;
    left: 0;
    top: 150px;
  }
  .presentation .gerants .texte{
    position: absolute;
    width: 300px;
    top: 0;
    left: 325px;
  }
  .presentation .rdv{
    position: absolute;
    top: 0;
    right: 0;
  }
  .presentation .institut{
    position: absolute;
    right: 0;
    top: 150px;
    width: 350px;
  }
  .presentation .reseaux-sociaux{
    position: absolute;
    left: 0;
    top: 250px;
  }
  .presentation .equipe{
    position: absolute;
    left: 220px;
    top: 350px;
  }
}
/*--------------------------------------------------------------
# LES OFFRES DU MOMENT
--------------------------------------------------------------*/
.offres-moment{
  background: rgba(255,255,255,0.6);
}
.offres-moment .slick-dotted.slick-slider.products, .offres-moment .products{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5rem;
}
.offres-moment .slick-track{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.offres-moment .products .product{
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 1em;
}
.offres-moment .products .product a img{
  margin: 0 auto;
  box-shadow: none;
  width: 100%;
  height: auto;
  display: block;
}
.offres-moment .products .product .woocommerce-loop-product__title{
  padding: .5em 0;
  margin: 0;
  font-size: 1em;
  color: var(--main-text-color);
}
.offres-moment .products .product .price {
  text-align: center;
  display: block;
  font-weight: 400;
  margin-bottom: .5em;
  font-size: .857em;
  color: var(--color-1);
}
.offres-moment .products .product a.button {
  display: block;
  margin: 0 auto;
}
.offres-moment.content ul.slick-dots {
  list-style: none;
  margin: 0;
  bottom: -50px;
}
.offres-moment span.onsale {
  min-height: unset;
  min-width: unset;
  padding: 0.3rem;
  line-height: 2;
  border-radius: 3px;
  background-color: var(--color-1);
  font-weight: 700;
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: .857em;
  z-index: 9;
}
.offres-moment .products .product .onsale {
  top: 0;
  right: 0;
  left: auto;
  margin: 0;
}
@media screen and (max-width: 768px){
    .offres-moment .slick-track {
      height: auto;
  }
}

/*--------------------------------------------------------------
# PRESTATIONS
--------------------------------------------------------------*/
.prestations .columns{
  align-items: stretch;
}
.background-prestation{
  background-color: #F5f5f5;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 232px;
  height: 232px;
  transition: all .5s ease-in-out;
}
.background-prestation:before, .background-prestation:after{
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  border: 2px solid var(--color-1);
  opacity: 0;
  transition: all .5s ease-in-out;
}
.background-prestation:before{
  top: 0;
  left: 0;
  border-bottom: 0;
  border-right: 0;
}
.background-prestation:after{
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}
.background-prestation:hover{
  box-shadow: 0 8px 21px 0 rgba(0,0,0,.1);
  background-color: #FFF
}
.background-prestation:hover:before, .background-prestation:hover:after{
  opacity: 1;
}
.background-prestation:hover .st0{
  fill:var(--color-1);
}
.prestations svg{
  width: 80px;
  display: block;
  margin: 1rem auto;
}
.prestations .st0{
  transition: all .5s ease-in-out;
}
.prestations a p{
  color: var(--main-text-color);
}
.prestations button.button{
  display: block;
  margin: 1rem auto;
}
/*--------------------------------------------------------------
# VENTE EN LIGNE
--------------------------------------------------------------*/
.vente-en-ligne{
  background-image: url(img/fond-produits.jpg);
  background-attachment: fixed;
  padding: 6rem 1.5rem;
}

/*--------------------------------------------------------------
# TEMOIGNAGES
--------------------------------------------------------------*/
.temoignages{
  background-image: url(img/fond-temoignages.jpg);
  background-attachment: fixed;
  padding: 6rem 1.5rem;
}
#map-plug {
  display: none;
}
#google-reviews{
  margin-bottom: 5rem;
}
.review-item {
  margin: 50px auto 20px auto;
  padding:1em;
}
.review-date{
  display: none;
}
.review-text{
  margin: 0 auto;
  position: relative;
  padding: 3.5rem 3rem;
  margin-bottom: 2rem;
  min-height: 220px;
}
.review-text:before{
  content: '"';
  line-height: 1em;
  font-size: 4em;
  font-weight: bold;
  position: absolute;
  top: 1rem;
  left: 3rem;
}
.review-text:after {
  position: absolute;
  left: 2.7em;
  bottom: -0.7em;
  width: 1.3em;
  height: 2.3em;
  content: '';
  transform: skewY(-50deg);
  z-index: -1;
  background-color: var(--white);
}
.review-stars ul{
  display: inline-block;
  list-style: none !important;
  margin: 0 0 1rem 0;
  padding: 0;
}
.review-stars ul li {
  float: left;
  list-style: none !important;
  margin-right: 1px;
  line-height: 1;
}
.review-stars ul li i {
  font-style: normal;
  list-style: none !important;
}
.review-stars ul li i.inactive {
  color: #c6c6c6;
}
.star:after {
  content: "\2605";
  color: var(--color-1);
}
.star.inactive:after{
  color: #c6c6c6;
}
.review-stars ul li::before {
  content: "";
}
/* #google-reviews .slick-dots li button, .slider-presse .slick-dots li button{
    display: block;
    width: 10px;
    height: 10px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #fff;
    border: 2px solid var(--color-1);
}
#google-reviews .slick-dots li button:before, .slider-presse .slick-dots li button:before{
  content: '';
}
#google-reviews .slick-dots li.slick-active button, .slider-presse .slick-dots li.slick-active button{
  background-color: var(--color-1);
} */




/*--------------------------------------------------------------
# ESPACE COSY
--------------------------------------------------------------*/
.spa{
  background: rgba(255,255,255,0.6);
  padding: 6rem 1.5rem;
}
.spa img{
  margin: 0 auto;
  display: block;
}

/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
.post {
  position: relative;
  padding: 20px;
  flex-basis: auto;
}
.post-content {
  font-size: 1rem;
}
.blog article, .blog .card{
  height: 100%;
}
main .section.blog img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

/*--------------------------------------------------------------
# PAGE CATEGORIE PRODUITS / PAGE BOUTIQUE
--------------------------------------------------------------*/
.woocommerce ul.products{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  float: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 1em 1em 0;
}
@media screen and (max-width: 768px){
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
      width: auto;
      float: none;
  }
}
.woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img{
  height: 250px;
  object-fit: cover;
  object-position: center;
}
.term-description{
  margin-bottom: 2rem;
  text-align: center;
}
select.orderby{
  color: inherit;
  border-color: inherit;
  border-radius: 3px;
  padding: 0.25rem;
}
.woocommerce-loop-product__title, .woocommerce-loop-category__title{
  text-align: center;
}
.woocommerce ul.products li.product .price{
  text-align: center;
  color: var(--color-1);
}
.woocommerce ul.products li.product a.button{
  display: block;
  margin: 0 auto;
}
.woocommerce div.product p.price, .woocommerce div.product span.price{
  color: var(--color-1);
}
.woocommerce ul.products li.last, .woocommerce-page ul.products li.last {
  margin: 0 1em 1em 0;
}
/* Produits en solde */
.woocommerce ul.products li.product .onsale {
  margin: 0;
}
/* Notes produits*/ 
.woocommerce .products .star-rating {
  margin: 1rem auto;
}

/*--------------------------------------------------------------
# PAGE PRODUITS
--------------------------------------------------------------*/
/* Désactivation de l'onglet "informations complémentaires" */
li.additional_information_tab, .woocommerce-Tabs-panel--additional_information{
  display: none !important;
}

.woocommerce-product-details__short-description{
  margin-bottom: 1rem;
}
.single-product div.product .product_meta span{
  display: block;
}
.woocommerce .quantity input[type='number'].qty{
  padding: 0.618em;
  background-color: #fff;
  color: var(--color-1);
  border: 1px solid var(--color-1);
  border-radius: 3px;
  -webkit-appearance: none;
  box-sizing: border-box;
  font-weight: normal;
}
.single-product div.product .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 1.618em;
}
.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.woocommerce div.product div.images .flex-control-thumbs li{
  width: 15%;
  margin: 1em;
}
.woocommerce div.product p.stock{
  margin-top: 1em;
  margin-bottom: 1em;
}
.woocommerce div.product .out-of-stock{
  display: none;
}
.woocommerce-page div.product .woocommerce-tabs{
  padding-bottom: 2em;
}
@media screen and (max-width: 767px){
  .woocommerce div.product .woocommerce-tabs ul.tabs{
    padding: 0;
    flex-direction: column;
  }
}
.woocommerce div.product form.cart .variations select{
  color: inherit;
  border-color: inherit;
  border-radius: 3px;
  padding: 0.25rem;
}
/* Produits en solde */
.woocommerce span.onsale {
  min-height: unset;
  min-width: unset;
  padding: 0.3rem;
  line-height: 2;
  top: 0;
  left: 0;
  border-radius: 3px;
  background-color: var(--color-1);
}

/* Commentaires produtis */
form.comment-form .comment-form-author label, form.comment-form .comment-form-email label{
  padding: 0 1rem 0 0;
  width: 100px;
  display: inline-block;
}
form.comment-form .comment-form-cookies-consent input{
  margin: 0 0.5rem 0 0;
}
/* Etoiles commentaires */
.woocommerce .star-rating{
  color: var(--color-1);
}

/* Masquer places restantes dans calendrier de réservation */
.wc-appointments-appointment-form-wrap .wc-appointments-appointment-form .slot-picker li.slot .spaces-left {
  display: none;
}

/* Affichage options d'acompte sur page produits */
.wc-deposits-options-form .deposit-option, .deposit-message.wc-deposits-notice{
  display: block;
  margin: 1rem 0;
  font-weight: 700;
}
.wc-deposits-options-form .amount {
  color: var(--color-1);
  font-weight: 700;
}
.wc-deposits-options-form .deposit-options {
  margin: 2rem 0;
}

/*--------------------------------------------------------------
# PAGE PANIER
--------------------------------------------------------------*/

@media screen and (min-width: 768px) {
  .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
    width: 52%;
  }
}
@media screen and (max-width: 767px) {
  #add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text,   .woocommerce #content table.cart td.actions .coupon .button.alt, .woocommerce #content table.cart td.actions .coupon .input-text+.button, .woocommerce table.cart td.actions .coupon .button.alt, .woocommerce table.cart td.actions .coupon .input-text+.button, .woocommerce-page #content table.cart td.actions .coupon .button.alt, .woocommerce-page #content table.cart td.actions .coupon .input-text+.button, .woocommerce-page table.cart td.actions .coupon .button.alt, .woocommerce-page table.cart td.actions .coupon .input-text+.button{
    float: none;
    width: 100%;
  }
}
/*--------------------------------------------------------------
# PAGE VALIDATION COMMANDE
--------------------------------------------------------------*/
.select2-container--default .select2-selection--single{
  border: 1px solid var(--color-1);
  border-radius: 5px;
}
/*--------------------------------------------------------------
# PAGE MON COMPTE
--------------------------------------------------------------*/
@media (min-width: 768px){
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    margin-right: 5%;
  }
}
.woocommerce-MyAccount-navigation ul {
  margin-left: 0;
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.woocommerce-MyAccount-navigation ul li {
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
  text-decoration: none;
  padding: 0.875em 0;
  display: block;
}
.woocommerce-MyAccount-navigation ul li a::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  vertical-align: bottom;
  content: "\f15c";
  line-height: 1.618;
  margin-left: 0.5407911001em;
  width: 1.41575em;
  text-align: right;
  float: right;
  opacity: 0.25;
}
.woocommerce-MyAccount-navigation ul li.is-active a::before {
  opacity: 1;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before {
  content: "\f3fd";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before {
  content: "\f291";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before {
  content: "\f015";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a::before {
  content: "\f09d";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before {
  content: "\f007";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--appointments a::before {
  content: "\f073";
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  content: "\f2f5";
}
.woocommerce-Address-title.title {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.woocommerce-account .addresses .title h3, .woocommerce-account .addresses .title .edit{
  float: none;
}
.woocommerce form.register {
  border: none;
  padding: 0;
  margin: 0;
}
.woocommerce .formulaire-inscription {
  border: 1px solid #d3ced2;
  padding: 20px;
  margin: 2em 0;
  text-align: left;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.hero.subfooter{
  background-image: url(img/fond-subfooter.jpg);
  background-attachment: fixed;
  background-color: rgba(0,0,0,0.2);
  background-blend-mode: overlay;
}
.hero.subfooter .hero-body{
  background-color: rgba(243, 109, 159, 0.1);
}
.hero.subfooter .hero-body .title{
  color: var(--white);
}
.newsletter{
  margin-top: 3rem;
}
.newsletter input.input{
  border-bottom-left-radius:30px;
  border-top-left-radius: 30px;
  padding-left: 1rem;
  border: 1px solid var(--color-1);
}
.footer {
  background-image: url(img/fond-footer.jpg);
  background-position: center;
  padding: 3rem 1rem;
}
@media screen and (min-width: 769px){
  .footer .column{
    margin: 0;
  }
  .footer .column:nth-of-type(1){
    order:2;
  }
  .footer .column:nth-of-type(2){
    order:1;
  }
  .footer .column:nth-of-type(3){
    order:3;
  }
}
.logo-footer img{
  max-width: 250px;
  margin: 0 auto 1rem auto;
  display: block;
}
.footer iframe{
  height: 100%;
  min-height: 315px;
}
.credit {
  background: #111;
  padding: 1em;
}
.credit .media{
  padding: 0.5rem;
}
.credit p{
  text-align: center;
  color: #fff;
  margin: 0;
}
.credit .content p:not(:last-child){
  margin: 0;
}
.credit img{
  display: block;
  margin: 0 auto;
  height: 30px;
}

/* SCROLL TO TOP  */
#smoothup {
  height: 45px;
  width: 45px;
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: none;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s; transition-duration: 0.4s;
  opacity: 0.5;
  background: #fff;
  border: #111 solid 1px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 2em;
  padding: 5px 0 10px 7px;
  line-height: 0px;
  z-index: 101;
}

#smoothup:hover {
    transform: rotate(360deg) ;
    -webkit-transform: rotate(360deg) ;
}

/*--------------------------------------------------------------
# PAGE 404 - ANIMATION
--------------------------------------------------------------*/
#ghost{
  display: block;
  position: relative;
  left: -2000px;
  opacity: 0;
  animation: appear-left 2s 0.1s ease-out forwards;
}
@keyframes appear-left {
to {
  left: 0;
  opacity: 1;
  }
}

/*--------------------------------------------------------------
# CONTACT FORM 7 / BOUTON CONTACT
--------------------------------------------------------------*/
button.button.button-contact{
  position: fixed;
  top: 45%;
  right: -125px;
  height: 40px;
  width: 250px;
  border-radius: 0;
  transform: rotate(-90deg) translateY(-50%) translateZ(0);
  transform-origin: center;
  z-index: 50;
}
button.button.button-contact:hover{
  border-radius: 0;
}
.contact .contact-wrapper{
  transform: translateX(100%);
  position: fixed;
  display: flex;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 300px;
  z-index: 20000;
  padding: 1rem;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.contact .contact-wrapper.active{
  transform: translateX(0%);
  transition: all 0.5s ease-in-out;
}
.contact .logo-contact img{
  display: block;
  margin: 1rem auto;
  width: 200px;
}
.contact .contact-overlay{
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 19999;
  opacity: 0;
}
.contact .contact-overlay.active{
  opacity: 1;
  display: block;
}
@media screen and (max-width: 767px){
  .contact .contact-wrapper.active{
    overflow-y: scroll;
  }
}
.wpcf7 .control.has-icons-left .icon, .wpcf7 .control.has-icons-right .icon{
  color: var(--color-1);
}
.wpcf7-form-control, .select select{
  background-color: transparent;
  color: var(--main-text-color);
  border: 1px solid var(--color-1);
  border-radius: 5px;
  box-shadow: none;
  font-family: inherit;
  font-weight: inherit;
  font-size: 1rem;
}
.wpcf7-form-control.wpcf7-acceptance{
  background-color: transparent;
  border: none;
}
textarea.wpcf7-form-control::placeholder, input.wpcf7-form-control::placeholder{
  color: var(--main-text-color);
  opacity: 1;
}
input.wpcf7-form-control::-ms-input-placeholder, textarea.wpcf7-form-control::-ms-input-placeholder{
  color: var(--main-text-color);
}
input{
  font-family: inherit;
  padding: 0.6em;
  border: 1px solid var(--color-1);
  border-radius: 5px;
}
.textarea{
  padding-left: 2.5em;
  padding-bottom: calc(.5em - 1px);
  padding-right: calc(.75em - 1px);
  padding-top: calc(.5em - 1px);
  border: 1px solid var(--color-1);
  border-radius: 5px;
}
textarea{
  padding: 0.6em;
  border: 1px solid var(--color-1);
  border-radius: 5px;
}
.checkbox{
  margin-right: 0.75rem;
}
.textarea:hover, .textarea.is-hovered, .input:hover, .input.is-hovered, .select select:hover, .select select.is-hovered{
  border-color: var(--color-1);
}
form.wpcf7-form .field-body{
  flex-basis: auto;
}

/*--------------------------------------------------------------
# FANCYBOX
--------------------------------------------------------------*/
.fancybox-image,.fancybox-inner,.fancybox-nav,.fancybox-nav span,.fancybox-outer,.fancybox-skin,.fancybox-tmp,.fancybox-wrap,.fancybox-wrap iframe,.fancybox-wrap object{margin:0;padding:0;vertical-align:top;border:0;outline:0}.fancybox-wrap{position:absolute;z-index:8020;top:0;left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.fancybox-skin{position:relative;color:#444;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background:#f9f9f9;text-shadow:none}.fancybox-opened{z-index:8030}.fancybox-opened .fancybox-skin{-webkit-box-shadow:0 10px 25px rgba(0,0,0,.5);-moz-box-shadow:0 10px 25px rgba(0,0,0,.5);box-shadow:0 10px 25px rgba(0,0,0,.5)}.fancybox-inner,.fancybox-outer{position:relative}.fancybox-inner{overflow:hidden}.fancybox-type-iframe .fancybox-inner{-webkit-overflow-scrolling:touch}.fancybox-error{font:14px/20px 'Helvetica Neue',Helvetica,Arial,sans-serif;margin:0;padding:15px;white-space:nowrap;color:#444}.fancybox-iframe,.fancybox-image{display:block;width:100%;height:100%}.fancybox-image{max-width:100%;max-height:100%}#fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span{background-image:url(img/fancybox/fancybox_sprite.png)}#fancybox-loading{position:fixed;z-index:8060;top:50%;left:50%;margin-top:-22px;margin-left:-22px;cursor:pointer;opacity:.8;background-position:0 -108px}#fancybox-loading div{width:44px;height:44px;background:url(img/fancybox/fancybox_loading.gif) center center no-repeat}.fancybox-close{position:absolute;z-index:8040;top:-18px;right:-18px;width:36px;height:36px;cursor:pointer}.fancybox-nav{position:absolute;z-index:8040;top:0;width:40%;height:100%;cursor:pointer;text-decoration:none;background:transparent url(img/fancybox/blank.gif);-webkit-tap-highlight-color:transparent}.fancybox-prev{left:0}.fancybox-next{right:0}.fancybox-nav span{position:absolute;z-index:8040;top:50%;visibility:hidden;width:36px;height:34px;margin-top:-18px;cursor:pointer}.fancybox-prev span{left:10px;background-position:0 -36px}.fancybox-next span{right:10px;background-position:0 -72px}.fancybox-nav:hover span{visibility:visible}.fancybox-tmp{position:absolute;top:-99999px;left:-99999px;overflow:visible!important;max-width:99999px;max-height:99999px}.fancybox-lock{overflow:visible!important;width:auto}.fancybox-lock body{overflow:hidden!important}.fancybox-lock-test{overflow-y:hidden!important}.fancybox-overlay{position:absolute;z-index:8010;top:0;left:0;display:none;overflow:hidden;background:url(img/fancybox/fancybox_overlay.png)}.fancybox-overlay-fixed{position:fixed;right:0;bottom:0}.fancybox-lock .fancybox-overlay{overflow:auto;overflow-y:scroll}.fancybox-title{font:normal 13px/20px 'Helvetica Neue',Helvetica,Arial,sans-serif;position:relative;z-index:8050;visibility:hidden;text-shadow:none}.fancybox-opened .fancybox-title{visibility:visible}.fancybox-title-float-wrap{position:absolute;z-index:8050;right:50%;bottom:0;margin-bottom:-35px;text-align:center}.fancybox-title-float-wrap .child{font-weight:700;line-height:24px;display:inline-block;margin-right:-100%;padding:2px 20px;white-space:nowrap;color:#fff;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;background:0 0;background:rgba(0,0,0,.8);text-shadow:0 1px 2px #222}.fancybox-title-outside-wrap{position:relative;margin-top:10px;color:#fff}.fancybox-title-inside-wrap{padding-top:10px}.fancybox-title-over-wrap{position:absolute;bottom:0;left:0;padding:10px;color:#fff;background:#000;background:rgba(0,0,0,.8)}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){#fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span{background-image:url(img/fancybox/fancybox_sprite@2x.png);background-size:44px 152px}#fancybox-loading div{background-image:url(img/fancybox/fancybox_loading@2x.gif);background-size:24px 24px}}#fancybox-buttons{position:fixed;left:0;width:100%;z-index:8050}#fancybox-buttons.top{top:30px}#fancybox-buttons.bottom{bottom:10px}#fancybox-buttons ul{display:block;width:166px;height:30px;margin:0 auto;padding:0;list-style:none;border:1px solid #111;border-radius:3px;-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);-moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);background:#323232;background:-moz-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#444),color-stop(50%,#343434),color-stop(50%,#292929),color-stop(100%,#333));background:-webkit-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%);background:-o-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%);background:-ms-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%);background:linear-gradient(to bottom,#444 0,#343434 50%,#292929 50%,#333 100%)}#fancybox-buttons ul li{float:left;margin:0;padding:0}#fancybox-buttons a{display:block;width:30px;height:30px;text-indent:-9999px;background-color:transparent;background-image:url(img/fancybox/fancybox_buttons.png);background-repeat:no-repeat;outline:0;opacity:.8}#fancybox-buttons a:hover{opacity:1}#fancybox-buttons a.btnPrev{background-position:5px 0}#fancybox-buttons a.btnNext{background-position:-33px 0;border-right:1px solid #3e3e3e}#fancybox-buttons a.btnPlay{background-position:0 -30px}#fancybox-buttons a.btnPlayOn{background-position:-30px -30px}#fancybox-buttons a.btnToggle{background-position:3px -60px;border-left:1px solid #111;border-right:1px solid #3e3e3e;width:35px}#fancybox-buttons a.btnToggleOn{background-position:-27px -60px}#fancybox-buttons a.btnClose{border-left:1px solid #111;width:35px;background-position:-56px 0}#fancybox-buttons a.btnDisabled{opacity:.4;cursor:default}.animDrop{animation: descend 1s ease;}@keyframes descend{0%{transform: translate(0, -1000px);}100%{transform: translate(0, 0);}}

/* FANCYBOX BUTTON */
#fancybox-buttons{position:fixed;left:0;width:100%;z-index:8050}#fancybox-buttons.top{top:30px}#fancybox-buttons.bottom{bottom:10px}#fancybox-buttons ul{display:block;width:166px;height:30px;margin:0 auto;padding:0;list-style:none;border:1px solid #111;border-radius:3px;-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);-moz-box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);background:#323232;background:-moz-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#444),color-stop(50%,#343434),color-stop(50%,#292929),color-stop(100%,#333));background:-webkit-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%);background:-o-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%);background:-ms-linear-gradient(top,#444 0,#343434 50%,#292929 50%,#333 100%);background:linear-gradient(to bottom,#444 0,#343434 50%,#292929 50%,#333 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222', GradientType=0 )}#fancybox-buttons ul li{float:left;margin:0;padding:0}#fancybox-buttons a{display:block;width:30px;height:30px;text-indent:-9999px;background-color:transparent;background-image:url(img/fancybox/fancybox_buttons.png);background-repeat:no-repeat;outline:0;opacity:.8}#fancybox-buttons a:hover{opacity:1}#fancybox-buttons a.btnPrev{background-position:5px 0}#fancybox-buttons a.btnNext{background-position:-33px 0;border-right:1px solid #3e3e3e}#fancybox-buttons a.btnPlay{background-position:0 -30px}#fancybox-buttons a.btnPlayOn{background-position:-30px -30px}#fancybox-buttons a.btnToggle{background-position:3px -60px;border-left:1px solid #111;border-right:1px solid #3e3e3e;width:35px}#fancybox-buttons a.btnToggleOn{background-position:-27px -60px}#fancybox-buttons a.btnClose{border-left:1px solid #111;width:35px;background-position:-56px 0}#fancybox-buttons a.btnDisabled{opacity:.4;cursor:default}

/*--------------------------------------------------------------
# COOKIES CONSENT
--------------------------------------------------------------*/
.cc_banner-wrapper{
  z-index: 9001;
  position: relative;
}
.cc_container{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 10px;
  background: #222;
  color: #fff;
  font-size: 0.9em;
  animation-duration: .8s;
  animation-name: slideUp;
}
.cc_container .cc_message{
  margin: 0.5em 1em 0.5em 1em;
}
.cc_container .cc_btn{
  float: right;
}
@media screen and (min-width: 500px){
  .cc_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
  }
  .cc_container .cc_btn{
    float: none;
  }
}
@keyframes slideUp{
  0% {
      transform: translateY(66px);
  }
  100% {
      transform: translateY(0);
  }
}
/*--------------------------------------------------------------
# SKIP LINKS
--------------------------------------------------------------*/
/* Utile pour l'accessibilité : lien direct vers le contenu principal */
.skip-link {
  position: absolute;
  left: -9999px;
  padding: 0.5em 1em;
  background: #333;
  color:#fff;
  text-decoration: none;
}
.skip-link:focus {
  position: static;
}

/*--------------------------------------------------------------
# GUTENBERG
--------------------------------------------------------------*/
/* Grande largeur pour Gutenberg */
.content .alignwide {
  margin-left  : -80px; /* à ajuster selon vos préférences */
  margin-right : -80px; /* à ajuster selon vos préférences */
}
/* Pleine largeur pour Gutenberg */
.content .alignfull {
  margin-left  : calc( -100vw / 2 + 100% / 2 );
  margin-right : calc( -100vw / 2 + 100% / 2 );
  max-width    : 100vw;
}
.alignfull img {
  width: 100vw;
}

/* l'alignement grande largeur se comporte comme le pleine largeur en dessous de 768px */
@media screen and (max-width: 768px) {
  .content .alignwide {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
  }
}

/* ajustements block Gutenberg */
.content ul.blocks-gallery-grid, .content ul.wp-block-gallery {
  margin-left: 0;
}
.content figure.wp-block-gallery{
  margin-left: 0;
  margin-right: 0;
}
.wp-block-gallery.aligncenter{
  justify-content: center;
}
@media screen and (min-width: 601px){
  .content .wp-block-media-text figure:not(:last-child) {
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------------
# CAROUSEL SLICK
--------------------------------------------------------------*/
.slick-slider{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus{
  outline: none;
}
.slick-list.dragging{
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slick-track{
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after{
  display: table;
  content: '';
}
.slick-track:after{
  clear: both;
}
.slick-loading .slick-track{
  visibility: hidden;
}
.slick-slide{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide{
  float: right;
}
.slick-slide img{
  display: block;
}
.slick-slide.slick-loading img{
  display: none;
}
.slick-slide.dragging img{
  pointer-events: none;
}
.slick-initialized .slick-slide{
  display: block;
}
.slick-loading .slick-slide{
  visibility: hidden;
}
.slick-vertical .slick-slide{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* SLICK THEME */
.slick-loading .slick-list{
  background: #fff url('img/ajax-loader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev, .slick-next{
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: rgba(0,0,0,0.4);
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus{
  color: transparent;
  outline: none;
  background: rgba(0,0,0,0.4);
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before{
  opacity: 1;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before{
  opacity: .25;
}
.slick-prev:before, .slick-next:before{
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev{
  left: 1rem;
}
[dir='rtl'] .slick-prev{
  right: 1rem;
  left: auto;
}
.slick-prev:before{
  content: '\f104';
}
[dir='rtl'] .slick-prev:before{
content: '\f105';
}
.slick-next{
  right: 1rem;
}
[dir='rtl'] .slick-next{
  right: auto;
  left: 1rem;
}
.slick-next:before{
content: '\f105';
}
[dir='rtl'] .slick-next:before{
content: '\f104';
}

/* Dots */
.slick-dotted.slick-slider{
  margin-bottom: 30px;
}
.slick-dots{
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus{
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before{
  opacity: 1;
}
.slick-dots li button:before{
  font-family: 'Font Awesome 5 Pro';
  font-size: 6px;
  font-weight: 700;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '\f111';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before{
  opacity: .75;
  color: black;
}

/*--------------------------------------------------------------
# MEDIA QUERIES
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {}

@media screen and (min-width: 769px) and (max-width: 1023px) {}

@media screen and (min-width: 1024px) and (max-width: 1215px) {}

@media screen and (min-width: 1216px) and (max-width: 1407px) {}

@media screen and (min-width: 1408px) {}