body{
	font-family: 'Roboto', sans-serif;
}

.btn {
	border-radius: 20px;
	font-size: 1.1em;
	font-weight: bold;
}

.btn-primary {
	background: black;
	border-color: black;
}

.header {
	display: block;
	margin-top : 50px;
	margin-bottom:80px;
	margin-left: 100px;
}

.header ul {
	margin : 0;
	padding: 0;
	height: 40px;
}

.header ul li {
	list-style-type: none;
	float: left;
	margin-right: 30px;
	line-height: 40px;
}

.header ul li a {
	font-size: 1.2em;
}

.header ul li a .line {
	display: block;
	height: 2px;
	width: 100%;
	background: black;
}

.header-small {
	display: none;
	height: 100px;
}

.header-small .logo {
	margin-top: 20px;
	margin-left: 30px;
}

.header-small .burger {
	display: block;
	width: 70px;
	height: 50px;
	float: right;
	margin-top: 40px;
	margin-right: 30px;
	font-weight: bold;
}

.menu-small {
	display: block;
	height: 0px;
	padding: 0px;
	overflow: hidden;
	transition: height 0.25s ease-in;
}
.menu-small.open {
	height: 200px;
	transition: height 0.25s ease-in;
}

.burger:hover {
	color: black;
}

.menu-small li {
	list-style-type: none;
	padding: 10px 0px;
}

.subheader {
	margin-bottom: 80px;
}

.subtitle {
	color: white;
	background-color: black;
	padding: 10px 20px;
	border-radius: 20px;
	font-weight: bold;
}

.bordered {
	padding: 20px 10px;
	width: 180px;
	border : 1px black solid;
	border-radius: 15px;
	margin: 0 auto;
	line-height: 2em;
}
/*
.card .front {
	width: 100%;
}
.card:hover .front {
	display: none;
}
.card .back { 
	display: none;	
	width: 100%;
	padding: 10px;
	margin: 10px;
	border : 1px black solid;
	border-radius: 20px;
	line-height: 1.4em;
	font-size: 0.9em;
}
.card:hover .back {
	display: block;
}
*/

body {
	padding-bottom: 30px;
}

/* HOME */
body.home {
	text-align: center;
	background: url('../img/bg-home.jpg') no-repeat top center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.home-logo h1 {
	font-size: 1.3em;
	font-weight: bold;
}

.home-logo {
	width: 250px;
	text-align: center;
	margin: 100px auto 50px auto;
}

.home-logo img {
	height: 50px;
}

.home-intro {
	width: 650px;
	margin: 0 auto;
	margin-bottom: 60px;
	text-align: center;
	font-weight: 600;
	line-height: 2em;
}


/* EQUIPE */
.team {
	width: 200px;
	margin: 0 auto;
	cursor: pointer;
	position: relative;
	height: 350px;
}
.team:hover {
	
}

.team .overlay {
	position: absolute;
	width: 200px;
	height: 200px;
	top:0;
	left:0;
	z-index: 1;
	background-color: rgba(0,0,0, 0.5);
}

.team .picture {
	width: 200px;
	height: 200px;
	color : #fff;
	background-size: cover;
}

.team:hover .overlay,
.team:hover .name,
.team:hover .fonction {
	display: none;
}

.team .name {
	position: relative;
	z-index: 3;
	padding-top: 45px;
	font-weight: bold;
	font-size: 20px;
}

.team .fonction {
	position: relative;
	z-index: 3;
}

.team .desc {
	display: none;
	font-size: 12px;
	line-height: 15px;
	padding-top: 15px;
	height: 185px;
}
.team:hover .desc {
	display: block;
}

.team.alain .picture {
	background-image: url("../img/team/alain-team.jpg");
}
.team.dann .picture {
	background-image: url("../img/team/dann-team.jpg");
}
.team.morgan .picture {
	background-image: url("../img/team/morgan-team.jpg");
}
.team.vincent .picture {
	background-image: url("../img/team/vincent-team.jpg");
}
.team.romain .picture {
	background-image: url("../img/team/romain-team.jpg");
}
.team.alexandre .picture {
	background-image: url("../img/team/Alexandre-team.jpg");
}
.team.regis .picture {
	background-image: url("../img/team/regis-team.jpg");
}
.team.yohan .picture {
	background-image: url("../img/team/yohan-team.jpg");
}
.team.unknown .picture {
	background-image: url("../img/team/unknown.jpeg");
}



@media screen and (max-width: 768px) {

	.product img.big {
		width: 50%;
	}

	.header {
		display: none;
	}
	.header-small {
		display: block;
	}

}

@media screen and (max-width: 1024px) {


	.home-intro {
		width: 80%;
	}


	.header {
		margin-top : 20px;
		margin-bottom:80px;
		margin-left: 20px;
	}
}