body {
	width:      100vw;
	overflow-x: hidden;
	}

body.nav-on {
	height:     100vh;
	overflow-y: hidden;
	}

body {
	font-family: 'Roboto', sans-serif;
	font-size:   20px;
	font-weight: 500;
	}

.bleu {
	color: #1e5faa
	}


.fond-bleu {
	background-color: #1e5faa
	}

.vert {
	color: #219a62
	}


.fond-vert {
	background-color: #219a62
	}

.btn {
	border-radius: 5px;
	padding:       .5em 2em;
	font-weight:   bold;
	}

a.btn {
	color: white
	}

.download {
	margin: 2em 0;
	}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
	.btn {
		font-size: 13px;
		padding:   .5em 1em;
		}
	}

/* STRUCTURE
*************************************************************************/
#wrapper {
	width: 100vw;
	}

.bloc {
	width:       100vw;
	display:     flex;
	line-height: 1.3em;
	margin:      10vh 0;
	}


#large-col {
	width: 50vw;
	}

#small-col {
	width: 40vw;
	}

.bloc.right #large-col {
	order: 2
	}

.bloc.right #small-col {
	margin-left: 10vw;
	}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
	
	#page {
		padding: 0 5vw 0 0 ;
		}
	
	#small-col, #large-col {
		width: 100%;
		}
	
	
	#small-col, .bloc.right #small-col {
		order:  2;
		width:  90vw;
		margin: 0 5vw;
		}
	
	
	.bloc {
		width:          90vw;
		flex-direction: column;
		}
		
	}

/* TYPO
*****************************************************************************************/


.bloc h3 {
	font-size:   200%;
	margin:      0 0 .5em 0;
	font-weight: 900;
	font-family: 'Lato', sans-serif;
	color:       #1e5faa;
	
	}

.bloc h4 {
	font-size:   125%;
	margin:      0em 0 .5em 0;
	font-weight: 900;
	font-family: 'Lato', sans-serif;
	color:       #219a62;
	}

.bloc a:not(.btn) {
	color:       #219a62;
	}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
	.bloc h3 {
		font-size: 150%;
		}
	
	.bloc h4 {
		font-size: 100%;
		}
	}

/* EN TETE ET NAVIGATION
*****************************************************************************************/

#header {
	width:  100vw;
	margin: 0;
	}

#logo {
	height:            100px;
	margin:            10px auto;
	aspect-ratio:      12/3;
	display:           block;
	background:        url(../img/logo.svg);
	background-repeat: no-repeat;
	background-size:   contain;
	}

#nav-wrapper {
	width:  80vw;
	margin: 5vh auto;
	}

#nav {
	display:         flex;
	justify-content: center;
	}


.nav-item {
	border:          1px solid silver;
	aspect-ratio:    1;
	width:           9vw;
	height:          9vw;
	/*max-width:           12vw;*/
	color:           black;
	/*align-self:      center;*/
	display:         flex;
	flex-direction:  column;
	justify-content: space-between;
	padding:         .5em;
	text-align:      center;
	font-size:       1.2vw;
	border-radius:   4px;
	margin:          0 .5vw;
	transition:      .2s ease transform;
	}

.nav-item .visuel {
	width:        60%;
	aspect-ratio: 1;
	margin:       0 auto;
	}

.nav-item.selected {
	color:            rgba(30, 95, 170, 1);
	background-color: rgba(30, 95, 170, 0.15);
	font-weight:      bold;
	
	}

#nav a:hover {
	text-decoration: none;
	color:           black;
	transform:       scale(1.1);
	}

#subnav-wrapper {
	width:  80vw;
	margin: 5vh auto;
	}

#subnav {
	display:         flex;
	justify-content: center;
	}

#subnav a:hover {
	text-decoration: none;
	color:           black;
	transform:       scale(1.1);
	}


