/*
*
/* ----- banner
*
*/
.banner {
  position: relative;
  padding-top: 130px;
}
.banner:before {
  width: 200vw;
  height: 100vh;
  min-height: 650px;
  position: absolute;
  left: -50vw;
  bottom: 10%;
  background: var(--brown);
  transition: none;
  z-index: -1;
  content: "";
}
.banner .wrapper {
  display: grid;
  grid-template-columns: 265px 1fr;
  align-items: center;
  width: inherit;
}
/* banner video */
.banner .video img, .banner .video {
  position: relative;
  /*
  overflow-y: hidden;
  overflow-x: visible;
*/
  z-index: 5;
  /*
  width: 80vw;
*/
}
.banner .video video {
  width: calc(50vw + 350px);
  height: auto;
  max-height: 800px;
  object-fit: cover;
  display: block;
  position: relative;
  filter: brightness(0.5);
}
/* banner texte */
.banner .texte {
  position: relative;
  z-index: 10;
  /*
  align-self: flex-end;

  padding-bottom: 3vh;*/
}
.banner .texte_content {
  min-width: 320px;
  gap: 0;
}
.texte_content .titre_main {
  min-width: 700px;
}
/* banner links */
.banner_links a {
  display: grid;
  height: 60px;
  font: 600 16px/60px "Work Sans";
  color: var(--white);
  text-transform: uppercase;
  font-optical-sizing: auto;
  letter-spacing: .05rem;
  background: var(--green);
  overflow: hidden;
  margin-top: 20px;
  grid-template-columns: 60px 1fr;
  transition: 300ms ease-in-out;
}
.banner_links a:hover {
  margin-left: 15px;
}
.banner_links a span:first-child {
  width: 60px;
  height: 60px;
  background: var(--white);
  display: grid;
  align-items: center;
  justify-content: center;
}
.banner_links a span:last-child {
  padding-left: 30px;
}
.banner_links img {
  width: 20px;
}
/*
*
/* ----- banner responsive
*
*/
@media (max-width: 1300px) {
  .banner .wrapper {
    max-width: 90vw;
  }
  .texte_content .titre_main {
    min-width: 500px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1000px) {
  .banner {
    padding-top: 80px;
  }
  .banner:before {
    bottom: 7%;
  }
  .banner .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    order: 0;
  }
  .banner .video img, .banner .video {
    width: 100vw;
    position: relative;
    right: 5vw;
    height: 300px;
  }
  .banner .video video {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .banner .texte {
    position: relative;
    top: -20px;
    z-index: 10;
    order: 1;
    padding: 0;
    width: 90vw;
  }
  .texte_content .titre_main {
    min-width: 100%;
    margin-bottom: 20px;
  }
  .banner_links {
    width: 300px;
  }
  .banner_links a {
    height: 50px;
    font: 600 16px/50px "Work Sans";
  }
  .banner_links a:hover {
    margin-left: 15px;
  }
  .banner_links a span:first-child {
    width: 50px;
    height: 50px;
  }
  .banner_links a span:last-child {
    padding-left: 30px;
  }
  .banner_links img {
    width: 15px;
  }
}
@media (max-width: 700px) {
  .banner_links {
    width: 100%;
  }
}
/*
*
/* ----- section about
*
*/
.section.about {
  width: 100%;
  background-color: var(--white);
  padding: 30px;
}
.section.about .border-green {
  padding: 50px;
}
.section.about .bloc_grid {
  justify-items: center;
}
@media (min-width: 1000px) {
  .section.about .bloc_grid {
    grid-template-columns: 30% 1fr;
  }
}
@media (min-width: 1200px) {
  .section.about .bloc_grid {
    grid-template-columns: 40% 1fr;
  }
}
.section.about .about-img img {
  object-fit: cover;
  z-index: 0;
}
.about-img {
  position: relative;
}
.section.about .about-img:after {
  background-image: url('../images/feuille.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  content: "";
  position: absolute;
  bottom: -13px;
  z-index: 3;
  width: 140px;
  height: 40px;
  right: -70px;
}
.section.about .content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section.about .content-inner .sous_titre {
  text-align: center;
}
.section.about .content-inner .about-chapo {
  text-align: center;
  font: 400 16px / 22px "Work Sans";
  color: #000;
  letter-spacing: .02rem;
}
.section.about .liste-atouts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
}
.section.about .atout {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display";
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
.section.about .atout img {
  width: 45px;
  height: 45px;
  object-fit: fill;
}
@media (min-width: 700px) {
  .section.about .atout {
    font-size: 20px;
  }
}
@media (max-width: 1400px) {
  .section.about .content-inner {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  /*  .section.about .about-img img {
    max-width: 400px;
    height: auto;
  }*/
}
@media (max-width:700px) {
  .section.about .about-img {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  /*  .section.about .about-img img {
    height: 250px;
    width: 100%;
  }*/
  .section.about {
    padding: 10px;
  }
  .section.about .border-green {
    padding: 10px;
  }
  .section.about .about-img:after {
    background-size: 60%;
    transform: translateY(15%) translateX(-50%);
    left: 53%;
    width: 80px;
    height: 40px;
  }
}
/*
*
/* ----- section chambres d'hôte
*
*/
.section.chambre_slider {
  position: relative;
  margin: 0;
}
.section.chambre_slider:before {
  width: 100vw;
  height: 100%;
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: var(--white);
  content: "";
}
.chambre_slider-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 0;
}

@media (min-width: 1000px) { 
  .section.chambre_slider:before {
    width: calc(100% + 100%);
    left: -25%;
    transform: translateY(-50%) translateX(-50%);
  }
  .section.chambre_slider {
    margin: 0;
  }
  .chambre_slider-content {
    padding: 150px 0;
  }
}
/* Swiper */
@media (min-width: 1000px) {
  .chambre_slider-content:first-child {
    width: 50%;
  }
}
.chambreSlider .slider 					  { width: 100%;}
.chambreSlider .item 		 				  { margin-right: 40px; float: none; display: inline-block; vertical-align: middle; max-width: 440px;}
.chambreSlider .item a   					{ display: block;}
.chambreSlider .item a img					{ display: block; filter:brightness(0.8)}
.chambreSlider .item a:hover img  					{ filter:brightness(1)}
.chambreSlider .item a img		 		{ width: 100%; height: auto; display: block; transition: filter 400ms ease-in-out; }
.chambreSlider .item a p			   	{ background: var(--green);   color: var(--white); padding: 20px; font-size: 14px; }
.chambreSlider .item a p span			{ display: block; color: var(--white); font-size: 18px; line-height: 28px; }


.chambreSlider .nav_count 				        { position: absolute; 0; bottom: 0;}
.chambreSlider .nav_slider .slick-prev 		{ margin-right: 50px;}
.chambreSlider .nav_count .count 		{ position: absolute; left: 50px; top: 14px; font-family: "Playfair Display"; letter-spacing: .3rem; }

@media (min-width: 1000px) {
  .chambreSlider .slider 					  { width: 2000px; position: absolute; left: 60%; top: 50%; transform: translateY(-50%);}
  .chambreSlider .item a p span			{ line-height: 30px; font-size: 22px; }
  .chambreSlider .nav_count 				        { position: absolute; left:calc(60% - 18px); bottom: 65px;}
  .chambreSlider .nav_slider .slick-prev 		{ margin-right: 80px;}
  .chambreSlider .nav_count .count 		{ position: absolute; left: 87px; top: 7px; font-family: "Playfair Display"; letter-spacing: .3rem; }
}



/*@media (max-width:1200px) {
.chambreSlider .nav_slider 				    { bottom: -13px;}
.chambreSlider .nav_slider:before 			{ display: none; }
}*/
/*@media (max-width:1000px) {
.chambreSlider .item 		 				{ max-width: 40vw; padding: 0;}
}*/
@media (max-width:700px) {
.chambreSlider .slider 					      { margin-top: 20px;}
.chambreSlider .item 		 				      { max-width: none; width: 85vw; margin-right: 15px;}
.chambreSlider .nav_slider 				    { bottom: -12px; right: -13px;}
}




/*
/* ----- section SPA PRIVATIF
*
*/
.spa_privatif-content {
  position: relative;
}
.spa_privatif-content.bloc_grid {
  margin: 0;
}
/*.spa_privatif-content .main-img {
  height: 300px;
  width: 100%;
  position: relative;
}*/
.spa_privatif-content .main-img:after {
  content: "";
  border: 1px solid var(--green);
  height: 300px;
  width: 100%;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -1;
}
.spa_privatif-content img {
  object-fit: cover;
}
.spa_privatif-content .main-img img {
  width: 600px;
  height: auto;
}
.spa_privatif-content .secondary-img-container {
  display: none;
}
.secondary-img-container {
  position: relative;
}
.spa_privatif-content .secondary-img-container .img-2 {
  width: 300px;
  height: auto;
  position: relative;
  top: -25px;
  left: -180px;
  z-index: 2;
}
.spa_privatif-content .secondary-img-container .img-3 {
  width: 200px;
  height: auto;
  position: relative;
}
@media (min-width: 1000px) {
  .spa_privatif-content.bloc_grid {
    align-items: flex-start;
  }
  .spa_privatif-content .photo {
    z-index: -1;
  }
/*  .spa_privatif-content .secondary-img-container .img-3 {
    top: -200px;
    left: 210px;
  }*/
}
@media (min-width: 1300px) {
  .spa_privatif-content .secondary-img-container {
    display: block;
    height: 315px;
  }
  .spa_privatif-content .secondary-img-container .img-3 {
    top: 26px;
    left: 95px;
  }
  .spa_privatif-content .secondary-img-container {
    display: block;
    height: 320px;
  }
}
/*
*
/* ----- section ESTHETISME / Massage
*
*/
.esthmassSlider {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
}
.esthmassSlider .swiper-wrapper {
  max-width: 100%;
}
.esthmassSlider .swiper-slide {
  width: 100%;
}
.esthmassSlider .swiper-slide-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
}
@media (min-width: 1000px) {
  .esthmassSlider .swiper-slide-content {
    margin-top: 100px;
  }
}
.esthmassSlider .head {
  container-type: inline-size;
  width: 100%;
  height: 100%;
  position: relative;
  top: 50px;
}
@media(min-width: 500px) {
  .esthmassSlider .head {
    top: 60px;
  }
}
.esthmassSlider .head .sous_titre {
  color: var(--green);
  opacity: 0.2;
  container-type: size;
  resize: horizontal;
  font-size: 20cqw;
  display: inline;
}
.esthmassSlider .images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
}
@media (min-width: 460px) {
  .esthmassSlider .images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    width: 100%;
  }
}
.esthmassSlider .images img {
 /* width: 100%;*/
  height: auto;
  object-fit: cover;
}
.esthmassSlider .images img:nth-child(2) {
 /* width: 100%;*/
  height: auto;
}
@media (min-width: 500px) {
  .esthmassSlider .images {
    justify-content: center;
    gap: 40px;
  }
/*  .esthmassSlider .images img {
    width: 20vw;
    height: auto;
    object-fit: cover;
  }
  .esthmassSlider .images img:nth-child(2) {
    width: 25vw;
    height: auto;
  }*/
}
@media (min-width: 1600px) {
/*  .esthmassSlider .images img {
    width: 15vw;
    height: auto;
    object-fit: cover;
  }
  .esthmassSlider .images img:nth-child(2) {
    width: 20vw;
    height: auto;
  }*/
}
.esthmassSlider .esthmass-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 30px;
  top: 0px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  height: fit-content;
}
.esthmassSlider .swiper-pagination-bullet {
  padding: 5px 0px;
  background: none;
  border-radius: 0;
  width: auto;
  height: 35px;
  text-align: center;
  font-size: 1.2em;
  font-weight: 500;
  font-family: "Work Sans";
  text-transform: uppercase;
  text-align: center;
  color: #000;
  opacity: 1;
}
.esthmassSlider .swiper-pagination-bullet-active {
  color: #000;
  background: transparent;
  font-weight: 600;
  border-bottom: 1px solid #000;
}