/* ===== RESET CSS ===== */
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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, main, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ===== WEBFONT ===== */
@font-face {
  font-family: 'fontello';
  src: url('font/fontello.eot?78948233');
  src: url('font/fontello.eot?78948233#iefix') format('embedded-opentype'),
       url('font/fontello.woff2?78948233') format('woff2'),
       url('font/fontello.woff?78948233') format('woff'),
       url('font/fontello.ttf?78948233') format('truetype'),
       url('font/fontello.svg?78948233#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
   -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
.icon-twitter:before { content: '\e800'; } 
.icon-linkedin:before { content: '\e801'; } 
.icon-instagram:before { content: '\e802'; } 

/* ====== GLOBAL CSS ===== */
html {
	font-size: 62.5%; /* 10px / 16px */
	box-sizing: border-box;
}
* {
	box-sizing: inherit;
}
body {
	font: normal 1.4em/1.5 verdana,sans-serif;
	color: #000000;
	padding-top: 50px;
	background: #ffffff; 
}
.wrapper {
	width: 100%;
	max-width: 1000px;
	text-align: center;
	margin: 0 auto;	
}

img {
	max-width: 100%;
	height: auto;
}

h1 {
	text-align: center;
}

h2 {
	font: bold 2.500em Roboto,Arial,sans-serif;
	text-align: center;
	color: #000000;
}
h3 {
	font: 1.875em Roboto,Arial,sans-serif;
	text-align: center;
	color: #000000;	
}
p {
	margin-bottom: 30px;
	font: 1.250em/1 Roboto,Arial,sans-serif;
	text-align: center;
	color: #000000;
}
.bleu {
	color: #88c6ec;
}
#footer ul {
	margin-top: 20px;
	text-align: center;
}
#footer li {
	display: inline-block;
}
#footer li a {
	display: block;
	color: #000000;
	font: 2em Roboto,Arial,sans-serif;
	padding: 0 5px;
	text-decoration: none;
}
#footer li a:hover {
	color: #88c6ec;
}



/* ===== MAIN HEADER ===== */
#main-header {
	padding-bottom: 30px;
}

/* ===== TOP BAR ===== */

/* ===== MAIN CONTENT ===== */

/* ===== SIDEBAR ===== */

/* ===== MAIN FOOTER ===== */

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width:820px) {
	body {
		padding: 100px 20px 0;
	}
	#main-nav,
	#social {
		float: none;
		text-align: center;
	}
	#main-header {
		padding: 0;
	}
	#main-header h1 {
		font-size: 3rem; /* 30px / 10px */
	}
	#main-header h2,
	h2,
	.h2-like {
		font-size: 2rem; /* 20px / 10px */
	}
	main.left,
	#sidebar {
		float: none;
		width: 100%;
	}
	main {
		margin-bottom: 20px;
	}
	aside {
		text-align: center;
	}
	#travaux a {
		float: none;
	}
}

/* ===== MAX-WIDTH 430px ===== */
@media screen and (max-width: 430px) {
	.no-mobile { display: none; }
	img.left,
	img.right {
		float: none;
		margin: 0 auto 20px auto;
		display: block;
	}
	body { padding-top: 60px; }
	#menu {
		position: absolute;
		width: 70%;
		top: 1rem;
		z-index: 1;
		/* translate closed nav with hardware acceleration */
		transform: translateX(-110%) translateZ(0);
		transition: transform .3s cubic-bezier(.72,.89,.28,1.39);
	}
	#menu li {
		display: block;
		background-color: #333333;
		margin-bottom: 2px;
	}
	#toggle-nav:checked ~ ul {
		transform: translateX(0) translateZ(0);
	}
	#main-nav label {
		cursor: pointer;
		display: block;
		position: absolute;
		right: 1rem;
		top: 1rem;
		padding: 10px;
		background-color: #ffffff;
		color: #333333;
		font-weight: bold;
		text-transform: uppercase;
		border-radius: 6px;	
	}
	#social {
		text-align: left;
	}
	#social span {
		display: none;
	}
	
}













