html, body {
	margin: 0;
}

html {
	background-color: #e8eaed;
}

body {
	background-color: #ffffff;
	max-width: 800px;
	margin: 10px auto;
	padding: 15px 45px;

	-webkit-box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	border-top: 4px solid #f2f5f6;
	border-radius: 2px;

	color: #2c2e2f;
	font-family: "Century Gothic", sans-serif;
}

.bloc {
	margin-top: 10px;
}

.bleu {
	border-top: 4px solid #439cd8;
}

.bleu-fonce {
	border-top: 4px solid #2b3685;
}

.orange {
	border-top: 4px solid #e3a31f;
}

.rouge {
	border-top: 4px solid #c82840;
}

.vert {
	border-top: 4px solid #99be3d;
}

.violet {
	border-top: 4px solid #6f3076;
}

hr {
	height: 2px;
	background-color: #f2f5f6;
	margin-top: 20px;
	border: 0;
	border-radius: 1px;
}

header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;

	text-align: center;
}

#logo {
	max-width: 200px;
	margin-bottom: 10px;
}

nav {
	text-align: right;
}

nav a {
	margin-left: 20px;
	padding: 5px;

	display: inline-block;

	/*border-bottom: 2px solid #f2f5f6;*/

	color: #2c2e2f;
	text-decoration: none;
	text-transform: uppercase;

	/*transition: border 0.3s;*/
}

nav a::after {
	width: 0;
	display: block;
	content: '';

	border-bottom: 2px solid #f2f5f6;

	transition: 1s ease;
	-webkit-transition: 1s ease;
}

nav a:hover::after, nav a.actif::after {
	width: 100%;
}

nav a.a-bleu:hover::after, nav a.a-bleu.actif::after {
	border-bottom: 2px solid #439cd8;
}

nav a.a-bleu-fonce:hover::after, nav a.a-bleu-fonce.actif::after {
	border-bottom: 2px solid #2b3685;
}

nav a.a-orange:hover::after, nav a.a-orange.actif::after {
	border-bottom: 2px solid #e3a31f;
}

nav a.a-violet:hover::after, nav a.a-violet.actif::after {
	border-bottom: 2px solid #6f3076;
}

nav a.a-rouge:hover::after, nav a.a-rouge.actif::after {
	border-bottom: 2px solid #c82840;
}

nav a.a-vert:hover::after, nav a.a-vert.actif::after {
	border-bottom: 2px solid #99be3d;
}

#affiliation {
	margin-top: 10px;

	font-size: 0.8rem;
}

#affiliation a {
	margin: 0;
}

section#corps {
	width: 100%;
	height: 100%;
	margin: auto;
	margin-top: 20px;

	text-align: center;
}

#corps a {
	transition: color 0.5s;

	color: #2c2e2f;
	text-decoration: underline dotted;
}

#corps a:hover {
	color: #439cd8;
}

#carte {
	width: 100%;
}

div#slide {

	margin: 0 -45px;
	position: relative;
}

img.slide {
	width: 100%;
	margin: 10px 0px;
	display: none;
}

button.slide-gauche {
	left: 0%;
}

button.slide-droite {
	right: 0%;
}

button.slide-gauche, button.slide-droite {
	background-color: #000000;
	padding: 4px 8px;
	vertical-align: middle;
	overflow: hidden;
	border: none;
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transition: background 0.3s, color 0.3s;

	color: #ffffff;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

button.slide-gauche:hover, button.slide-droite:hover {
	background-color: #ffffff;
	color: #000000;
}

.signature {
	margin-top: 20px;
	display: block;
	font-style: italic;
	font-weight: bold;
	text-align: right;
}

address {
	display: flex;
	align-items: center;
	justify-content: space-around;

	font-style: normal;
}

section#covid, address {
	width: 90%;
	background-color: #f2f5f6;
	margin: auto;
	padding: 15px 30px;

	-webkit-box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	border-radius: 2px;
}

section#evenements {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
}

section#permanences {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
}

section#dons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
}

section#evenements h2 {
	grid-column: 1 / 4;
	grid-row: 1;
}

section#permanences h2 {
	grid-column: 1 / 3;
	grid-row: 1;
}

section#dons h2 {
	grid-column: 1 / 3;
	grid-row: 1;
}

section#evenements div, section#permanences div {
	grid-row: 2;
	padding: 10px;

	-webkit-box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	border-radius: 2px;

	text-align: left;
}

section#dons div {
	padding: 10px;

	-webkit-box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	border-radius: 2px;

	text-align: left;
}

section#permanences p {
	grid-column: 1 / 3;
	grid-row: 3;
	margin: 0;
}

form {
	width: 50%;
	display: inline-block;
}

form input, form textarea, form button {
	width: 100%;
	margin-bottom: 10px;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #f2f5f6;
	border-radius: 3px;
	transition: border 0.4s;

	font-family: "Century Gothic", sans-serif;
	font-size: 0.9em;
}

form input:focus, textarea:focus {
	border: 1px solid #2c2e2f;
}

form button {
	background-color: #439cd8;
	margin: 0;
	padding: 10px;
	border: 0;
	transition: background 0.3s;

	color: #ffffff;
	cursor: pointer;
}

form button:hover {
	background-color: #c82840;
}

h1, h2, h3 {
	margin: 0;
	font-weight: normal;
}

h1 {
	padding: 2px;
	border-bottom: 1px solid #c82840;

	color: #2b3685;
	font-size: 1.5rem;
	line-height: 1.9rem;
	text-align: center;
	text-transform: uppercase;
}

h2 {
	margin: 0px 0px 10px 0px;

	color: #202124;
	font-size: 1.5rem;
	line-height: 2.5rem;
	text-align: center;
}

h3 {
	color: #4a4a4a;
	font-size: 1.1rem;
	line-height: 2rem;
	font-weight: bold;
	text-transform: uppercase;
}

h4 {
	color: #4a4a4a;
	margin: 0;
	margin-bottom: 10px;
}

.small {
	font-size: 5px;
}

footer {
	background-color: #f2f5f6;
	margin: 20px -45px -15px -45px;
	padding: 15px 30px;

	font-size: 0.7rem;
	text-align: center;
}

.ligne-rouge  {
	border-bottom: 2px solid #c82840;
}