/* MOBILE FIRST */

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
}


body{
	font-family: var(--fontFamily);
	font-size: var(--textSize);
	line-height: 1.3;
}

a{
	text-decoration: none;
	color: #000;
}

a:hover{text-decoration: underline;}

h2, h3{
	font-weight: bold;
	font-style: italic;
}

p{ margin-bottom: 1rem;}
img{ width: 100%;}
main{ margin-bottom: 150px; }

/* fade entre les pages */
#fade{
  opacity: 0;
  transition: opacity 1s ease-out;
}

#fade.loaded{
  opacity: 1;
}

.glightbox-clean .gslide-title{
	font-family: var(--fontFamily);
	font-weight: 600;
	line-height: 1.2;
}

.show-for-small-only{
	display: block;
}

.hide-for-small-only{
	display: none;
}

/* ---- H E A D E R -----*/
header{
/*	position: fixed;
	width: 100%;
	top:0;
	left:0;
	right: 0;
	padding: 15px;
	z-index: 1000;
	background: #FFF;*/
}

header.row{
	margin:0;
}

header .mobile__menu_btn {
  display: block;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  height: 24px;
  width: 24px; 
}

header .mobile__menu_btn span {
  display: block;
  background: #000;
  height: 2px;
  width: 26px;
  position: absolute;
  transition: all 0.5s ease;
}

header .mobile__menu_btn span:nth-child(1) { top: 0px; }
header .mobile__menu_btn span:nth-child(2) { top: 8px; }
header .mobile__menu_btn span:nth-child(3) { top: 16px; }
header .mobile__menu_btn .transparent { opacity: 0; }

header .mobile__menu_btn .rotate-top {
  -ms-transform: rotate(45deg);
  transform: rotatez(45deg);
  -webkit-transform-origin: 0%;
  left: 2px; 
}

header .mobile__menu_btn .rotate-bottom {
  -ms-transform: rotate(-45deg);
  transform: rotatez(-45deg);
  -webkit-transform-origin: 15%; 
}


/* HOME */

.projet{
	padding: 15px 30px;
	border-top: 1px solid #000;
}

.projet__content__infos__group{
	margin-bottom: 1em;
}

.projet__section{
	margin-top: 3em;
	margin-bottom: 3em;
}

.projet__content__infos__group p,
.projet__content__infos__group li{
	margin:0;
}

table {
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #000;
}

th, td {
  padding: 10px;
  text-align: left;
}





