@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration:none; }
a:active { text-decoration: none; }

a[href^=tel] {
    color: inherit;
    text-decoration: none;
}

input:not(input[type="checkbox"]) {
    -webkit-appearance: none !important;
    -webkit-border-radius:0 !important; 
    border-radius:0 !important;
}

/* Placeholder */
::-webkit-input-placeholder { /* WebKit browsers */
    color:#FFF;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:#FFF;
    opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:#FFF;
    opacity:  1;
}

p {
	color: #000;
	font-size: 18px;
	line-height: 22px;
	padding-top: 20px;
}

.jaune {
	color: #dbac36;
}

body > .container-fluid {
	position: relative;
}

.header {
	background-image: url(../images/bg-header.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 630px;
}

.menu {
	position: absolute;
	bottom: 0;
	left: 0;
	top: 0;
	z-index: 2;
}

.button_menu {
	background-color: inherit;
	border: 0;
    cursor: pointer;
	display: block;
	height: 55px;
	left: 100%;
	margin-left: 35px;
	outline: 0;
	padding: 0;
	top: 20px;
	position: absolute;
	width: 55px;
	
	-webkit-transition: -webkit-transform .5s cubic-bezier(.215,.61,.355,1);
    transition: -webkit-transform .5s cubic-bezier(.215,.61,.355,1);
	transition: transform .5s cubic-bezier(.215,.61,.355,1);
}

.button_menu .bar1, 
.button_menu .bar2, 
.button_menu .bar3 {
    width: 55px;
    height: 10px;
    background-color: #dbac36;
	margin-bottom: 6px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 6px;
    transition: 0.4s;
}

.button_menu.change .bar1, 
.button_menu.change .bar2, 
.button_menu.change .bar3 {
    background-color: #FFF;
	width: 35px;
	height: 5px;
}

.button_menu.change {
	outline: 0;
	transform: translateX(-95px);
}

.button_menu.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
.button_menu.change .bar2 {opacity: 0;}
.button_menu.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

.container_menu {
	margin-left: -365px;
	position: absolute;
    bottom: 0;
	top: 0;
	white-space: nowrap;
	-webkit-transition: -webkit-box-shadow .5s cubic-bezier(.215,.61,.355,1),-webkit-transform .5s cubic-bezier(.215,.61,.355,1);
    transition: -webkit-box-shadow .5s cubic-bezier(.215,.61,.355,1),-webkit-transform .5s cubic-bezier(.215,.61,.355,1);
    transition: box-shadow .5s cubic-bezier(.215,.61,.355,1),transform .5s cubic-bezier(.215,.61,.355,1);
    transition: box-shadow .5s cubic-bezier(.215,.61,.355,1),transform .5s cubic-bezier(.215,.61,.355,1),-webkit-box-shadow .5s cubic-bezier(.215,.61,.355,1),-webkit-transform .5s cubic-bezier(.215,.61,.355,1);
	
}

.container_menu.menuopened {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.container_menu .content {
	background-color: #dbac36;
	height: 100%;
	padding: 90px 20px 0px 20px;
	width: 365px;
}

.container_menu ul {
	list-style: none;
}

.container_menu li {
	border-top: 1px solid #FFF;
	background-position: left center;
	background-repeat: no-repeat;
}

.container_menu li.home {
	background-image: url(../images/icone-maison.png);
}
.container_menu li.service {
	background-image: url(../images/icone-services.png);
}
.container_menu li.contact {
	background-image: url(../images/icone-carte.png);
}
.container_menu li.rdv {
	background-image: url(../images/icone-rendez-vous.png);
}
.container_menu li.lang {
	background-image: url(../images/icone-langue.png);
}
.container_menu li.facebook {
	padding: 30px 0;
}

.container_menu li a {
	display: block;
	color: #FFF;
	font-size: 20px;
	font-weight: 300;
	padding: 20px 0 20px 50px;
}

.container_menu li.facebook a {
	display: inline;
	padding: 0;
}

.btn_rdv {
	background: #000;
	border: 0;
	color: #FFF;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	margin-top: 25px;
	padding: 1.25rem;
}

.footer {
	background-image: url(../images/bg-footer.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 150px;
	padding-top: 150px;
}

.footer #maps {
	height: 500px;
}

#maps iframe {
    height: 100%;
    width: 100%;
}

.adresse {
	background-color: #FFF;
}

h6,
#contact h1 {
	color: #000;
	font-size: 35px;
	font-weight: 200;
	line-height: 30px;
	text-transform: uppercase;
}
h6 span,
#contact h1 span {
	color: #dbac36;
	font-family: 'Lobster', cursive;
	font-size: 24px;
	text-transform: none;
}

.adresse ul {
	list-style: none;
	padding-top: 20px;
}

.adresse li {
	background-position: left center;
	background-repeat: no-repeat;
	margin-top: 20px;
	padding-left: 35px;
}
.adresse li.directions {
	background-image: url(../images/icone-localisation.jpg);
}
.adresse li.telephone {
	background-image: url(../images/icone-telephone.jpg);
}
.adresse li.facebook {
	background-image: url(../images/icone-facebook-noir.jpg);
}

.adresse a {
	color: #61a891;
	font-size: 18px;
	font-weight: 700;
}

.adresse button {
	background: #000;
	border: 0;
	color: #FFF;
	font-size: 18px;
	text-transform: uppercase;
	width: 100%;
}
.adresse button:focus {
	outline: 0;
}

