@import url('https://fonts.googleapis.com/css?family=Nunito+Sans');
/*------------------------------------*\
  $CLASS
\*------------------------------------*/
a[href]:not([class*="clr"])					{ color: inherit }
a[href]										{ text-decoration: none }
a[href]:focus,
a[href]:hover								{ text-decoration: underline }

.bg-purple				{ background-color: #713688 }
.clr-purple				{ color: #713688 }
.clr-white				{ color: #FFF }
.fixed					{ position: fixed }
.flex					{ display: flex }
.vertical-align			{ display: flex }
.vertical-align	> *		{ display: flex; align-items: center }
.flex-row				{ flex-direction: column; justify-content: center }
.flex-container-v		{ justify-content: center }

/*------------------------------------*\
  $INDEX
\*------------------------------------*/
body {
	font-family: 'Nunito Sans', sans-serif;
}

header {
	top: 0;
	width: 100%;
}

header > div > * {
	flex: 1 1 0;
	box-sizing: border-box;
	min-width: 0;
	min-height: 0;
}

header ul {
	list-style: none;
}

header ul li {
	display: inline-block;
	padding: 0 1rem;
}

header .tiny-visible {
	display: none;
}



/*------------------------------------*\
  $MAIN
\*------------------------------------*/
.fullIMG {
	background-image: url("img/img.jpg");
}

h1 {
	padding: 4rem;
	background-color: rgba(255,255,255,.7);
}

.cercle {
	background-image: url('cercle.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

form input,
form textarea {
	width: 100%;
}

form input,
form textarea {
	 border: none;
	 padding: .5rem;
}

form input[required],
form textarea[required] {
	border-right: 1rem solid #c0392b;
}

form textarea {
	width: 100% !important;
}

form input[type="submit"] {
	background-color: #e74c3c;
	color: #fff;
	padding: 2rem
}

form input[type="submit"]:focus, 
form input[type="submit"]:hover {
	background-color: #c0392b;
}

iframe {
	width: 100%;
}


.grid-1 > .txtcenter{

	margin: auto; /* Centrer 1ère photo */
}


.partenaires{
	
	height: 130px;
}

.partenaires > *{

	align-self: center;
}


/*------------------------------------*\
  $TINY
\*------------------------------------*/
@media screen and (max-width: 544px) {
	header .grid {
		width: calc(100% / 2 - .01px);
	}
	
	header .nav {
		position: fixed;
		left: 0;
		display: none;
		width: 100%;
	}
	
	header nav li {
		display: flex;
		width: 100%;
		padding: 1rem 0;
	}
	
	header .js-menu-btn.open::before {
		content: "Fermer";
		display: inline-block;
		vertical-align: super;
		padding-right: 10px;
	}
	
}