*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.container-center{
	margin-top: 1%;
}
.menu{
	display: none;
}
/* Navbar */

.navbar{
	background-color:transparent;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	z-index: 2;
	height: 15%;
	flex-wrap: nowrap;
	position: fixed;
}
.mentionsLegales .navbar{
	position: relative;
	background-color: #000000;
}
.navigation .lien-nav{
	list-style: none;
}	
.lien-nav li , a {
	display: inline-block;
}

.navigation a {
	color: white;
	padding: 1em;
	display: block;
	text-decoration: none;
	font-size: 110%;
}
.lien-nav li a:hover{
	transition: 1s;
	border-radius: 50px;
	background-color:#059113;
}
.logo{
	height: 100px;
	cursor: pointer;
	padding: 0px;
}
.facebook{
	height: 30px;
}
.facebook:hover{
	background-color: #059113;
	transition: 1s;
	border-radius: 20px;
}
.container-logo{
	display: flex;
	align-items: center;
	flex-direction: row;
	color: white;
}
.navbar .container-logo {
	font-size: 90%;
}
.lien-nav{
	display: flex;
	align-items: center;
	flex-direction: row;
}
.navbar .scroll{
	background-color: #080001;
}
.titre{
	text-shadow: 2px 2px 2px blue;
}
/* Banniere */

.banniere{
	background: url("https://images.pexels.com/photos/1022158/pexels-photo-1022158.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940") no-repeat center center; 
	height:100vh;
	width: 100%;
	background-size: cover;
}
.box-titre{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}
.titre-banniere{
	color: white;
	text-shadow: 2px 2px 2px blue;
	font-size: 350%;	
}
/* Bouton flottant */
.floating-btn{
	position: fixed;
	bottom: 50px;
	right: 50px;
	width: 75px;
	height: 75px;
	border: none;
	cursor: pointer;
	border-radius: 50%;
	background: #059113;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.7;
	z-index: 1000;
}
.floating-btn img{
	width: 50px;
	height: 50px;
}
.floating-btn .text-btn {
	position: absolute;
	background: #FF3838;
	color: white;
	padding: 10px;
	font-size: 20px;
	border-radius: 3px;
	text-align: center;
	width: 200px;
	transform: translate(-180px,-30%);
	display: none;
	text-decoration: none;
}
.floating-btn:hover{
	opacity: 1;
}
.floating-btn:hover .text-btn{
	display: block;
}
/* Contenu page d'accueil */
.container-info{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column; 
	align-items: center;
}
.container-info > div{
	background-color: white;
	margin: 10px;
	padding: 20px;
	font-size: 20px;
}
.titre-horaires{
	color: #373636;
	font-family: 'Montserrat', sans-serif;
	text-decoration: underline;
	text-align: center;
	margin-bottom: 1%;
}
/*  horaires */
.card{
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "lato";
	overflow: hidden;
	border-radius: 16px;
	width: 720px;
	height: 700px;
	background: url("https://cdn.pixabay.com/photo/2016/09/12/07/55/thefifthwatches-1663278_960_720.jpg") no-repeat;
	background-size: 720px 700px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.card::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
}
.card .img{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
}

.content{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: white;
	padding: 20px 20px;
	width: 80%;
	height: 80%;
	transform: translateY(100%);
}
.card:hover .content {
	transform: translateY(0%);
	transition: 1s;
	transition-delay: 0.3;
	background-color: rgba(0, 0, 0, 0.92);
}
.content .horaires{
	text-align: center;
	color: black;
}
.content .horaires .time-days-open{
	font-size: 120%;
}
.card .content .numero{
	color: #080001;
	font-size: 200%;
	text-decoration: underline overline ;
}
.content .horaires .days-week-open{
	text-decoration: underline;
}
.content .title-card{
	font-size: 160%;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	color: black;
}
.content h4{
	color: black;
}
/* Adresse */
.container-adresse{
	margin: 2% 10% 2% 10%;
}
.container-adresse h3{
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 2%;
	font-size: 150%;
	text-decoration: underline;
	color: #373636;
	font-family: 'Montserrat', sans-serif;
}
.container-adresse .adresse{
	display: flex;
	flex-direction: column;
}
.first-container{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 5%;
}
.clinique{
	width: 50%;
}
.right-part{
	width: 50%;
}
.adresse-right{
	text-align: center;
	margin: auto;
	background-color: #373636;
	padding: 20% 0 20% 0;
	border-radius: 50%;
	margin-left: 10%;
	margin-right: 10%;
}
.adresse-right p{
	font-size: 18px;
	color: #FFFFFF;
}
.container-adresse .img-clinique img{
	width: 100%;
	border-radius: 16px;
}