.btn-mobile-menu {
	display: none;
	}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
	
	#header {
		width: 70vw;
		}
	
	#logo {
		width: 70vw;
		}
	
	.btn-mobile-menu {
		display:  block;
		position: absolute;
		right:    10px;
		top:      30px;
		width:    40px;
		height:   40px;
		}
	
	.btn-mobile-menu.open:before {
		font:         normal normal normal 14px/1 FontAwesome;
		content:      '\f0c9';
		margin-right: .5em;
		width:        1em;
		font-size:    30px;
		display:      inline-block;
		color:        #00558D;
		}
	
	.btn-mobile-menu.close {
		z-index: 20000;
		}
	
	.btn-mobile-menu.close:before {
		font:         normal normal normal 14px/1 FontAwesome;
		content:      '\f00d';
		margin-right: .5em;
		width:        1em;
		font-size:    30px;
		display:      inline-block;
		color:        white;
		
		}
	
	#nav-wrapper {
		
		position:   fixed;
		top:        -5vh;
		left:       0;
		width:      100vw;
		height:     100vh;
		visibility: hidden;
		}
	
	#nav {
		position:         absolute;
		top:              0;
		left:             0;
		width:            100vw;
		height:           100vh;
		background-color: #00558D;
		display:          flex;
		flex-direction:   row;
		justify-content:  center;
		align-content:    center;
		flex-wrap:        wrap;
		}
	
	#nav .gutter {
		display:         flex;
		flex-direction:  row;
		flex-wrap:       wrap;
		justify-content: center;
		width:           100vw;
		height:          80vh;
		}
	
	.nav-on #nav-wrapper {
		z-index:    10000;
		visibility: visible;
		}
	
	#nav a {
		color:     black;
		width:     30vw;
		height:    30vw;
		font-size: 4vw;
		
		}
	
	#nav a.active {
		color: white
		}
	
	#subnav-wrapper {
		width:  100%;
		margin: 5vh 0 5vh 0;
		}
	
	#subnav {
		width:          100vw;
		display:        flex;
		flex-direction: row;
		flex-wrap:      wrap;
		margin:         0;
		}
	
	#subnav a {
		color:     #BBBDC0;
		width:     22vw;
		height:    22vw;
		font-size: 3vw;
		}
	
	.nav-item {
		margin-bottom: 2px;
		
		}
	
	#nav .nav-item {
		background-color: #f0f0f0;
		margin-bottom:    2px;
		color:            black
		}
	
	#nav .nav-item.selected {
		background-color: white;
		}
	
	.nav-item a {
		font-size: 1.3vw;
		}
		
	}


/* ACCUEIL
*************************************************************************/
#splash-wrapper {
	position: relative;
	width:    50vw;
	overflow: hidden;
	position: sticky;
	top:      2vh
	}

#splash {
	/*clip-path: url(#svgPath);*/
	padding:  0;
	width:    60vw;
	height:   calc(60vw * .5625);
	margin:   0 0 0 5vw;
	overflow: hidden;
	}


.bloc.left #splash {
	margin: 0 -5vw 0 0;
	}

#splash-mask {
	z-index:           100;
	position:          absolute;
	width:             60vw;
	height:            calc(60vw * .5625);
	/*top:     calc(60vw * -.5625);*/
	margin-top:        0px;
	background-size:   cover;
	background-repeat: no-repeat;
	justify-self:      flex-start;
	
	}

#splash-blue-line {
	z-index:  100;
	position: absolute;
	width:    60vw;
	height:   calc(60vw * .5625);
	/*top:     calc(120vw * -.5625);*/
	}

#splash-green-line {
	z-index:  100;
	position: absolute;
	width:    60vw;
	height:   calc(60vw * .5625);
	/*top:     calc(180vw * -.5625);*/
	}


video {
	width:    60vw;
	height:   calc(59.4vw * .5625);
	margin:   0;
	padding:  0;
	z-index:  0;
	position: absolute;
	}

#visuel {
	position:            absolute;
	width:               60vw;
	height:              calc(59.4vw * .5625);
	background-size:     cover;
	background-position: center center;
	margin:              0;
	padding:             0;
	z-index:             0;
	}

#start, #end, #clip {
	width: 100%;
	}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
	
	#splash-wrapper {
		width:         95vw;
		overflow:      hidden;
		margin-bottom: 5vh;
		}
	
	#splash {
		width:    99vw;
		height:   calc(99vw * .5625);
		overflow: hidden;
		}
	
	#splash-mask, #splash-blue-line, #splash-green-line {
		z-index:  100;
		position: absolute;
		width:    99vw;
		height:   calc(99vw * .5625);
		}
	
	video, #visuel {
		width:  100vw;
		height: calc(98.4vw * .5625);
		
		}
		
	}