.logos > div {
	padding: 1.5rem 10px 1.5rem 10px;
	
}

.copyright {
	background-color: #dbac36;
	color: #FFF;
	font-size: 14px;
	font-weight: 300;
}

.copyright a {
	color: #FFF;
}

.no-fixed-width_50 {
	flex: 0 0 960px;
}

h1 {
	color: #000;
	font-size: 35px;
	font-weight: 200;
	line-height: 30px;
	padding-top: 30px;
	text-transform: uppercase;
}

h1 span {
	color: #dbac36;
	font-family: 'Lobster', cursive;
	font-size: 24px;
	text-transform: none;
}
.services h1 span {
	color: #000;
}

hr {
	background-color: #dbac36;
	border: 0;
	margin-bottom: 0;
	margin-top: 20px;
	height: 2px;
	width: 88px;
}

.services hr {
	margin-top: 0;
}

.boites_img .img-fluid {
	width: 100%;
}

.home p span {
	font-size: 24px;
	font-weight: 300;
}

.home .soins {
	background-color: #dbac36;
}

.home .soins h2 {
	color: #000;
	font-size: 35px;
	line-height: 35px;
	text-transform: uppercase;
}

.home .soins h2 span {
	font-family: 'Lobster', cursive;
	font-size: 24px;
	text-transform: none;
}

.home .soins a {
	display: block;
	color: #000;
	font-size: 18px;
	font-weight: 300;
	line-height: 20px;
}
.home .soins a span {
	display: block;
	padding: 0 10px;
}

.home .box-soins {
	margin-bottom: 30px;
	/*
	margin-left: 15px;
	margin-right: 15px;
	padding-left: 0 !important;
	padding-right: 0 !important;
	*/
}

.home .box-soins > div {
	background-color: #FFF;
	height: 100%;
}

.home .box-soins .img_soins {
	position: relative;
	margin-bottom: 0.5rem;
}

a .img_soins > div {
	display: none;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background-color: rgba(0,0,0,0.5);
	background-image: url(../images/plus.png);
	background-position: center;
	background-repeat: no-repeat;
}

.home .soins a:hover .img_soins > div {
	display: block;
}

.home .box-soins .img-fluid {
	width: 100%;
}

h2 {
	color: #000;
	font-size: 38px;
	font-weight: 200;
	line-height: 34px;
}

h2 span {
	font-size: 26px;
}

.services ul {
	margin-left: 22px;
	padding-top: 15px;
}

.services li {
	color: #000;
	font-size: 18px;
	font-weight: 300;
	line-height: 22px;
	padding-top: 5px;
}

.services p strong {
	font-weight: 700;
}

.services li span {
	font-size: 14px;
}

.services p.promo {
	color: #dbac36;
}

.soins_rdv {
	background-color: #dbac36;
}

.soins_rdv h3 {
	color: #000;
	font-family: 'Lobster', cursive;
	font-size: 40px;
	line-height: 40px;
}

.soins_rdv h3 span {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 300;
	text-transform: uppercase;
}

body.contact {
	background-image: url(../images/bg-contact.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#contact {
	height: 100%;
		padding-bottom: 150px;
		padding-top: 150px;
}

#contact h2 {
	color: #dbac36;
	font-family: 'Lobster', cursive;
	font-size: 32px;
	line-height: 32px;
}

#contact h2 span {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 300;
	text-transform: uppercase;
}

.horaire ul {
	list-style: none
}

.horaire li {
	border-right: 1px solid #dbac36;
	color: #000;
	font-size: 17px;
	font-weight: 300;
	padding: 15px 0;
	text-align: center;
	flex-basis: 120px;
}

.horaire li span {
	font-size: 22px;
}

.horaire li:last-child {
	border: 0;
}


@media (min-width: 1200px) and (max-width: 1660px) {
	.home .box-soins {
		flex: 0 0 195px;
	}
}

@media (min-width: 1660px) {
	.home .box-soins {
		flex: 0 0 273px;
	}
}

@media (min-width: 992px) {
	.col-w500 {
		flex: 0 0 620px;
	}
	
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	.header {
		background-image: url(../images/bg-header-lg.jpg);
		height: 394px;
	}

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	.header {
		background-image: url(../images/bg-header-lg.jpg);
		height: 326px;
	}
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	.footer {
		padding-bottom: 50px;
		padding-top: 50px;
	}
	.copyright,
	.copyright .text-right {
		text-align: center !important;
	}
	
	.services {
		text-align: center;
	}
	.services ul {
		display: inline-block;
		text-align: left;
	}
	
	#contact #maps {
		height: 500px;
	}
	
	.horaire li {
		font-size: 14px;
	}
	.horaire li span {
		font-size: 18px;
	}
	
	.button_menu {
		margin-left: 15px;
		top: 10px;
	}
	.button_menu.change {
		transform: translateX(-75px);
	}
	
	.btn_rdv {
		margin-top: 15px;
	}
	
	body.contact {
		background-image: inherit;
	}
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.container_menu .content {
		max-width: 100%;
	}
	.header {
		background-image: url(../images/bg-header-lg.jpg);
		height: 189px;
	}
	.header img {
		height: 145px;
		width: auto;
	}
	.footer {
		padding-bottom: 0;
		padding-top: 0;
	}
	
	.horaire ul {
		flex-wrap: wrap;
	}
	.horaire li {
		flex-basis: 50%;
		margin: 5px 0;
	}
	.horaire li:nth-child(even) {
		border: 0;
	}
		
}
