h1 { 
	color: #111; 
	font-family: 'Lato', sans-serif;/*'Open Sans Condensed', sans-serif;*/ 
	font-size: 40px; 
	font-weight: 300; 
	line-height: 48px; 
	margin: 0 0 0; 
	padding: 20px 30px; 
	text-align: center; 
	text-transform: uppercase; 
}
.cl1 {
	width: 95%;
	border: 5px solid;
	padding: 10px;
	margin: 10px;
	border-color:blue;
}
.div {
	width: 45%;
	border: 5px solid;
	padding: 10px;
	margin: 10px;
	float:left;
}
.divleft {
	border-color:blue;
}
.divright {
	border-color:green;
}
.box {
	background: linear-gradient(to right, gold, darkorange);
	color: blue;
	--width: 120px;
	--height: calc(var(--width) / 3);
	width: var(--width);
	height: var(--height);
	text-align: center;
	line-height: var(--height);
	font-size: calc(var(--height) / 2.5);
	font-family: sans-serif;
	letter-spacing: 0.2em;
	border: 1px solid darkgoldenrod;
	border-radius: 2em;
	transform: perspective(500px) rotateY(-15deg);
	text-shadow: 6px 3px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 0 0 5px rgba(0, 0, 0, 0.2);
	transition: 0.5s;
	position: relative;
	overflow: hidden;
	float:left;
}

.box:hover {
	transform: perspective(500px) rotateY(15deg);
	text-shadow: -6px 3px 2px rgba(0, 0, 0, 0.2);
	box-shadow: -2px 0 0 5px rgba(0, 0, 0, 0.2);
}

.box::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, transparent, white, transparent);
	left: -100%;
	transition: 0.5s;
}

.box:hover::before {
	left: 100%;
}
.box1{
	float:left;
	margin-left:10px;
}
.box2{
	float:right;
	margin-right:10px;
}
table.customTable {
  width: 100%;
  background-color: #C9E6FF;
  border-collapse: collapse;
  border-width: 1px;
  border-color: #7EA8F8;
  border-style: solid;
  color: #000000;
}

table.customTable td {
  font-family: 'Lato', sans-serif;/*'Open Sans Condensed', sans-serif;*/ 
  font-size: 16px; 
  border-width: 1px;
  border-color: blue; /*#7EA8F8;*/
  border-style: solid;
  padding: 8px;
  text-align: center;
}

table.customTable th {
	background-color: #7EA8F8;
	font-size : 16px;
	font-family: "Lucida Console", "Courier New", monospace;
	border-color: blue;
	border-style: solid;
	border-width: 1px;
	padding: 8px;
}
table.customTable thead {
	background-color: #7EA8F8;
}
.cl_botton1
	{
	float: center;
	margin:10px;
	}
.button {
	  background-color: #f4511e;
	  border: none;
	  color: white;
	  padding: 16px 32px;
	  text-align: center;
	  font-size: 14px;
	  opacity: 0.6;
	  transition: 0.3s;
	  display: inline-block;
	  text-decoration: none;
	  cursor: pointer;
	}

.button:hover {opacity: 1}

/*body {
	background: #262a2b;
}*/
.tilesWrap {
	padding: 0;
	margin: 50px auto;
	list-style: none;
	text-align: center;
}
.tilesWrap li {
	display: inline-block;
	width: 20%;
	min-width: 200px;
	max-width: 230px;
	padding: 80px 20px 40px;
	position: relative;
	vertical-align: top;
	margin: 10px;
	font-family: 'helvetica', san-serif;
	min-height: 25vh;
	background: #262a2b;
	border: 1px solid #252727;
	text-align: left;
}
.tilesWrap li h2 {
	font-size: 114px;
	margin: 0;
	position: absolute;
	opacity: 0.2;
	top: 50px;
	right: 10px;
	transition: all 0.3s ease-in-out;
}
.tilesWrap li h3 {
	font-size: 20px;
	color: #b7b7b7;
	margin-bottom: 5px;
}
.tilesWrap li p {
	font-size: 16px;
	line-height: 18px;
	color: #b7b7b7;
	margin-top: 5px;
}
.tilesWrap li button {
	background: transparent;
	border: 1px solid #b7b7b7;
	padding: 10px 20px;
	color: #b7b7b7;
	border-radius: 3px;
	position: relative;
	transition: all 0.3s ease-in-out;
	transform: translateY(-40px);
	opacity: 0;
	cursor: pointer;
	overflow: hidden;
}
.tilesWrap li button:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 120%;
	background: #b7b7b7;
	top: 0;
	opacity: 0;
	left: -140px;
	border-radius: 0 20px 20px 0;
	z-index: -1;
	transition: all 0.3s ease-in-out;
	
}
.tilesWrap li:hover button {
	transform: translateY(5px);
	opacity: 1;
}
.tilesWrap li button:hover {
	color: #262a2b;
}
.tilesWrap li button:hover:before {
	left: 0;
	opacity: 1;
}
.tilesWrap li:hover h2 {
	top: 0px;
	opacity: 0.6;
}

.tilesWrap li:before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	z-index: -1;
	background: #fff;
	transform: skew(2deg, 2deg);
}
.tilesWrap li:after {
	content: '';
	position: absolute;
	width: 40%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(255, 255, 255, 0.02);
}
.tilesWrap li:nth-child(1):before {
	background: #C9FFBF;
background: -webkit-linear-gradient(to right, #FFAFBD, #C9FFBF);
background: linear-gradient(to right, #FFAFBD, #C9FFBF);
}
.tilesWrap li:nth-child(2):before {
	background: #f2709c;
background: -webkit-linear-gradient(to right, #ff9472, #f2709c);
background: linear-gradient(to right, #ff9472, #f2709c);
}
.tilesWrap li:nth-child(3):before {
	background: #c21500;
background: -webkit-linear-gradient(to right, #ffc500, #c21500);
background: linear-gradient(to right, #ffc500, #c21500);
}
.tilesWrap li:nth-child(4):before {
	background: #FC354C;
background: -webkit-linear-gradient(to right, #0ABFBC, #FC354C);
background: linear-gradient(to right, #0ABFBC, #FC354C);
}
p{
	text-align: justify;
	font-size: 12px;
	font-family: 'Lato', sans-serif;/*'Open Sans Condensed', sans-serif;*/ 
}
/* USER PROFILE PAGE */
.card {
	margin-top: 20px;
	/* padding: 30px; */
	background-color: rgba(214, 224, 226, 0.2);
	-webkit-border-top-left-radius:5px;
	-moz-border-top-left-radius:5px;
	border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-top-right-radius:5px;
	border-top-right-radius:5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.card.hovercard {
	position:relative;
	display:block;
	float:left;
	border-style: solid;
	border-color: grey;
	width:100%;
	height:130px;
	background:url(banniere.png);
	background-size:100% 100%; /* ADAPTATION de l'image au conteneur */
}
.btn-pref .btn {
	-webkit-border-radius:0 !important;
}
h4 {
	font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: 120%;
	font-weight: bolder;
}
.titre{
	font-family: 'Waiting for the Sunrise', cursive; 
	font-size:50px; 
	letter-spacing: 6px; 
	font-weight: bold;
	width: 100%;
	height: 130px;
	text-align: center;
	line-height: 130px;
	background-color: transparent;
	color:teal;
}