@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
:root {
  --beige: #F5F5EF;
  --beige-rgb: 245, 245, 239;
  --rouge: #C61321;
  --rouge-rgb: 198, 19, 33;
  --rouge-darker: #B01;
  --bleu: #2A0A5E;
  --bleu-rgb: 42, 10, 94;

  --doctolib-bleu: #107aca;

  --logo-width: 250px;
}
html {
  font-family: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--beige);
}

a {
  text-decoration: none;
}






.delimiter {
  display: none;
}



#page_header {
  position: relative;
  border-bottom: 2px solid rgba(var(--bleu-rgb), 0.2);
  min-height: 500px;
  height: 70vh;
  /*box-shadow: 0 0 4px -2px rgba(0,0,0,0.4);*/
}

#logo {
  max-width: var(--logo-width);
  margin: auto;
  padding-top: 47px;
  padding-bottom: 47px;
  position: absolute;
  top: calc(-1 * var(--logo-width) / 1.46);
  left:0; right: 0;
}
#logo img {
  width: 100%;
  /*opacity: 0.95;*/
}


#header_img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px);
  opacity: 0.9;
}

#page-title-wrapper {
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8));
  opacity: 0.9;
  position: absolute;
  bottom: 0;
  left:0; right:0;
  padding-top: calc(var(--logo-width) / 2.2);
  padding-bottom: 2vh;
}
#page-title {
  text-transform: uppercase;
  max-width: 450px;
  margin: auto;
  text-align: center;
  /*text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);*/
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
  color: var(--bleu);
  opacity: 0.85;
  padding-top: 20px;
  font-size: 30px;
  line-height: 1.75;
}
#page-title span {
  display: block;
}
#titre_localisation {
  font-size: 70%;
}
#titre_modalites {
  font-size: 50%;
}


@media (min-width: 740px) {
  #page-title {
    max-width: 700px;
    font-size: 47px;
    /*line-height: 69px;*/
  }
}



#telephone {
  /*position: fixed;*/

  /*position: absolute;*/
  /*left:0;*/
  /*right:0;*/
  /*width: 100%;*/
  text-align: center;
  /*z-index: 1000;*/
}
#telephone a {
  position: relative;
  padding: 10px 40px;
  /*background-color: rgba(38, 170, 153, 0.8);*/
  background-color: rgba(var(--rouge-rgb), 0.8);
  text-shadow: 1px 1px 0 var(--rouge-darker);
  color: #FFF;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-weight: 300;
  box-shadow: 0 4px 4px -2px rgba(0,0,0,0.4);
  z-index: 100;
  transition: all 0.2s ease-in-out;
}

#telephone a:hover {
  background-color: rgba(var(--rouge-rgb), 0.9);
  text-shadow: none;
}

.bouton_rdv_doctolib {
  text-align: center;
  margin-top: 4vh;
}
.bouton_rdv_doctolib a {
  color: white;
  background-color: var(--doctolib-bleu);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  padding-top: 15px;
  border-radius: 10px;
  transition: all .3s ease-in-out;
  /*box-shadow: 1px 2px 4px 0 rgba(0,0,0,.4);*/
  /*border: 1px solid #fff;*/
}
.bouton_rdv_doctolib a:hover {
  background-color: var(--bleu);
}
.bouton_rdv_doctolib img {
  width: 100px;
  margin-left: 7px;
  position: relative;
  bottom: 3px;
}

#kines {
  /*background-color: #fff;*/
  margin-top: 7vh;
  padding: 10px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.kine {
  width: 235px;
  text-align: center;
  background-color: #fff;
  /*background-color: var(--beige);*/
  padding: 15px;
  border-radius: 10px;
  padding-bottom: 60px;
  position: relative;
  transition: all .2s ease-in-out;
  box-shadow: 0 4px 10px -5px rgba(0,0,0, .2);
}
.kine:hover {
  transform: scale(1.05);
  margin: 0 10px;
  box-shadow: 0 4px 15px -5px rgba(0,0,0, .4);
}
.kine .photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.kine .photo img {
  width: 100%;
  object-fit: cover;
  transition: all .5s ease-in-out;
}
.kine:hover .photo img {
  transform: scale(1.1);
}

.kine .photo .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.2);
  top: 0;
  left: 0;
}

.kine h2 span {
  display: block;
  font-size: 16px;
  font-weight: 300;
}