/* PRESTATIONS
*************************************************************************/
.prestation-item {
	display: flex;
	margin:  4vh 0;
	}

.prestation-item .visuel {
	flex:                0 0 15%;
	background-position: center top;
	margin-right:        10px;
	}

#page ul {
	list-style-type: circle;
	list-style-position: inside;
	}


/* PERSONNNES
*************************************************************************/
#equipe #large-col {
	width:  90vw;
	margin: 5vh auto;
	}

#equipe #large-col h3 {
	
	}


#personnes {
	display:         flex;
	justify-content: center;
	flex-wrap:       wrap;
	}

.personne-item {
	flex:          0 0 24%;
	text-align:    center;
	font-size:     75%;
	margin-bottom: 5vh;
	}

.portrait-wrapper {
	position: relative;
	}

.portrait {
	/*clip-path: url(#svgPath);*/
	padding:  0;
	width:    15vw;
	height:   15vw;
	margin:   0 0 0 5vw;
	overflow: hidden;
	}

.portrait .visuel {
	position:            absolute;
	width:               15vw;
	height:              15vw;
	background-size:     cover;
	background-position: center center;
	margin:              0;
	padding:             0;
	z-index:             0;
	}

.portrait-mask {
	z-index:         100;
	position:        absolute;
	width:           15vw;
	height:          15vw;
	margin-top:      0px;
	background-size: cover;
	justify-self:    flex-start;
	
	}

.portrait-blue-line {
	z-index:  100;
	position: absolute;
	width:    15vw;
	height:   15vw;
	
	}

.portrait-green-line {
	z-index:  100;
	position: absolute;
	width:    15vw;
	height:   15vw;
	}


@media screen and (min-device-width: 320px) and (max-width: 768px) {
	.portrait {
		width:  40vw;
		height: 40vw;
		}
	
	.portrait .visuel {
		width:  40vw;
		height: 40vw;
		}
	
	.portrait-mask {
		width:  40vw;
		height: 40vw;
		}
	
	.portrait-blue-line {
		width:  40vw;
		height: 40vw;
		}
	
	.portrait-green-line {
		width:  40vw;
		height: 40vw;
		}
	
	.personne-item {
		flex: 0 0 44%;
		}
	}


/* ACTUALITES
*************************************************************************/
.actualite-item {
	display: block;
	margin:  2em 0;
	color:   black
	}

.actualite-item:hover {
	text-decoration: none;
	color:           black;
	}

.actualite-item img {
	width: 100%;
	}

h5.date {
	font-size:  90%;
	text-align: right;
	margin:     .2em 0 1em;
	}

/* GALERIE
*************************************************************************/
.galerie {
	display:   flex;
	flex-wrap: wrap;
	width:     100%;
	}

.galerie img {
	margin: 10px 10px 0 0;
	width:  100%;
	}

.galerie a {
	margin: 10px 10px 0 0;
	width:  48%;
	}

.sl-wrapper .sl-close {
	color: white
	}

.sl-overlay {
	background-color: #1e5faa
	}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
	.galerie a {
		margin: 10px 10px 0 0;
		width:  44%;
		}
	}

/* PIED DE PAGE
*************************************************************************/
#footer {
	margin:          5vh 0 0;
	display:         flex;
	justify-content: space-between;
	line-height:     1.3em;
	font-size:       80%;
	}

#footer > div {
	flex:    0 0 30%;
	padding: 20px;
	color:   white
	}

#footer a {
	color: white
	}

#logo-iso {
	margin: 1em 0;
	width:  15vw;
	}

#footer h4 {
	font-family:    'Lato', sans-serif;
	margin:         0 0 1em 0;
	font-size:      150%;
	font-weight:    900;
	text-transform: uppercase;
	}

#credits {
	padding:    2em;
	font-size:  12px;
	color:      white;
	text-align: right;
	}

#credits a {
	color: white
	}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
	
	#footer {
		display:        flex;
		flex-direction: column;
		}
	
	#logo-iso {
		margin: 1em 0;
		width:  70vw;
		}
	}