/* Reset et styles de base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	position: relative;
	background-color: #482318;
	font-family: Arial, Helvetica, sans-serif;
}
hr {
    height: 1px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #dedad7;
    border-bottom-color: #f6f5f4;
    background-color: #f6f5f4;
    margin-bottom: 20px;
    margin-top: 20px;
}
#hr {
	display: none;
}
h1 {
	margin-bottom: 10px;
    font-size: 24px;
    font-weight: normal;
    line-height: 24px;
    color: #633f2e;
    text-shadow: 0px 1px #f5f4f3;
}
h2 {
	margin-bottom: 10px;
    font-size: 18px;
    font-weight: normal;
    color: #633f2e;
    text-shadow: 0px 1px #f5f4f3;
}
#logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 130px;
	background-image:url('/tmplt/images/logo.png');
	background-repeat:no-repeat;
	background-position:50% -20px;
	background-size: 250px auto;
	z-index: 10;
}
header {
	background-image: url(/tmplt/images/bg_header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
	height: 98px;
}
header .container {
	display: flex;
	text-align:center;
	padding-top: 30px;
	margin: 0 auto;
	max-width: 960px;
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-style: normal;
	color: white;
	font-size: 24px;
	text-shadow: 0 0 5px rgba (0,0,0,0.5);
}
header .container .coiffeur-barbier, header .container .masculin {
	flex: 1 1 50%;
	text-align:center;
}
nav {
	background-color: #343435;
}
.nav {

	display: flex;
	max-width: 960px;
	margin: 0 auto;
}
.nav-item {
	flex: 0 0 25%;
	text-align: center;
	padding: 16px 0 16px 0;
}
.nav-item a {
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
}
main {
	background-color: #eeecea;
	display: flex;
	padding-top: 30px;
}
.home {
	display: flex;
	max-width: 960px;
	margin: 0 auto;
}
.content {
	flex: 1 1;
    font-size: 14px;
    color: #3e3e3e;
    text-shadow: 0px 1px #f5f4f3;
    line-height: 18px;
}
.visuel {
	flex: 0 0 350px;
	text-align:center;
}
.content .home-infos {
	display: flex;
}
.content .home-infos table tr td {
	font-size: 11px;
	padding: 2px;
}
.content .home-infos .col-horaires, .content .home-infos .col-produits {
	position: relative;
	flex: 0 0 50%;
	font-size: 12px;
	min-height: 190px;
}
.content .home-infos .col-horaires .btnflch, .content .home-infos .col-produits .btnflch {
	position: absolute;
	bottom: 0;
}
.news {
	background-color: #eeecea;
	padding: 20px 0 20px 0;
}
.prefooter {
	background-color: #eeecea;
	padding: 20px 0 20px 0;
}
.blocs {
	display: flex;
	flex-wrap: wrap;
	max-width: 960px;
	margin: 0 auto;
	background-color: #dddbda;
	border-radius: 5px;
	padding: 5px;
}
.bloc {
	flex: 1 1 33%;
	text-align:center;
}
footer {
    background-image: url(/tmplt/images/bg_footer.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #080808;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #53392e;
	color: #fff;
}
.footer {
	display: flex;
	flex-wrap: wrap;
	max-width: 960px;
	margin: 0 auto;
}
.left-col, .right-col {
	flex:1 1 50%;
}

@media (max-width: 768px) {
	#logo {
		height: 90px;
		background-position:50% -10px;
		background-size: 170px auto;
	}
	header {
		height: 70px;
	}
	header .container {
		display: none;
	}
	main {
		padding:40px 20px 20px 20px;
	}
	.content .home-infos {
		display: block;
	}
	.content .home-infos .col-horaires, .content .home-infos .col-produits {
		min-height: auto;
	}
	.content .home-infos .col-horaires .btnflch, .content .home-infos .col-produits .btnflch {
		position: relative;
	}
	#hr {
		display: block;
	}
	.visuel {
		display: none;
	}

}