/*	
	Classe = .
	ID = #		L'id doit être unique par page
*/

/*POLICES*/
/*@font-face{
	font-family: 'theblacklist';
	src: url('../src/theblacklist') format('truetype');
}*/


header{
	color: white;
	text-align: center;
	background-color: #1D1D1D;
	padding-top: 30px;
	padding-bottom: 30px;
}

body{
	font-family: 'Roboto', sans-serif;
	background-color: #F4F7F6;
	margin: 0;
	position: relative;
}

h1 {
	font-family: 'Dancing Script', cursive;
	opacity: 1;
	margin-top: 0;
}

h2 {
	font-size: 1.5em;
	width: 400px;
	margin: auto;
	word-wrap: break-word;
}

h3{
	font-size: 1.3em;
	text-transform: uppercase;
}

h3:before{
	content: "« ";
	color: grey;
}

h3:after{
	content: " »";
	color: grey;
}

section{
	text-align: center;
}

/*p{
	font-family: 'Roboto', sans-serif;
}

span{
	font-family: 'Roboto', sans-serif;
}*/

a{
	text-decoration: none;
	color: black;
}

li {
	list-style-type: none;
	display: inline;
	margin: 10px;
}

li:hover {
	font-weight: bold;
}

ul{
	padding: 0;
	display: inline;
}

nav{
	text-align: center;
	background-color: white;
	box-shadow: 0px 3px 1px -1px rgba(0, 0, 0, 0.5);
	font-size: 1.1em;
	padding: 15px;
}

footer{
	background-color: #1D1D1D;
	color: white;
	padding: 15px;
}


*{
	box-sizing: border-box;
}

/*ID*/

#logo{
	margin-top: 30px;
	width: 50px;
}

#contact{
	border: 1px solid black;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 50px;
}

#projets{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


/*Classes*/
.separator{
	width: 40px;
	height: 1px;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	background-color: #999999;
}

.contener{
	width: 80%;
	margin: auto;
}

.projet{
	width: 400px;
	margin: 30px;
	display: inline-block;
	background-color: white;
	padding-bottom: 10px;
	border: 0px black solid;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.projet:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  transition: 0.3;
}

.projet img{
	min-width: 400px;
	height: 266px ;
}

.projet span{
	text-transform: uppercase;
	display: block;
}

.picture{
/*	width: 400px;
	height: 200px;*/
	max-width:400px;
  max-height:250px;
/*  width: auto;
  height: auto;*/
	overflow: hidden;
	margin-bottom: 10px;
}

.photoProjet{
  display: flex;
  position: absolute;
  margin-left: 30px;
  max-width:200px;
  max-height:200px;
  width: auto;
  height: auto;
}

.QRCode{
	display: flex;
  position: absolute;
  right: 0;
  margin-right: 30px;
  max-width:150px;
  max-height:150px;
  width: auto;
  height: auto;
}

.QRCode span{
	display: block;
	position: relative;
	padding-top: 155px;
	padding-right: 0px;
	font-size: 0.7em;
	text-align: center;
}

.experience1 .hide {
  display: none;
}

.experience2 .hide {
  display: none;
}

/*.QRCode div{
	margin-right: -30px;
}*/

.projet .date-projet{
	font-size: 0.7em;
}





/*Slider*/
/*https://codepen.io/bbodine1/pen/DqdMRy?editors=0110*/
/* .slideTwo */
.slideTwo {
  width: 80px;
  height: 30px;
  background: #333;
  margin: 20px auto;
  position: relative;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}
.slideTwo:after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  height: 2px;
  width: 52px;
  background: #111;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}
.slideTwo label {
  display: block;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  top: 4px;
  z-index: 1;
  left: 4px;
  background: #fcfff4;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
}
.slideTwo label:after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 6px;
  left: 6px;
  background: #333;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px black, 0px 1px 0px rgba(255, 255, 255, 0.9);
}
.slideTwo input[type=checkbox] {
  visibility: hidden;
}
.slideTwo input[type=checkbox]:checked + label {
  left: 54px;
}
.slideTwo input[type=checkbox]:checked + label:after {
  background: #27ae60;
  /*activeColor*/
}

/* end .slideTwo */