.kine .nom {
  color: var(--bleu);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.kine .nom b {
  text-transform: uppercase;
}

.kine strong {
  color: var(--rouge);
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}

.kine .bouton_rdv_doctolib {
  /*margin-top: 20px;*/
  position: absolute;
  bottom: 0px;
  left:0; right: 0;
}

.kine .bouton_rdv_doctolib a {
  font-size: 14px;
  padding-top: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.kine .bouton_rdv_doctolib img {
  bottom: 0px;
}




/*#acces {*/
/*  float: left;*/
/*  width: 100%;*/
/*  background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('../img/texture-bois-clair.jpg');*/
/*  background-repeat: no-repeat, repeat;*/
/*}*/
#plan {
  width:80%;
  max-width: 1400px;
  margin: auto;
  /*border: 4px solid rgba(68, 170, 153, 0.2);*/
  /*border: 4px solid rgba(var(--rouge-rgb), 0.2);*/
  box-shadow: 0 0px 10px 0px rgba(0,20,10,0.2);
  /*position: relative;*/
  /*bottom: 47px;*/
  filter: grayscale(20%);
}

#adresse {
  opacity: 1;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  text-align: center;

  margin: auto;
  color: rgba(var(--rouge-rgb), 0.8);
  /*background-color: rgba(var(--beige-rgb), .8);*/
  /*width: 100%;*/
  /*max-width: 740px;*/
  /*width: 90%;*/
  /*max-width: 969px;*/
  padding: 25px;
  /*position: relative;*/
  /*bottom: 40px;*/
}


#photo_devanture {
  width: 100%;
  max-width: 965px;
  /*max-width: 740px;*/
  height: auto;
  max-height: 600px;
  overflow: hidden;
  margin: auto;
  /*margin-bottom: 20px;*/
  box-shadow: 0 0px 4px 0 rgba(0,0,0,0.4);

}

#photo_devanture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*border: 7px solid #def;*/
  box-sizing: border-box;
  filter: sepia(0.3);
  vertical-align: top;
}




#horaires {
  /*background-color: rgba(255, 255, 255, 1);*/

  max-width: 300px;
  margin: auto;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 70px;
  padding-left: 20px;
  padding-right: 20px;

  /*position: absolute;*/
  /*top: 0; left: 0; bottom: 0; right: 0;*/
  line-height: 1.6;
}

/*#horaires ul {*/
/*  width: 90%;*/
/*  max-width: 300px;*/
/*  margin: auto;*/
/*}*/


#horaires .section_title {
  font-size: 18px;
  /*font-weight: bold;*/
  text-transform: uppercase;
  text-align: center;
}
#horaires .jour {
  /*font-weight: bold;*/
  min-width: 50px;
  display: inline-block;
  color: var(--bleu);
}
#horaires li {
  list-style-type: none;
}





#photos {
  padding-top: 74px;
  padding-bottom: 50px;
  float: left;
  width: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('../img/texture-bois-clair.jpg');
  background-repeat: no-repeat, repeat;
}


.photos_grid {
  max-width: 1200px;
  margin: auto;
}

.photos_grid .photo {
  width: 90%;
  height: 300px;
  margin: 5%;
  /*border: 4px solid rgba(var(--rouge-rgb), 0.2);*/
  box-sizing: border-box;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.2);
  transition: all 0.2s ease-in-out;
}

.photos_grid .photo.large {
  width: 90%;
  max-width: 740px;
  max-height: 47vw;
  float: none;
  margin: 20px auto;
  clear: both;
}

.photos_grid .photo.portrait {
  height: 700px;
  max-height: 65vh;
}

@media (min-width: 700px) {
  .photos_grid .photo {
    float: left;
    width: 45%;
    margin: 2%;
  }
}

.photos_grid .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: sepia(0.2);*/
  transition: all 0.2s ease-in-out;
}

.photos_grid .photo:hover {
  transform: scale3d(1.1, 1.1, 1);
}

.photos_grid .photo:hover img {
  /*filter: sepia(0.4);*/
}




#page_footer {
  font-size: 14px;
  float: left;
  width: 100%;
  background-color: var(--beige);
  text-align: center;
  padding-top: 47px;
  padding-bottom: 47px;
  /*color: #FFF;*/
  color: var(--bleu);
  font-weight: 300;
  /*text-shadow: 0px 1px 0px #FFF;*/
  border-top: 4px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 15px 15px -10px rgba(0,0,0,0.1);
}

#page_footer .nom_cabinet {
  text-transform: uppercase;
  color: var(--bleu);
  /*font-weight: 400;*/
  font-size: 16px;
  opacity: 0.9;
}


#page_footer a {
  color: var(--rouge);;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

#page_footer a:hover {
  color: var(--bleu);
}

#page_footer strong {
  opacity: 0.8;
}

.mail_cabinet {
  font-size: 18px;
}

.cryptedmail:after {
  /*content: attr(data-name) « @ » attr(data-domain) « . » attr(data-tld);*/
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}