.second-container{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.second-container .text-parking{
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.text-parking p{
	margin: auto;
	margin-right: 10%;
	margin-left: 10%;
	background-color: #373636;
	padding: 20% ;
	border-radius: 50%;
	color: #FFFFFF;
	font-size: 18px;
}
.container-adresse .parking img{
	width: 100%;
	border-radius: 16px;
}
.img-parking-clinique{
	width: 50%;
}

/* CONTACT */
.container-main-num{
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-bottom: 1%;
}
.container-main-num .text-numero{
	font-size: 150%;
	font-weight: bold;
}
.container-main-num .emergency{
	padding : 0px 70px 1px 70px ; 
	font-size: 120%;
}
.emergency img{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.fb-contact img{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.container-main-num .numero{
	margin-left: 11%;
}
.container-main-num .numero img{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.container-main-num .container-emergency {
	color: red;
	text-align: center;
	font-weight: bold;
}
.container-main-num .container-emergency .num-urgence{
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
}
.container-numero{
	margin: 5% 0 5% 0;
}
.container-numero h4{
	font-size: 150%;
	text-align: center;
	text-decoration: underline;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	color: #373636;
	padding: 15px;
}
.container-facebook .text-facebook{
	font-size: 110%;
}
/* MAP */
.map{
	width: 100%;
	margin-top: 1%;
}
.title-map h5{
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 150%;
	text-transform: uppercase ;
	text-decoration: underline;
	color: #373636;
	margin-top: 1%;
	margin-bottom: 1%;
}

/*Footer*/
.info-footer{
	background-color: black;
	color: white;
	padding: 20px 0 20px 0;
	margin-top: 25px;
}
.info-footer a{
	color: white;
	margin-left: 4px;
}
.low-footer{
	display: flex;
	align-items: center;
	justify-content: center;
}
.connexion-footer{
	float: right;
	padding: 15px 32px;
	background-color: orange;
	border-radius: 50%;
}
.footer-pages{
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: black;
	color: white;
	font-size: 150%;
}
.footer-absolute{
	position: absolute;
	bottom: 0;
	background-color: black;
	width: 100%;
	color: white;
	padding-top: 20px;
	padding-bottom: 20px;
}
.footer-absolute p{
	margin-left: 1%;
}
.navigation-footer .lien-nav{
	list-style: none;
}	
.navigation-footer a {
	color: white;
	padding: 1em;
	display: block;
	text-decoration: none;
	font-size: 110%;
}
.navigation-footer .lien-nav{
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: center;
}
.low-footer-absolute{
	display: flex;
	align-items: center;
	justify-content: center;
}
.low-footer-legale .footer-legale{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.footer-legale .made:hover{
	text-decoration: underline;
}
.footer-legale li{
	list-style: none;
	padding: 10px 0 10px 0;
}
.footer-legale li:nth-child(2){
	margin-left: 1%;
}
.footer-legale a{
	text-decoration: none;
	color: white;
}
/* mise en forme bouton connexion */
.connexion{
	position: absolute;
	right: 0;
	padding: 15px 32px;
	background-color: orange;
	border-radius: 30%;
	bottom: 0;
}
.connexion a{
	color: white;
}
.container-lien-admin {
	display: none;
}
.container-lien-admin button{
	position: absolute;
	right: 10%;
	background-color: orangered;
	border-radius: 40%;
}
.container-lien-admin a{
	text-decoration: none;
	color: white;
}
/* navbar page Clinique , .... */
.navbar-include{
	background-color: black;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	z-index: 2;
	height: 10%;
	flex-wrap: nowrap;
}
/* Page Clinique */
.Container-banniere-pages .titre-banniere-pages {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase ;
	text-decoration: underline;
	color: #373636;
	margin-top: 1%;
	margin-bottom: 1%;
  }
.img-page-Clinique img{
	width: 300px;
	height: 200px;
}
.map-acces-clinique h4{
	font-family: "Montserrat",sans-serif;
	color: #373636;
	text-align: center;
	text-transform: uppercase;
	text-decoration: underline;
	font-weight: bold;
	font-size: 150%;
}
.main-container-pages-clinique h5{
	font-family: "Montserrat",sans-serif;
	color: #373636;
	text-align: center;
	text-transform: uppercase;
	text-decoration: underline;
	font-weight: bold;
	font-size: 120%;
	margin-bottom: 0.5%;
}
.main-container-pages-clinique h6{
	color: #373636;
	text-align: center;
	font-weight: bold;
	font-size: 120%;
	margin-bottom: 0.5%;
}
.container-map-clinique iframe{
	border-radius: 50px;
	margin-bottom: 1%;
	width: 100%;
	margin-top: 1%;
} 
.main-container-pages-clinique{
	text-align: center;
	position: relative;
}
.container-page-clinique{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.container-page-clinique .content-page-clinique{
	color: #f2f2f2;
	padding: 8px 12px;
	position: absolute;
	bottom: 10px;
	width: 50%;
	font-size: 120%;
	background: rgba(0, 0, 0, 0.5);
}
.container-page-clinique img{
	vertical-align: middle;
	width: 60%;
	padding: 10px;
}
.container-image-page-clinique img{
	vertical-align: middle;
	width: 100px;
	height: 200px;
}
.infos-supp-clinique{
	display: flex;
	justify-content: center;
	align-items: center;
}
.info-supp-parking{
	margin-top: 1%;
	margin-bottom: 1%;
}
.img-payment:nth-child(1){
	margin-right: 1%;
}
.img-payment:nth-child(2){
	margin-right: 1%;
}
.text-supp-parking p{
	font-size: 110%;
	margin-top: 1%;
	font-weight: bold;
}
  /* Page Equipe  */
  /* Carte équipe */
.cards-team{
	  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	  transition: 0.3s;
	  padding: 10px;
  }
  .cards-team img{
	width: 300px;
	height: 400px;

  }
  .cards-team:nth-child(1){
	  margin-right: 10px;
  }
  .cards-team:nth-child(2){
	margin-right: 10px;
}
.cards-team:nth-child(3){
	margin-right: 10px;
}
.cards-team:nth-child(4){
	margin-right: 10px;
}
.cards-team:hover{
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.role-team{
	padding: 2px 16px;
}
.container-team{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1%;
	width: 50%;
	flex-wrap: wrap;
	margin: 0 auto;
}
/* Page Service */
.left-emergency{
	width: 25%;
	background-color: red;
	border-radius: 10px;
	margin: 0 auto;
    width: 50%;
	margin-top: 1%;

}
.left-emergency .left-text-emergency{
	color: white;
	text-align: center;
}
.left-emergency .left-text-emergency h3{
	text-decoration: underline;
	font-family: "Montserrat" , sans-serif;
	font-size: 150%;
}
.left-emergency .left-text-emergency .left-phone{
	font-size: 150%;
	font-weight: bold;
}
.left-emergency .left-text-emergency h4{
	text-decoration: underline;
	font-family: "Montserrat" , sans-serif;
	margin-bottom: 1%;
}
.left-emergency .left-text-emergency .left-days{
	text-decoration: underline;
}
.left-emergency .left-text-emergency .left-days-text {
	text-decoration: underline;
}
.left-emergency .left-text-emergency .left-phone-emergency{
	font-size: 150%;
	font-weight: bold;
}
.left-text-emergency .transfert-phone{
	font-size: 110%;
}
.Container-banniere-pages .container-cards-services{
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Montserrat', sans-serif;
	flex-wrap:wrap;
}
.container-cards-services img{
	width: 100%;
	
}
.containers-cards{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 50px;	
}
.containers-cards .cards-services{
	position: relative;
	box-shadow: 0 20px 50px rgba(0,0,0,0.2);
	margin: 20px;
	
}
.containers-cards .cards-services .face{
	width: 300px;
	height: 200px;
	transition: 0.5s;
}
.containers-cards .cards-services .face.cards-container{
	position: relative;
	justify-content: center;
	align-items: center;
	z-index: 1;
	
}
.containers-cards .cards-services .face.card-text{
	position: relative;
	background-color: #373636;
	display: flex;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0 20px 50px rgba(0,0,0,0.2);
	height: 230px;
}
.cards-services .content-service h3{
	text-align: center;
	font-weight: bold;
	text-decoration: underline;
	color: white;
}
.cards-services .content-service p{
	color: white;
	margin-top: 5%;
	font-size: 95%;
}
.content-service li{
	list-style: none;
	color: white;
}
.content-service li::before{
	content: "- ";
}
.content-service .conseil-emergency .text-emergency{
	font-size: 110%;
}
.cards-services .en-savoir-plus{
	background-color: red;
	margin-top: 2%;
	padding: 255px;
}
.container_button{
	position: absolute;
	bottom: 0;
	display: inline-flex;
	bottom: 5px;
	right: 5px;
	padding: 10px;
	background-color: #059113;
	border-radius: 15px;
}
.content-service .button{
	color: white;
	font-weight: bold;
	font-size: 14px;
}
svg{
	display: none;
	transition: 0.5;
}
.cards-services .container_button:hover svg{
	display: inline-flex;
}
/* Page Album Photo */
/* Album photo */
.main-container-photo{
	padding-top: 20px;
}
.Container-banniere-pages{
	padding-top: 10px;
}
.mySlides{
	display: none;
}
.slideshow-gallery img{
	vertical-align: middle;
}
.Container-banniere-pages h1{
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase ;
	text-decoration: underline;
	color: #373636;
}
/* Slideshow container */
.slideshow-gallery {
	max-width: 50%;
	position: relative;
	margin: auto;
  }
  /* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
	padding: 10px 20px 10px 20px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
	border-radius: 20px 0 0 20px;
    user-select: none;
	background-color: rgba(0, 0, 0, 0.8);
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 0 20px 20px 0;
}

/* On hover, add a black background color with a little bit see-through */
  
  /* Caption text */
  .text {
	color: #f2f2f2;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 80%;
	text-align: center;
	font-size: 150%;
	background-color: black;
	margin-left: 10%;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
  }
  
  .active {
	background-color: #717171;
  }
  
  /* Fading animation */
  .slides {
	-webkit-animation-name: slides;
	-webkit-animation-duration: 2s;
	animation-name: slides;
	animation-duration: 2s;
  }
  
  @-webkit-keyframes slides {
	from {opacity: .4} 
	to {opacity: 1}
  }
  
  @keyframes slides {
	from {opacity: .4} 
	to {opacity: 1}
  }
  
/* Page  Medecine Generale */
.main-container-information-service{
	margin: 0 auto;
    width: 50%;
}
.container-title-information{
	font-family: "Montserrat", sans-serif;
	text-decoration: underline;
}
.container-title-information h2{
	text-align: center;
	margin-bottom: 1%;
}
.content-img-services img{
	width: 50%;
	margin-left: 25%;
}
.container-img-dentisterie .content-img-services{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.container-img-dentisterie .content-img-services img{
	margin-left: 0%;
	width: 100%;
	padding: 5px;
}
.container-img-dentisterie .content-img-services p{
	text-align: center;
	font-weight: bold;
	font-size: 110%;
}
.content-text-services{
	text-align: justify;
	width: 100%;
	text-decoration: none;
	font-family: "Lato" , sans-serif;
	font-size: 95%;
	margin-left: 25%;
}
.content-text-services .list-services{
	text-decoration: none;
	text-align: justify;
	list-style: none;
	font-weight: bold;
}
.content-text-services .list-services li::before{
	content: " - ";
}
.content-text-services .text-title-services{
		font-size: 150%;
		text-decoration: underline;
}

/* Page Partenaires */

.Container-page-partenaire{
	display: flex;
	justify-content: center;
	margin-top: 1%;
	flex-wrap: wrap;
}
.section-partners-page-partenaire{
	margin: 25px;
	width:400px;
	height: 300px;
  }
  
  .section-partners-page-partenaire:hover {
	transition: 1s;
  }
  
  .section-partners-page-partenaire img {
	width: 100%;
	height: 100%;
  }
  
.text-partners-page-partenaire {
	padding: 15px;
	text-align: center;
	color: white;
	background-color: black;
  }
.text-partners-page-partenaire .lien{
	text-transform: uppercase;
	text-decoration: none;
}
.text-partners-page-partenaire a{
	text-decoration: none;
	color: #55F365;
}
.text-partners-page-partenaire a:hover{
	text-decoration: underline;
	color: #02FFE6;
	transition: 1s;
}
/* Animation Page Partenaire Card  */
.rotate-card {
	background-color: transparent;
	width: 300px;
	height: 300px;
	perspective: 1000px;
	box-shadow:5px 5px #888888;
	flex-wrap: nowrap;
  }
  .rotate-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
.rotate-card:hover .rotate-card-inner {
	transform: rotateY(180deg);
}
  
.rotate-card-front, .card-back-partenaire {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
}
  
.rotate-card-front {
	background-color: #bbb;
	color: black;
}
.rotate-card-front img{
	width:300px; 
	height:300px;
}
.card-back-partenaire {
	background-color: #2980b9;
	color: white;
	transform: rotateY(180deg);
	height:100%;
}
.rotate-card img{
	  background-color: white;
}
.rotate-card-page-partenaire{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  margin-top: 3%;
	  margin-bottom: 3%;
	  flex-wrap:nowrap;
}
.rotate-card:nth-child(1){
	  margin-right: 2%;
}
.rotate-card:nth-child(2){
	margin-right: 2%;
}
.rotate-card .card-back-partenaire h1{
	  text-decoration: underline;
	  font-family: "Montserrat", sans-serif;

}
.rotate-card .card-back-partenaire p{
	  font-size: 120%;
	  margin-top: 15%;
}
.card-back-partenaire a:hover{
	  text-decoration: none;
	  color: #55F365;
	  font-weight: bold;
}
.card-partner-adom{
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.card-partner-adom img{
	width: 25%;
	height: 25%;
	margin-left: auto;
	margin-right: auto;
}
.card-partner-adom .banniere-adom{
	width: 30%;
}
.role-adom{
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	flex-direction: row;
	padding: 5px;
}
.title-card-adom{
	margin-top: 1%;
	font-weight: bold;
}
.emergency-adom h4{
	font-size: 150%;
}
.emergency-adom p{
	font-size: 110%;
}
.num-phone-adom{
	padding: 5px;
	font-size: 150%;
}
.actions-adom{
	color: red;
	font-size: 120%;
	font-weight: bold;
}
.lien-adom{
	color: #3D9DFE;
}
.card-back-partenaire-adom {
	color: black;
	transform: rotateY(180deg);
	height: 100%;
	backface-visibility: hidden;
}
.rotate-card-front img{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.lien-adom a:hover{
	text-decoration: none;
	color: #059113 ;
	font-size: 110%;
}
/* Page Contact */
.contact-page-contact{
	display: flex;
	justify-content: center;
	margin-top: 2%;
	margin-bottom: 2%;
}
.container-facebook-page-contact{
	position: relative;
	width: 400px;
	height: 300px;
} 
.container-facebook-page-contact img{
	display: block;
	width: 100%;
	height: 300px;
}
.overlay-contact{
	position: absolute;
	bottom: 0;
	left: 100%;
	right: 0;
	background-color: #008CBA;
	overflow: hidden;
  	width: 0;
  	height: 100%;
  	transition: .5s ease;
}
.container-facebook-page-contact:hover .overlay-contact{
	width: 100%;
  	left: 0;
}
.text-contact{
	color: white;
  	position: absolute;
  	top: 40%;
	transform: translate(-50%, -50%,);
	white-space: nowrap;
	left: 50%;
	font-size: 150%;
}
.text-contact a{
	text-decoration: none;
	color: orange;
	transition: .6s;
}
.text-contact a:hover{
	color: #02FFE6;
	font-size: 150%;
}
.text-contact .lien-contact{
	font-size: 130%;
}
.container-facebook-left{
	margin-left: 2%;
}
.container-facebook-left{
	position: relative;
	width: 400px;
	height: 300px;
}
.container-facebook-left img{
	display: block;
	width: 100%;
	height: 300px;
}
.overlay-contact-left{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 100;
	background-color: #008CBA;
	overflow: hidden;
  	width: 0;
  	height: 100%;
  	transition: .5s ease;
}
.container-facebook-left:hover .overlay-contact-left{
	width: 100%;
  	left: 0;
}
.text-contact-left{
	color: white;
  	position: absolute;
  	top: 40%;
	transform: translate(-50%, -50%,);
	white-space: nowrap;
	left: 35%;
	font-size: 160%;
}
.back-text-contact{
	position: absolute;
	top: 60%;
	left: 15px;
	color: white;
	opacity: 0;
	transition: opacity 0.3s;
}
.front-card-contact{
	position: absolute;
	top: 2%;
    right: 0;
	z-index: 0;
	transition: 1s;
}
.front-card-contact p{
	background:white; 
	color: black;
	transition: background 1s , color 0.5s , font-size 1s ;
	padding: 5px;
}
.container-facebook-page-contact .front-text-contact{
	color: white;
	font-size: 120%;
}
.container-facebook-page-contact:hover .front-card-contact {
	right: 45px;
}
.container-facebook-page-contact:hover .front-card-contact p{
	background: transparent;
	color: white;
	font-size: 150%;
}
.container-facebook-left:hover .front-card-contact {
	right: 10px;
}
.container-facebook-left:hover .front-card-contact p{
	background: transparent;
	color: white;
	font-size: 130%;
}
.container-facebook-left:hover .back-text-contact{
	opacity: 1;
}
.top-contact-container{
	background-color: #8E8B8B;
	border-radius: 10px;
	margin: 0 auto;
    width: 50%;
	margin-bottom: 3%;
}
.top-contact-container .top-contact-clinique{
	color: white;
	text-align: center;
}
.top-contact-clinique h2{
	text-decoration: underline;
	padding: 5px;
}
.top-contact-clinique h3{
	text-decoration: underline;
	font-family: "Montserrat" , sans-serif;
	font-size: 150%;
	font-weight: bold;
	margin-bottom: 1%;
}
.top-contact-container .top-phone{
	font-size: 170%;
	font-weight: bold;
}
.top-contact-container .text-top-week{
	padding: 2px;
}
.top-contact-container .timetable-week{
	padding: 2px;
}

/* Responsive  */
	@media screen and (max-width:1020px) {
		.titre{
			text-align: center;
		}
		.titre h1{
			font-size: 5vw;
			line-height: 40px;
		}
		.titre-banniere-pages{
			padding-bottom: 10px;
		}
		.navbar-include{
			background-color: black;
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 100%;
			height: 15%;
			z-index: 2;
			flex-wrap: nowrap;
			position: fixed;
			top: 0px;
		}
		.Container-banniere-pages{
			margin-top: 150px;
		}
		.floating-btn{
			left: 20px;
			bottom: 25px;
		}
		.floating-btn:hover .text-btn{
			display: none;
		}
		
		/* banniere */
		.titre-banniere{
			font-size: 200%;
			text-align: center;
			line-height: 50px;
		}
		.lien-nav a{
			display: none;
		}
		.lien-nav img{
			display: none;
		}
		.show-nav .lien-nav a {
			display: block;
		}
		.show-nav .lien-nav img{
			display: block;
		}
		.banniere{
			width: 50%;
		}
		.titre{
			font-size: 40%;
		}
		.lien-nav {
			display:flex;
			flex-direction:column;
			width:0;
			height: 100vh;
			position:absolute;
			top:0px;
			right:0px;     
			background:#070000;     
			transform: translateX(110%);
			transition: all .6s ease-in-out;
			z-index: 1500;
		}
		.lien-nav a{
			margin-top: 30px;
		}
		.lien-nav li{
			font-size: 120%;
		}
		.show-nav .lien-nav{
			width:100vw;    
			transform: translateX(0);
			font-size: 110%;
		}
		  
		  .show-nav .lien-nav  {        
			transform: translateX(0);
			width: 100%;    
		  }   
		  .lien-nav > a {
			display:block;
			padding:1rem;
			font-size:1.6rem; 
			transition: all .4s ease-in-out;
		  }
		.menu{
			display: block;
			position: relative;
			padding: 0;
			width: 45px;
			height: 45px;
			border: none;
			cursor: pointer;
			background: transparent;
			margin-right: 20px;
			z-index: 1600;
		}
		.bar{
			display: block;
			width: 45px;
			height: 4px;
			border-radius: 3px;
			background: white;
			transition: all .5s ease-in-out;
		}
		.bar::before , .bar::after {
			content: "";
			width: 45px;
			height: 4px;
			position: absolute;
			left: 0;
			background: white;
			border-radius: 3px;
			transition: all .5s ease-in-out;
		}
		.bar::before{
			transform: translateY(-12px);
		}
		.bar::after{
			transform: translateY(12px);
		}
		.show-nav .bar{
			width: 0;
			background: transparent;
		}
		.show-nav .bar::before{
			transform: rotate(45deg);
		}
		.show-nav .bar::after{
			transform: rotate(-45deg);
		}
		.banniere{
			width: 100%;
			height: 100vh;
			background-size: cover;
		}
		.card{
			width: 100%;
			height: 100%;
			background-size: cover;
		}
		.info-footer{
			font-size: 80%;
		}
		/* Card Horaire */
		.card{
			width: 95%;
		}
		.content .title-card{
			text-align: center;
		}
		/* Accueil Section Clinique */
		.container-adresse .adresse{
			display: flex;
			flex-direction: column;
			margin-left: 0%;
			padding: 25px;
		}
		.container-adresse .img-clinique img{
			width: 100%;
		}
		.container-adresse .parking img{
			width: 100%;
		}
		.adresse-right{
			margin-top: 5%;
			padding: 20% 5px 20% 5px;
		}
		.adresse-right p{
			font-size: 12px;
		}
		.text-parking p{
			font-size: 12px;
			background-size: 100%;
		}
		/* Accueil Partie Contact */
		.container-main-num{
			display: flex;
			flex-direction: column;
			text-align: center;
		}
		.container-main-num .numero{
			margin-left: 0%;
			padding-bottom: 15px;
		}
		.container-main-num .emergency{
			padding: 0px;
			padding-bottom: 15px;
		}
		.container-main-num .fb-contact{
			padding-bottom: 15px;
		}

		/* Page Clinique  */
		.container-page-clinique img{
			width: 100%;
		}
		.main-container-pages-clinique h5,h4{
			font-size: 70%;
		}
		.container-page-clinique .content-page-clinique{
			font-size: 70%;
			width: 90%;
		}
		.img-payment:nth-child(2){
			padding-left: 20px;
			padding-right: 20px;
		}
		.container-map-clinique iframe{
			width: 100%;
			padding: 20px;
		}
		/* Page Equipe  */
		.container-team{
			display: flex;
			flex-direction: column;
		}
		

		/* Page Services */
		.left-emergency{
			width: 95%;
		}
		.container-cards-services{
			display: flex;
			flex-direction: column;
		}
		.cards-services{
			margin-left: auto;
			margin-right: auto;
			margin-top: 50px;
		}
		svg{
			display: inline-flex;
		}
		
		.main-container-information-service{
			margin-top: 400px;
		}
		.container-title-information h2{
			text-align: center;
			margin-bottom: 5%;
			font-size: 200%;
		}
		.content-img-services img{
			width: 100%;
			margin: auto;
		}
		.content-img-services{
			margin-bottom: 5%;
		}
		.container-img-dentisterie .content-img-services img{
			width: 100%;
			padding: 5px;
		}
		.content-text-services{
			text-align: justify;
			width: 100%;
			text-decoration: none;
			font-family: "Lato" , sans-serif;
			font-size: 150%;
			margin-left: 0%;
		}

		.section_analyse_labo .info-footer{
			position: absolute;
			bottom: 0;
			width: 100%;
			height: 10%;
			display: flex;
			justify-content: center;
			align-items: center;
			flex-direction: column;
		}

		/* Page Partenaire */
		.titre-banniere-pages{
			padding-top: 15px;
		}
		.rotate-card-page-partenaire{
			display: flex;
			flex-direction: column;
		}
		.rotate-card{
			margin-top: 15px;
		}
		.page-footer{
			display: none;
		}
		.emergency-adom{
			font-size: 80%;
		}
		.footer-absolute{
			position: absolute;
			margin-top: 5%;
			bottom: 0px;
			height: 10%;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		.body-partner .footer-absolute{
			position: relative;
		}

		/* Page Contact */
		.top-contact-container{
			width: 95%;
		}
		.contact-page-contact{
			display: flex;
			flex-direction: column;
		}
		.container-facebook-page-contact{
			margin-left: auto;
			margin-right: auto;
			width: 300px;
		}
		.container-facebook-left{
			margin-left: auto;
			margin-right: auto;
			width: 300px;
		}
		.container-facebook-page-contact{
			margin-bottom: 25px;
		}
		.container-facebook-left{
			margin-bottom: 25px;
		}
		.front-card-contact{
			top: 0px;
		}
		.text-contact-left{
			left: 25%;
		}
		.low-footer{
			margin-top: 10px;
		}
		/* Page Album Photo */
		.text{
			font-size: 100%;
		}
		.slideshow-gallery {
			max-width: 100%;
			position: relative;
			margin: auto;
		  }
		.dot{
			margin-bottom: 15px;
		}
		.body-album .info-footer{
			position: absolute;
			bottom: 0;
			width: 100%;
			height: 15%;
		}
		.main-container-photo img{
			margin-top: 20px;
		}
		.footer-absolute{
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}
	}
	@media screen and (min-width:1400px){
		.container-cards-services{
			width: 80%;
			margin: auto;
		}
		.cards-services{
			margin: 20px;
		}
		.titre{
			font-size: 80%;
		}
		  .footer_equipe .info-footer{
			  height: 100%;
		  }
		  .rotate-card{
			width: 350px;
			height: 350px;
		}
		.rotate-card-front{
			width: 350px;
			height: 350px;
		}
		.rotate-card-front img{
			width: 350px;
			height: 350px;
		}

	}
	@media screen and (min-width:1020px) and (max-width:1200px){
		.rotate-card{
			width: 300px;
			height: 300px;
		}
		.rotate-card-front{
			width: 300px;
			height: 300px;
		}
		.rotate-card-front img{
			width: 300px;
			height: 300px;
		}

	}

	@media screen and (min-width:1021px) and (max-width:1399px){
		.container-team{
			display: flex;
			flex-direction: column;
		}
	}

	@media screen and (min-width:699px) and (max-width:1019px){
		.rotate-card{
			width: 450px;
			height: 450px;
		}
		.rotate-card-front{
			width: 450px;
			height: 450px;
		}
		.rotate-card-front img{
			width: 450px;
			height: 450px;
		}
	}
	@media screen and (min-width:401px) and (max-width:500px) {

		/* Accueil _ Partie Clinique  */
		.first-container{
			flex-direction: column;
		}
		.clinique{
			width: 100%;
		}
		.right-part{
			width: 100%;
		}
		.second-container{
			flex-direction: column-reverse;
		}
		.img-parking-clinique{
			width: 100%;
		}
		.second-container .text-parking{
			width: 100%;
		}
		.second-container p{
			width: 100%;
		}
		/* Partenaire */
		
		.emergency-adom h4{
			font-size: 50%;
		}
	}
	@media screen and (min-width:200px) and (max-width:400px) {
		/* Banniere */
		.titre h1{
			font-size: 3vw;
			line-height: 10px;
		}
		.container-logo a{
			width: 25%;
		}
		.logo{
			width: 100%;
			height: 100%;
		}
		.first-container{
			flex-direction: column;
		}
		.clinique{
			width: 100%;
		}
		.right-part{
			width: 100%;
		}
		.second-container{
			flex-direction: column-reverse;
		}
		.text-parking p{
			margin-left: 0%;
		}
		.img-parking-clinique{
			width: 100%;
		}
		.second-container .text-parking{
			width: 100%;
			margin-top: 5%;
		}
		.second-container p{
			width: 100%;
		}
		.container-team{
			width: 100%;
		}
		.cards-team:nth-child(1){
			margin-right: 0px;
			margin-bottom: 10px;
		}
		.cards-team:nth-child(2){
			margin-right: 0px;
			margin-bottom: 10px;
		}
		.cards-team:nth-child(3){
			margin-bottom: 10px;
		}
		.info-footer{
			padding-top: 0px;
			padding-bottom: 0px;
		}
		/* Page Clinique */
		.prev,
		.next{
			font-size: 11px;
			padding: 10px;
		}
		/* Animation Page Partenaire Card */
		.rotate-card{
			width: 300px;
			height: 300px;
		}
		.rotate-card-front{
			width: 300px;
			height: 300px;
		}
		.rotate-card-front img{
			width: 300px;
			height: 300px;
		}
	}
	@media screen and (min-width:1550px) {
		.rotate-card-page-partenaire{
			flex-direction: column;
		}
		.rotate-card{
			margin-bottom: 25px;
		}
		/* Page Équipe */
		
	}
