/* Style généralisé à tous le site */

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body, html{
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
a{
  text-decoration: none;
  color: inherit;
}
a:visited{
  color: inherit;
}
input:focus {
    outline: none !important;
    border: solid 2px 162030;
}
h1{
   font-family:none;
   font-size:none;
   font-family: "Poppins", sans-serif;
}
h2{
   font-family:none;
   font-size:none;
   font-family: "Poppins", sans-serif;
}
h3{
   font-family:none;
   font-size:none;
   font-family: "Poppins", sans-serif;
}
h4{
   font-family:none;
   font-size:none;
   font-family: "Poppins", sans-serif;
}
h5{
   font-family:none;
   font-size:none;
   font-family: "Poppins", sans-serif;
}
h6{
   font-family:none;
   font-size:none;
   font-family: "Poppins", sans-serif;
}

::selection {
  color: #fff;
  background: #162030;
 }
::-moz-selection {
   color: #fff;
   background: #162030;
 }
.container{
  overflow-x: hidden;
}
.perso_cursor{
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  width: 3vw;
  height: 3vw;
  border-radius: 10vw;
  background-color: rgba(255, 255, 255, 0.65);
  transition: 0.1s linear;
  pointer-events: none;
  animation: pulse infinite linear 2s;
  border: solid 2px #FFF;
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  60% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

/* Classic button and input */

/* TODO Penser à mettre les transition pour chaque explorer */

.cp_logo{
  position: absolute;
  height: 120px;
  margin-top: 20px;
  z-index: 10;
  min-width: 120px;
  float: right;
  background-color: #555;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}
.cp_logo:hover{
  box-shadow: 0px 0px 8px transparent;
  transition: 0.3s;
}
.cp_button{
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1vw;
  letter-spacing: 2;
  text-transform: uppercase;
  cursor: pointer;
}
.cp_button:hover .cp_button_overflow{
  width: 100%;
  transition: 0.3s ease-in;
}
.cp_button_overflow{
  width: 25%;
  height: 4px;
  background-color: #FFF;
  transition: 0.3s ease-out;
}
.cp_button_overflow_bis{
  background-color: #222;
}
.cp_zapper{
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 25%;
}
.cp_zapper_number{
  font-size: 1vw;
  letter-spacing: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #222;
}
.cp_zapper_lane{
  display: block;
  width: 100%;
  justify-content: space-between;
}
.cp_zapper_section{
  display: inline-block;
  background-color: #AAA;
  width: 17%;
  height: 4px;
  margin-right: 1%;
}
.cp_zapper_completer{
  width: 0;
  height: 100%;
  margin-left: 0;
  background-color: #222;
  transition: 2.5s;
}
@media(max-width:1000px){
  .cp_button{
    font-size: 4.5vw;
    letter-spacing: 1;
  }
  .cp_zapper{
    width: 60%;
  }
  .cp_zapper_number{
    font-size: 3vw;
  }
}

/* Menu */

.cp_menu_band{
  width: 100vw;
  display: flex;
  background-color: #FFF;
  z-index: 21;
}
.cp_menu_logo_section{
  width: 30vw;
  display: inline-block;
  text-align: center;
  width: 30vw;
}
.cp_menu_button_line{
  display: flex;
  width: 70vw;
  color: #666;
  height: 100px;
  align-items: center;
  justify-content: flex-end;
}
.cp_menu_button{
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: 'Poppins', sans-serif;
  font-weight: 500;
	font-size: 1vw;
  margin-right: 5vw;
	transition: 0.3s;
	cursor: pointer;
}
.cp_menu_subline{
  display: inline-block;
  width: 0;
  margin-left: 50%;
	height: 4px;
	background-color: #666;
	transition: 0.3s;
}
.cp_menu_button:hover{
  color: #555;
	transition: 0.3s;
}
.cp_menu_button:hover .cp_menu_subline{
  width: 95%;
	background-color: #444;
  margin-left: 0;
	transition: 0.3s;
}
.menu_burger{
  display: none;
  margin-left: calc(70vw - 60px);
  margin-top: 20px;
  margin-bottom: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.bar{
  width: 100%;
  height: 20%;
  background-color: #666;
  border-radius: 2px;
  transition: 0.6s ease-in;
}
.bar_2, .bar_3{
  margin-top: 20%;
}
.light_menu{
  display: none;
  position: fixed;
  width: 85vw;
  height: 100vh;
  top: 0;
  right: -85vw;
  background-color: #EEE;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-size: 5vw;
  transition: 0.6s ease-in;
  z-index: 20;
  padding-top: 25vh;
}
.light_menu_mask{
  position: fixed;
  display: none;
  width: 15vw;
  height: 100vh;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.6s ease-in;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.5)
}
.light_menu_button{
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-bottom: 3vh;
  text-transform: uppercase;
  letter-spacing: 2;
}
@media(max-width:1000px){
  .light_menu{
    display: block;
    font-size: 4vw;
  }
  .cp_menu_logo_section{
    margin-left: 10px;
    text-align: left;
  }
  .cp_logo{
    width: 14vh;
    min-width: inherit;
    margin-top: 10px;
    height: auto;
    left: calc(50vw - 7vh);
  }
  .cp_menu_button_line{
    display: none;
  }
  .menu_burger{
    display: block;
    width: 8vw;
    height: 8vw;
    margin-left: 57vw;
  }
}

/* Footer */

.cp_footer_link_line{
  width: 80vw;
  margin-left: 10vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.cp_footer_gif{
  width: 20vw;
}
.cp_footer{
  font-family: "Poppins", sans-serif;
}
.signature{
  display: inline-block;
  margin-top: 2vh;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 2vh;
  border-top: solid 1px #EEE;
  text-align: center;
  color: #444;
  font-size: 0.6vw;
  font-weight: 400;
  cursor: pointer;
}
@media(max-width:1000px){
  .cp_footer_link_line{
    flex-direction: column;
  }
  .cp_footer_gif {
    width: 60vw;
  }
  .signature{
    font-size: 12px;
  }
}

/* accueil img zapper */

.cp_accueil_band{
  position: relative;
  width: 100vw;
  height: calc(100vh - 200px);
}
.cp_accueil_image_zone{
  width: 100%;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  scroll-behavior: smooth;
}
.cp_accueil_image{
  display: inline-block;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cp_accueil_text_zone{
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: flex-start;
  justify-content: flex-end;
  top: 0;
  left: 0;
  padding-bottom: 5vh;
  padding-left: 1vw;
  width: 25%;
  color: #FFF;
  font-family: "Poppins";
  background-image: linear-gradient(90deg, rgba(22, 32, 48, .6), rgba(22, 32, 48, 0));
  height: calc(100vh - 200px);
}
.cp_accueil_text_title{
  font-size: max(1.5vw, 24px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2vh;
  transition: 0.2s ease-in;
}
.cp_accueil_text{
  font-size: max(1vw, 14px);
  margin-bottom: 2vh;
  transition: 0.2s ease-in;
}
.cp_accueil_contact_band{
  margin-top: 2vh;
  padding-left: 1vw;
  padding-right: 1vw;
  width: 98vw;
  display: flex;
  justify-content: space-between;
}
@media(max-width:1000px){
  .cp_accueil_band{
    height: calc(100vh - 120px);
  }
  .cp_accueil_text_zone{
    height: calc(100vh - 120px);
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }
  .cp_accueil_text_title{
    font-size: 4.5vw;
  }
  .cp_accueil_text{
    font-size: 3.5vw;
  }
}

/* Call-back */

.call_back_mask{
  z-index: 12;
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}
.call_back{
  z-index: 13;
  display: none;
  position: fixed;
  box-shadow: 0 0 5 #000;
  width: 50vw;
  height: 50vh;
  top: 25vh;
  left: 25vw;
  background-color: #FFF;
  border-radius: 3px;
  overflow: hidden;
}
.call_back_image_zone{
  display: inline-block;
  vertical-align: text-top;
  margin-top: -100%;
  width: 50%;
  height: 100%;
  background-color: #555;
  background-position: left center;
  background-size: cover;
  background-image: url('../img/contact.jpg');
  -webkit-transition: all 0.7s 0s ease-out;
  -moz-transition: all 0.7s 0s ease-out;
  -o-transition: all 0.7s 0s ease-out;
  transition: all 0.7s 0s ease-out;
}
.call_back_text_zone{
  display: inline-block;
  vertical-align: text-top;
  margin-top: 100%;
  width: 48%;
  height: 100%;
  -webkit-transition: all 0.7s 0s ease-out;
  -moz-transition: all 0.7s 0s ease-out;
  -o-transition: all 0.7s 0s ease-out;
  transition: all 0.7s 0s ease-out;
  overflow-y: auto;
  -ms-overflow-style: none;
}
.inner::-webkit-scrollbar {
  display: none;
}
.call_back_title{
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 5vh;
  margin-bottom: 4vh;
  font-size: 1.8vw;
  line-height: 1.8vw;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #222;
}
.call_back_form{
  display: inline-block;
  margin-left: 2%;
  width: 97%;
  padding: 2vh;
  border: solid 2px #EEE;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}
.call_back_label{
  display: inline-block;
  width: 90%;
  text-align: left;
  font-weight: 400;
  font-size: 0.8vw;
  color: #555;
}
.call_back_input{
  width: 90%;
  border: none;
  border-bottom: solid 2px #444;
  color: #444;
  text-align: left;
  margin-bottom: 1vh;
  padding: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: max(1vw, 12px);
}
.call_back_input:last-child{
  padding-bottom: 0vw;
}
.call_back_form_button{
  width: 30%;
  margin-left: 35%;
  background-color: #9ba8bc;
  border-radius: 5px;
  margin-top: 0.5vw;
  color: #FFF;
  text-align: center;
  padding: 5px;
  font-size: 0.8vw;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.7s ease-in;
}
.agree_icon{
  display: inline-block;
  width: max(1.4vw, 18px);
  height: max(1.4vw, 18px);
  margin-left: 2%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media(max-width:1000px){
  .call_back{
    width: 90vw;
    height: auto;
    left: 5vw;
    flex-direction: column;
  }
  .call_back_image_zone{
    width: 100%;
    height: 25vh
  }
  .call_back_text_zone{
    width: 100%;
    height: auto;
  }
  .call_back_title{
    margin-top: 2vh;
    margin-bottom: 2vh;
    font-size: 3.5vw;
    line-height: 3.5vw;
  }
  .call_back_label{
    font-size: 2.5vw;
  }
  .call_back_form_button{
    margin-top: 2vh;
    margin-bottom: 2vh;
    font-size: 3vw;
  }
}

/* Promo section */

.promo_section_name{
  position: relative;
  z-index: 2;
  display: inline-block;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-bottom: 10px;
  padding-top: 10px;
  background-color: #0f4c81;
  color: #FFF;
  margin-left: 5%;
  margin-top: 4vh;
  font-size: 1.8vw;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}
.promo_section_bloc{
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: -3vh;
  height: 55vh;
  margin-bottom: 10vh;
  background-color: rgba(15, 76, 129, 0.6);
}
.promo_section_container{
  display: inline-block;
  vertical-align: text-bottom;
  width: 89%;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: visible;
}
.promo_section{
  display: inline-block;
  vertical-align: text-bottom;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
.promo_section_text{
  display: inline-block;
  white-space: normal;
  vertical-align: text-bottom;
  width: 58%;
  margin-right: 1%;
  height: 100%;
}
.promo_section_title{
  display: inline-block;
  margin-top: 20vh;
  color: #041421;
  opacity: 0.6;
  font-size: 1.4vw;
  margin-top: 8vh;
  letter-spacing: 1px;
  font-weight: 600;
}
.promo_text{
  margin-top: 2vh;
  color: #041421;
  font-size: 1vw;
  font-weight: 400;
  opacity: 0.6;
}
.promo_button_border{
  font-size: 0.8vw;
  color: #041421;
  letter-spacing: 1px;
  font-weight: 400;
  border: solid 1px rgba(238, 238, 238, 1);
  padding: 5px;
  border-radius: 5px;
  width: 12vw;
  text-align: center;
  cursor: pointer;
  margin-top: 4vh;
  transition: 0.3s ease-in;
}
.promo_button{
  box-shadow: 0px 0px 5px rgba(15, 76, 129, 0.6);
  border-radius: 3px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #FFF;
  transition: 0.3s ease-in;
}
.promo_button_border:hover{
  margin-left: 2px;
  margin-top: calc(4vh + 2px);
  border: solid 1px rgba(238, 238, 238, 0);
  padding: 0px;
  transition: 0.3s ease-out;
}
.promo_button_border:hover .promo_button{
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 13px;
  padding-bottom: 13px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(15, 76, 129, 0);
  transition: 0.3s ease-out;
}
.promo_img{
  display: inline-block;
  vertical-align: text-bottom;
  width: 40%;
  height: 100%;
  background-color: #999;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.promo_section_arrow_left, .promo_section_arrow_right{
  display: inline-block;
  vertical-align: text-bottom;
  width: 5%;
  height: 100%;
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  background-image: url("../img/fleche.png");
  opacity: 0.4;
  cursor: pointer;
  filter: invert(1);
  transition: 0.3s ease-in;
}
.promo_section_arrow_left:hover, .promo_section_arrow_right:hover{
  background-size: 70%;
  transition: 0.3s ease-out;
}
.promo_section_arrow_left{
  transform: rotateZ(180deg);
}
@media(max-width:1000px){
  .promo_section_name{
    width: 80%;
    text-align: center;
    margin-left: 10%;
    font-size: 4.5vw;
  }
  .promo_section{
    white-space: normal;
  }
  .promo_section_text{
    width: 100%;
    height: 50%;
  }
  .promo_section_title{
    font-size: 4vw;
  }
  .promo_text{
    font-size: 2.5vw;
  }
  .promo_img{
    height: 48%;
    width: 100%;
  }
  .promo_section_arrow_left, .promo_section_arrow_right{
    background-size: 90%;
  }
}

/* Conseil */

.conseil_band{
  margin-top: 3vh;
  display: flex;
  width: 100%;
  justify-content: space-around;
  flex-flow: row wrap;
  font-family: "Poppins", sans-serif;
}
.conseil_case_border{
  border: solid 2px #EEE;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.4s, border 0.7s;
  color: #222;
  filter: sepia(100%) hue-rotate(190deg) saturate(400%);
  background-position: center;
  background-size: auto 105%;
  background-repeat: no-repeat;
}
.conseil_case_border:hover{
  border: solid 2px transparent;
  transition: all 0.4s, border 0.7s;
}
.conseil_case_border:hover .conseil_case{
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0;
  transition: 0.4s;
}
.conseil_case_border:hover .conseil_case_img{
  margin: 2vh;
  transition: 0.4s;
}
.conseil_case_border:hover .conseil_case_title{
  margin-left: 2vh;
  transition: 0.4s;
}
.conseil_case_border:hover .conseil_case_text{
  margin-left: 2vh;
  transition: 0.4s;
  margin-bottom: 2vh;

}
.conseil_case{
  background-color: rgba(255, 255, 255, 1);
  margin: 1vh;
  box-shadow: 0px 0px 5px #DDD;
  border-radius: 5px;
  transition: 0.4s;
}
.conseil_case_img{
  width: 30vh;
  height: 30vh;
  margin: 1vh;
  transition: 0.4s;
  background-position: center;
  object-fit: cover;
  border-radius: 5px;
}
.conseil_case_title{
  display: block;
  font-size: max(1vw, 14px);
  font-weight: 600;
  width: 30vh;
  letter-spacing: 1;
  margin-left: 1vh;
  margin-top: 2vh;
  transition: 0.4s;
  text-transform: uppercase;
}
.conseil_case_text{
  display: inline-block;
  font-size: max(1.2vh, 10px);
  width: 30vh;
  margin-top: 1vh;
  margin-left: 1vh;
  margin-bottom: 1vh;
  transition: 0.4s;
}
@media(max-width:1000px){
  .conseil_case_border{
    margin-top: 2vh;
  }
}

/* Traitement */

.traitement_cover{
  width: 100vw;
  height: calc(80vh - 200px);
  background-image: url('../../img/traitement-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Poppins", sans-serif;
}
.traitement_cover_mask{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: #FFF;
}
.traitement_cover_title{
  display: inline-block;
  font-size: max(3vw, 34px);
  width: 100%;
  margin-top: 25vh;
  font-weight: 600;
  letter-spacing: 2px;
}
.traitement_cover_line{
  display: inline-block;
  font-size: max(2.5vw, 30px);
  width: 100%;
  margin-top: 2vh;
  font-weight: 400;
  letter-spacing: 2px;
}
.traitement_carousel{
  display: flex;
  margin-left: 10vw;
  width: 80vw;
  margin-top: 10vh;
  margin-bottom: 10vh;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
}
.carousel_case{
  display: inline-block;
  width: max(20vw, 350px);
  height: max(50vh, 500px);
  background-color: #FFF;
  margin-left: 2vw;
  margin-right: 2vw;
  margin-bottom: 10vh;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #DDD;
  vertical-align: text-top;
  cursor: default;
}
.carousel_big_number{
  position: relative;
  width: 100%;
  height: 100%;
  color: #F3F3F3;
  font-size: max(15vw, 150px);
  line-height: max(15vw, 150px);
  font-weight: 800;
  text-align: right;
  padding-top: 1vh;
  padding-right: 1vh;
}
.carousel_text_case{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin-top: -100%;
  padding: 25px;
  white-space: normal;
}
.carousel_number{
  font-size: max(3vw, 36px);
  color: #222;
  letter-spacing: 2px;
  font-weight: 800;
  border-bottom: solid 6px #222;
  padding-bottom: 0.5vh;
}
.carousel_text{
  text-align: justify;
  margin-top: 4vh;
}
@media(max-width:1000px){
  .traitement_cover{
    height: calc(65vh - 200px);
  }
  .traitement_cover_title{
    margin-top: 10vh;
  }
  .carousel_text_case{
    margin-top: -150%;
  }
}

/* Shop link */

.shop_link{
  margin-top: 3vh;
  margin-bottom: 3vh;
  width: 100%;
  height: 30vh;
  background-image: url('../img/link-fr.jpg');
  background-size: 100%;
  background-position: 50% 0%;
  font-family: "Poppins", sans-serif;
}
.shop_link_mask{
  background-color: rgba(50, 65, 90, 0.7);
  width: 100%;
  height: 100%;
}
.shop_link_title{
  display: inline-block;
  font-weight: 600;
  font-size: 1.5vw;
  color: #FFF;
  padding-top: 5vh;
  width: 100%;
  text-align: center;
}
.shop_link_line{
  display: inline-block;
  font-weight: 600;
  font-size: 1.2vw;
  width: 100%;
  padding-top: 2vh;
  color: #FFF;
  text-align: center;
}
.shop_link_button_border{
  padding: 0;
  border: solid 2px #FFF;
  display: inline-block;
  border-radius: 8px;
  width: 15vw;
  margin-left: 42.5vw;
  margin-top: 5vh;
  cursor: pointer;
  transition: all 0.3s, border 0.7s;
}
.shop_link_button_border:hover{
  padding: 5px;
  margin-left: calc(42.5vw - 1px);
  border: solid 2px transparent;
  transition: all 0.3s, border 0.7s;
}
.shop_link_button_border:hover .shop_link_button{
  padding: 12px;
  transition: 0.3s;
}
.shop_link_button{
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 4px;
  background-color: #FFF;
  color: #222;
  font-size: 1.2vw;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  box-shadow: 0 0 5 #324159;
  transition: 0.3s;
}
@media(max-width:1000px){
  .shop_link_title{
    font-size: 4.5vw;
  }
  .shop_link_line{
    font-size: 4vw;
  }
  .shop_link_button_border{
    width: 30vw;
    margin-left: 35vw;
    margin-top: 3vh;
  }
  .shop_link_button{
    font-size: 3.5vw;
  }
}

/* Page catégorie */

.category_title_zone{
  padding-top: 8vh;
  padding-bottom: 8vh;
  border-top: solid 1px #EEE;
  border-bottom: solid 1px #EEE;
}
.spa_category_title{
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: max(2.5vw, 24px);
  color: #444;
  font-weight: 300;
  letter-spacing: 2px;
  margin-left: 10vw;
}
.conseil_spa_band{
  width: 100%;
  height: 55vh;
  white-space: nowrap;
}
.category_spa_case{
  display: inline-block;
  vertical-align: text-top;
  height: 100%;
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 110%;
  cursor: pointer;
  transition: 0.4s ease-in;
}
.category_spa_case:hover{
  background-size: auto 125%;
  transition: 0.6s ease-in;
}
.category_spa{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  transition: 0.4s ease-in;
}
.category_spa:hover{
  background-color: rgba(255, 255, 255, 0.8);
  transition: 0.6s ease-in;
}
.category_case_img{
  width: 45%;
}
.category_spa_gr .category_case_img{
  width: 50%;
}
.category_fake_button{
  width: 45%;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: transparent;
  color: #222;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.4s ease-in;
}
.category_spa:hover .category_fake_button{
  background-color: #222;
  color: #FFF;
  transition: 0.6s ease-in;
}


/* Category module */

.filter_burger{
  width: 1.5vw;
  height: 1.5vw;
  margin-left: 2vw;
  margin-top: 2vw;
  text-align: left;
  cursor: pointer;
}
.filter_burger:hover .filter_burger_bar{
  width: 100%;
  transition: 0.3s;
}
.filter_burger_bar{
  display: block;
  width: 50%;
  height: 20%;
  margin-top: 20%;
  background-color: #aaa;
  transition: 0.3s;
  transform-origin: center;
}
.filter_burger_bar_1{
  margin-top: 0;
}
.filter_burger_bar_2{
  width: 75%;
}
.filter_burger_bar_3{
  width: 100%;
}
.filter_case{
  display: none;
  opacity: 0;
  margin-top: 2vh;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'Poppins', sans-serif;
  transition-delay: opacity 0.4s;
  transition: 0.4s ease-out;
}
.filter_case_title{
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: max(1.5vw, 14px);
  font-weight: 600;
  color: #222;
}
.filter_type{
  display: inline-block;
  width: 100%;
  padding-left: 15px;
  font-size: max(1vw, 12px);
  font-weight: 400;
  letter-spacing: 1;
  color: #555;
  margin-top: 2vh;
  margin-bottom: 2vh;
}
.filter_type_line{
  display: inline-block;
  margin-top: 1vh;
  width: 100%;
  padding-left: 15px;
  font-size: max(0.8vw, 12px);
  font-weight: 400;
  color: #555;
}
.filter_type_radio{
  display: inline-block;
  vertical-align: middle;
  border: solid 2px #EEE;
  width: 1.2vw;
  height: 1.2vw;
  background-color: #FFF;
  margin-right: 1vw;
  cursor: pointer;
  border-radius: 3px;
}
.filter_type_radio:hover .filter_type_radio_color{
  margin: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s ease-in;
}
.filter_type_radio_color{
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 50%;
  margin-top: 50%;
  background-color: #EEE;
  transition: 0.2s ease-out;
}
.filter_type_active{
  border: solid 2px #6bb4cf!important;
  background-color: #FFF;
}
.filter_color_active{
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #6bb4cf;
}
.filter_result_number{
  display: inline-block;
  width: 100%;
  background-color: #AAA;
  margin-top: 5vh;
  color: #FFF;
  font-size: max(1vw, 12px);
  text-align: center;
  letter-spacing: 2;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 4px;
}
.category_module{
  display: flex;
  justify-content: flex-start;
  width: 100vw;
  margin-top: 2vh;
  border-top: solid 1px #EEE;
  border-bottom: solid 1px #EEE;
}
.category_filter{
  width: 5.5vw;
  transition: 0.6s;
  border-right: solid 1px #EEE;
}
.category_articles_case{
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  justify-content: space-around;
  align-items: flex-start;
  width: 89vw;
  transition: 0.6s;
}
.category_txt_zone{
  font-family: 'Poppins', sans-serif;
  width: 30%;
  min-width: 350px;
  margin: 1vh;
  margin-bottom: 2vh;
  padding: 10px;
  transition: 0.6s;
}
.category_title{
  display: inline-block;
  width: 100%;
  font-weight: 700;
  font-size: max(2.8vw, 34px);
  margin-top: 3vh;
  color: #222;
}
.category_desc{
  font-size: max(0.7vw, 12px);
  color: #444;
  font-weight: 400;
  margin-top: 2vh;
  text-align: justify;
}
.category_article_border{
  border: solid 2px #EEE;
  border-radius: 8px;
  margin: 1vh;
  margin-bottom: 2vh;
  cursor: pointer;
  padding: 5px;
  width: 30%;
  min-width: 350px;
  transition: all 0.3s, border 0.7s;
}
.category_article_border:hover{
  transition: all 0.3s, border 0.7s;
  border: solid 2px transparent;
  padding: 2px;
}
.category_article_border:hover .category_article{
  padding: 13px;
  transition: 0.3s;
}
.category_article{
  background-color: #FFF;
  box-shadow: 0px 0px 5px #DDD;
  text-align: center;
  padding: 10px;
  transition: 0.3s;
}
.category_article_image{
  width: 100%;
  height: 250px;
  border-radius: 3px;
  object-fit: contain;
}
.category_article_name{
  display: inline-block;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: left;
  color: #444;
  text-transform: capitalize;
  font-size: max(1.2vw, 14px);
  margin-top: 1vh;
  padding-left: 7px;
  letter-spacing: 1px;
  object-fit: cover;
  background-position: center;
}
.category_article_size{
  display: inline-block;
  width : 100%;
  margin-top: 0.5vh;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #666;
  font-size: max(0.8vw, 10px);
  text-align: left;
  padding-left: 7px;
  letter-spacing: 1px;
}
.open_filter{
  width: 25vw;
}
@media(max-width:1000px){
  .spa_category_title{
    text-align: center;
    width: 100%;
    font-weight: 400;
    font-size: 5.5vw;
    margin-left: 0;
  }
  .category_title_zone {
    padding-top: 5vh;
    padding-bottom: 5vh;
    margin-top: 2vh;
  }
  .category_title{
    margin-top: 0;
    font-size: 4.5vw;
  }
  .category_desc{
    font-size: max(3vw, 12px);
  }
  .category_article_image{
    height: 25vh;
  }
  .category_article_name{
    font-size: 3.8vw;
  }
  .category_article_size{
    font-size: max(2.8vw, 12px);
  }
  .filter_case_title{
    font-size: 3.5vw;
  }
  .filter_type{
    font-size: 3.5vw;
  }
  .filter_type_line{
    font-size: 3vw;
  }
  .category_filter{
    width: 10vw;
  }
  .open_filter{
    width: 70vw;
  }
  .filter_burger {
    width: 6vw;
    height: 6vw;
    margin-top: 4vw;
  }
  .category_articles_case{
    overflow-x: hidden;
  }
  .filter_type_radio{
    width: 5vw;
    height: 5vw;
    border: solid 2px #EEE;
  }
  .filter_result_number{
    font-size: 3.5vw;
  }
  .category_txt_zone{
    width: 90%;
    min-width: 300px;
  }
  .category_article_border{
    width: 90%;
    min-width: 300px;
  }
}

/* Page product */

.pool_product{
  width: 80vw;
  height: 70vh;
  margin-top: 10vh;
  margin-left: 10vw;
  white-space: nowrap;
  box-shadow: 0px 0px 5px #DDD;
  border-radius: 0px 0px 10px 10px;
}
.product_text_bloc{
  display: inline-block;
  vertical-align: text-top;
  margin-top: 15vh;
  height: 85vh;
  width: 49vw;
  font-family: 'Poppins', sans-serif;
  white-space: normal;
}
.product_name{
  display: inline-block;
  width: 36vw;
  padding: 2vw;
  padding-left: 5vw;
  margin-top: 10vh;
  width: 100%;
  font-size: max(2.5vw, 36px);
  color: #222;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: capitalize;
}
.product_size{
  display: inline-block;
  margin-left: 5vw;
  background-color: #222;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  font-size: max(1vw, 12px);
  padding: 5px;
  padding-left: 1vw;
  padding-right: 1vw;
  width: auto;
}
.product_call_back{
  margin-left: 5vw;
  margin-top: 2vh;
  font-size: 1.6vw;
  letter-spacing: 2px;
}
.icon_band{
  display: flex;
  align-items: center;
  margin-left: 5vw;
  margin-top: 10vh;
}
.spa_icon{
  margin-right: 2vw;
}
.pool_product_img{
  display: inline-block;
  vertical-align: text-top;
  position: relative;
  overflow: hidden;
  width: 80vw;
  height: 80vh;
  transform: rotate(45deg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: -10vw;
  margin-top: 0vh;
  pointer-events: none;
}
.pool_product_img::before{
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  z-index: -1;
  transform: rotate(-45deg);
  background-repeat: no-repeat;
  background-position: right 25% center;
}
.pool_tech{
  margin-top: 10vh;
  padding-top: 5vh;
  margin-left: 10vw;
  width: 80vw;
  height: 40vh;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  font-size: max(1vw, 12px);
  box-shadow: 0px 0px 5px #DDD;
  color: #aaa;
}
.pool_tech_bis{
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding-top: 5vh;
  margin-left: 10vw;
  width: 80vw;
  min-height: 75vh;
  max-height: 85vh;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  font-size: max(1vw, 12px);
  box-shadow: 0px 0px 5px #DDD;
  color: #aaa;
}
.pool_tech_title{
  display: inline-block;
  width: max(45%, 340px);
  margin-left: 2.5%;
  margin-right: 2.5%;
  margin-bottom: 3vh;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #AAA;
  font-size: max(1.8vw, 18px);
}
.spa_icone_line{
  display: inline-block;
  width: max(45%, 340px);
  margin-left: 2.5%;
  margin-right: 2.5%;
  margin-bottom: 1vh;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #AAA;
  font-size: max(1vw, 12px);
}
.spa_icone{
  display: inline-block;
  width: 1.2vw;
  height: 1.2vw;
  vertical-align: middle;
  background-position: center;
  background-size: 85%;
  background-repeat: no-repeat;
}
.technique_line{
  display: inline-block;
  width: max(45%, 340px);
  margin-left: 2.5%;
  margin-right: 2.5%;
  margin-bottom: 1vh;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #999;
  font-size: max(1.2vw, 10px);
}
.technique_line_nom{
  font-style: italic;
}
.technique_line_data{
  margin-left: 5px;
  color: #555;
  font-weight: 600;
}
@media(max-width:1000px){
  .pool_product{
    white-space: normal;
  }
  .product_size{
    font-size: 2.8vw;
  }
  .icon_band{
    margin-top: 5vh;

  }
  .pool_product_img{
    width: 120vw;
    height: 80vh;
    margin-left: 15vw;
    margin-top: -30vh;
  }
  .product_pic_zapper_zone{
    width: 100vw;
  }
  .product_pic_zone{
    height: 40vh;
  }
  .product_text_bloc{
    position: inherit;
    margin-top: 2vh;
    height: 55vh;
    color: #222;
  }
  .product_name{
    width: 100vw;
    padding-left: 5vw;
    margin-top: 2vh;
  }
  .product_desc{
    width: 90vw;
    margin: 5vw;
  }
  .parallax_contact_button{
    height: auto;
  }
  .pool_tech{
    height: 50vh;
    margin-top: 2vh;
    padding-top: 20vh;
  }
  .pool_tech_title{
    font-size: 3.8vw;
  }
  .spa_icone_line{
    color: #666;
    font-size: 3vw;
  }
  .spa_icon{
    height: 3vw;
    margin-right: 10px;
  }
  .pool_tech_bis{
    margin-top: 2vh;
    height: auto;
  }
  .technique_line{
    font-size: 3vw;
    width: 98%;
  }
}

/* Page contact */

.parallax_contact{
  margin-top: 10vh;
  margin-bottom: 10vh;
  width: 100%;
  height: 50vh;
  background-position: 50% 0%;
  background-image: url('../img/contact.jpg');
  background-size: 100%;
  font-family: "Poppins", sans-serif;

}
.parallax_contact_form{
  display: inline-block;
  width: 35vw;
  height: 60vh;
  margin-left: 55vw;
  margin-top: -5vh;
  box-shadow: 0px 0px 5px #AAA;
  border-radius: 4px;
  background-color: #FFF;
  text-align: center;
}
.parallax_contact_title{
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #666;
  margin-top: 7vh;
  font-size: max(2.5vw, 36px);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.parallax_contact_form_case{
  margin-left: 2vw;
  margin-right: 2vw;
  margin-top: 6vh;
}
.call_back_form_button_border_bis{
  margin: auto;
  margin-top: 10vh;
  width: 15vw;
  border: solid 2px #DDD;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}
.call_back_form_button_border_bis:hover{
  border: solid 2px transparent;
  padding: 5px;
  transition: 0.4s;
}
.call_back_form_button_border_bis:hover .parallax_contact_button{
  padding: 5px;
  transition: 0.4s;
}
.call_back_form_button_bis{
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 10px;
  font-size: max(1.2vw, 14px);
  color: #FFF;
  border-radius: 4px;
  background-color: #DDD;
  font-weight: 600;
  transition: 0.3s;
}
@media(max-width:1000px){
  .parallax_contact {
    height: 25vh;
    margin-bottom: 22vh;
  }
  .parallax_contact_form{
    margin-left: 10vw;
    width: 80vw;
    height: auto;
    padding-bottom: 2vh;
  }
  .parallax_contact_title{
    font-size: max(5.5vw, 21px);
    margin-top: 3vh;
  }
  .parallax_contact_form_case{
    margin-top: 4vh;
  }
  .call_back_form_button_border_bis{
    margin-top: 2vh;
    width: 35vw;
  }
  .call_back_form_button_bis{
    padding: 5px;
  }
}

/* Page Promo */

.promo_zone{
  white-space: nowrap;
  width: 90vw;
  min-height: 80vh;
  margin: 0 auto 5vh auto;
  box-shadow: 0px 0px 5px #DDD;
  border-radius: 5px;
}
.promo_section{
  display: inline-flex;
  flex-direction: column;
  white-space: normal;
  vertical-align: middle;
  width: 60%;
  height: 100%;
  color: #333;
}
.title_section{
  width: auto;
  display: block;
  margin: auto;
}
.promo_section h1{
  display: block;
  width: auto;
  font-weight: 600;
  text-align: right;
  font-size: 5.5vw;
  padding-left: 10px;
}
.promo_section h2{
  display: block;
  width: auto;
  color: #666;
  font-weight: 300;
  text-align: right;
  font-size: 2vw;
  padding-left: 10px;
  margin-top: -10px;
}
.promo_article{
  text-align: center;
  font-size: 1.3vw;
  margin: 5vh auto;
  padding: 0 8vw;
}
.promo_action_border{
  border: solid 2px #3f87ab;
  margin: auto;
  width: 40%;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  text-align: center;
}
.promo_action_border:hover{
  animation: button-border-hover 0.5s 1 forwards;
}
.promo_action_border:hover .promo_action_button{
  animation: button-hover 0.5s 1 forwards;
}
.promo_action_button{
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #3f87ab;
  color: #FFF;
  letter-spacing: 2px;
  font-size: 1.2vw;
  padding: 10px;
  border-radius: 4px;
}

@keyframes button-border-hover{
  0%{
    padding: 0px;
    border: solid 2px #3f87ab;
  }
  40%{
    padding: 5px;
    border: solid 2px #FFF;
  }
  70%{
    padding: 5px;
    border: solid 2px #FFF;
  }
  100%{
    padding: 0px;
    border: solid 2px #3f87ab;
  }
}
@keyframes button-hover{
  0%{
    padding: 10px 10px;
    margin: 0px;
  }
  40%{
    padding: 5px;
    margin: 0px;
  }
  70%{
    padding: 5px;
    margin: 0px;
  }
  100%{
    padding: 10px 10px;
    margin: 0px;
  }
}

.promo_section aside{
  width: 100%;
  text-align: right;
  padding-left: 10px;
  font-size: 0.8vw;
  color: #444;
  margin-top: 10px;
  padding: 5px;
}
.promo_side_image{
  vertical-align: middle;
  display: inline-block;
  width: 40%;
  height: 100%;
  padding: 10px;
  border: none;
}
.promo_side_image img{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0px 5px 5px 0px;
  border: none;
  object-fit: cover
}
.rdv_section{
  display: none;
  width: 98%;
  border: solid 1px #9ba8bc;
  border-radius: 6px;
  margin-left: 1%;
}
.rdv_section h3{
  display: inline-block;
  width: 100%;
  padding: 10px 0px;
  font-size: 1.8vw;
  color: #FFF;
  background-color: #9ba8bc;
  text-align: center;
}
.rdv_section form{
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.rdv_calendar{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  border-top: solid 1px #9ba8bc;
  padding: 5px;
}
.rdv_calendar_date{
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 19%;
  text-align: center;
  border: solid 2px #9ba8bc;
  color: #444;
  background-color: #FFF;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: 0.4s ease-in;
}
.rdv_calendar_date:hover{
  background-color: #9ba8bc;
  color: #FFF;
  transition: 0.4s ease-out;
}
.date_nbr{
  display: inline-block;
  text-align: center;
  width: 100%;
  font-size: 2.5vw;
  line-height: 2.3vw;
  font-weight: 800;
}
.date_month{
  display: inline-block;
  width: 100%;
  font-size: 1.2vw;
  text-align: center;
  margin-bottom: 10px;
}
.date_chreno{
  display: inline-block;
  width: 90%;
  font-size: max(10px, 0.7vw);
  color: #FFF;
  border-radius: 3px;
}
.rdv_last_step{
  display: none;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  padding: 5px;
}
.promo_reservation{
  flex-grow: 1;
  flex-basis: 25%;
  text-align: center;
  background-color: #9ba8bc;
  border-radius: 5px;
}
#promo_reservation_date_jour{
  display: inline-block;
  width: 100%;
  font-size: 1.8vw;
  color: #FFF;
  margin-top: 10px;
}
#promo_reservation_date_nbr{
  display: inline-block;
  width: 100%;
  font-size: 4vw;
  line-height: 4.2vw;
  margin-top: 5px;
  color: #FFF;
  font-weight: 800;
}
#promo_reservation_date_month{
  display: inline-block;
  width: 100%;
  font-size: 1.8vw;
  color: #FFF;
}
.promo_reservation_horaire_zone{
  display: inline-block;
  flex-grow: 1;
  flex-basis: 25%;
  padding: 0 5px;
}
.promo_reservation_horaire{
  width: 100%;
  text-align: right;
  margin: 5px 0px;
}
.horaire_status{
  display: inline-block;
  padding: 0px 10px;
  font-size: max(10px, 1vw);
  color: #FFF;
  border: solid 1px #008bb0;
  background-color: #7cbcd9;
  margin-left: 10px;
  cursor: pointer;
}
.horaire_status_active{
  border: solid 1px #008bb0;
  background-color: #7cbcd9;
}
#rdv_calendar_date_active{
  border: solid 2px #22f12b;
}
.horaire_status_suractive{
  border: solid 1px #22f12b;
  background-color: #58cb5d;
}
.horaire_status_inactive{
  border: solid 1px #cf343e;
  background-color: #f15f53;
}
.promo_form{
  flex-grow: 2;
  flex-basis: 50%;
  padding: 0 5px;
}
.promo_form h4{
  width: 100%;
  text-align: center;
}
.promo_form label{
  margin-left: 0;
  width: 100%;
}
.promo_form input{
  width: 100%;
  font-family: "Poppins", sans-serif;
  padding: 2px 5px;
}
.reservation_alert_zone{
  width: 100%;
  margin: 10px 0px;
  text-align: center;
  color: #cf343e;
  min-height: 5vh;
}
.promo_back_button{
  display: inline-block;
  width: 40%;
  margin-left: 16%;
  color: #555;
  text-align: center;
  padding: 2px 0px;
  cursor: pointer;
}
.promo_valid_button{
  display: inline-block;
  width: 40%;
  margin-left: 1%;
  background-color: #9ba8bc;
  color: #FFF;
  text-align: center;
  padding: 2px 0px;
  border-radius: 3px;
  cursor: pointer;
}
.invible_zone{
  display: none;
}
.rdv_end_step{
  display: none;
  width: 100%;
  text-align: center;
  padding-top: 5vh;
  padding-bottom: 5vh;
  color: #444;
  font-size: 1.2vw;
}
.modele_link{
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 2vh 0px;
  color: #666;
  transition: 0.3s;
}
.modele_link:hover{
  color: #444;
  transition: 0.3s;
}
@media(max-width:1000px){
  .promo_zone{
    white-space: normal;
    height: auto;
  }
  .promo_section{
    width: 100%;
    height: auto;
  }
  .promo_side_image{
    width: 100%;
    height: 50vh;
  }
  .promo_side_image img{
    border-radius: 5px;
  }
  .title_section h1{
    font-size: 9.5vw;
  }
  .title_section h2{
    font-size: 5vw;
    line-height: 8.5vw;
  }
  .promo_article{
    font-size: 3vw;
  }
  .promo_action_border{
    width: 60%;
  }
  .promo_action_button{
    font-size: 4vw;
  }
  .promo_section aside{
    font-size: 2vw;
  }
  .rdv_section h3{
    font-size: 4.8vw;
  }
  .rdv_calendar_date{
    flex-basis: 49%;
  }
  .date_nbr{
    font-size: 8.5vw;
    line-height: 10.3vw;
  }
  .date_month{
    font-size: 4.2vw;
  }
  .rdv_last_step{
    flex-direction: column;
  }
  #promo_reservation_date_nbr{
    font-size: 9vw;
    line-height: 9.2vw;
  }
  .promo_reservation_horaire{
    display: inline-block;
    width: 49%;
  }
  .promo_form h4{
    font-size: 6vw;
    margin-top: 2vh;
  }
  .promo_back_button{
    margin-left: 5%;
  }
  .rdv_end_step{
    font-size: 3.5vw;
    padding: 2vh 5vw;
  }
  .radio_line{
    display: block;
  }
}
