@font-face {
	font-family: 'DM Sans';
	src: url('/font/dmsans-regular.woff') format('woff'),
		url('/font/dmsans-regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'DM Sans';
	src: url('/font/dmsans-italic.woff') format('woff'),
		url('/font/dmsans-italic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}
@font-face {
	font-family: 'DM Sans';
	src: url('/font/dmsans-medium.woff') format('woff'),
		url('/font/dmsans-medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'DM Sans';
	src: url('/font/dmsans-bold.woff') format('woff'),
		url('/font/dmsans-bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}
:root {
	--color-primary: #242955;
	--color-second: #3D50CC;
	--color-accent: #7237FD;
	--color-text: #262626;
}
body, html {
	margin: 0;
	padding: 0;
}
body {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: sans-serif;
	min-height: 100vh;
	font-family: 'DM Sans', sans-serif;
	color: var(--color-text);
	font-size: 16px;
}
header, footer {
	background-color: var(--color-primary);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
h1 {
	font-size: 29px;
	font-weight: 500;
	color: white;
	background: rgba(0, 0, 0, 0.6);
	display: inline-block;
	padding: 15px 20px;
	border-radius: 10px;
	margin: 30px;
}
h2 {
	font-size: 25px;
	font-weight: 500;
	color: var(--color-primary);
}
h3 {
	font-size: 20px;
	color: var(--color-second);
}
h4 {
	color: var(--color-primary);
}
h5 {
	font-size: 15px;
	color: var(--color-text);
}
h5:before {
	content: "■ ";
	font-size: 18px;
	color: var(--color-second);
}
p, dd {text-align: justify;}
input[type="text"], input[type="tel"], input[type="email"], input[type="number"], textarea {
	border-radius: 5px 5px 0 0;
	background: #EAE9FF;
	border: none;
	border-bottom: 1px solid var(--color-second);
	padding: 8px;
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
}
textarea {
	min-height: 100px;
}
button {
	border-radius: 10px;
	border: none;
	background: var(--color-accent);
	padding: 20px 30px;
	color: white;
	font-weight: bold;
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	cursor: pointer;
	width: min-content;
}
button:hover {
	background: var(--color-second);
}
table {
	border-collapse: collapse;
	max-width: 100vw;
	overflow-x: auto;
	display: block;
}
th {
	background: #E3E6FE;
}
th, td {
	border: 1px solid #8995EA;
	padding: 5px 8px;
}
pre {
	background: #eee;
	padding: 20px;
	border-radius: 10px;
	overflow-x: auto;
}
header {
	height: 85px;
	position: fixed;
	max-width: 100vw;
}
.hcontainer {
	display: flex;
	max-width: 1000px;
	width: 100%;
	padding: 0 30px;
	box-sizing: border-box;
	align-items: center;
	justify-content: space-between;
}
.logo img {width: 85px;}
.logo {
	width: 85px;
	margin-top: 15px;
	margin-left: -6px;
	z-index: 343;
}
.encart-user {
	background-color: #3c437a;
	border-radius: 10px;
	padding: 10px;
	margin: 0 10px;
}
.encart-user * {
	font-size: 14px;
	margin: 0;
	color: white;
}
.encart-user a {
	text-decoration: underline;
}
.encart-user:empty {display: none;}
.login-info {display: block;}
nav {
	display: flex;
	gap: 50px;
	align-items: center;
	text-align: center;
}
nav a, footer a {
	color: white;
	text-decoration: none;
}
nav a::after {
	content: "";
	width: 0%;
	height: 3px;
	margin-top: 5px;
	display: block;
	background-color: var(--color-second);
	border-radius: 2px;
	transition: all ease-out 0.1s;
}
nav a:hover::after {
	width: 100%;
}
header button {
	background: none;
	border: none;
	display: none;
	color: white;
	font-size: 22px;
	width: 48px;
	height: 48px;
	padding: 0;
	font-family: auto;
	font-weight: normal;
}
header button.btn-menu-fermer { 
	position: absolute;
	top: 0px;
	right: 0px;
}
.sep {display: none;}
@media screen and (max-width: 768px) { 
	.Hcontainer {padding-right: 15px;}
	nav {
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		right: -100vw;
		flex-direction: column;
		padding-top: 48px;
		box-sizing: border-box;
		background-color: var(--color-primary);
		z-index: 10000;
		transition: all 0.5s ease-out;
		gap: 0;
	}
	nav.toggle-menu-visible {
		transition: all 0.5s ease-in;
		right: 0;
	}
	nav a {
		padding: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		width: 100%;
	}
	nav a:last-child {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	} 
	nav a::after {
		display: none;
	}
	header button {
		display: block;
	}
}
.main-area {
	display: flex;
	width: 100%;
	max-width: 1000px;
	flex-direction: column;
	margin: 85px 0 80px;
	padding: 0 30px;
	box-sizing: border-box;
	align-items: center;
}
.filler {
	background: url("/gfx/bg-filler.svg") no-repeat center center / 940px, linear-gradient(0deg, rgba(141, 177, 255, 0.75) 0%, rgba(255, 255, 255, 1) 80%) ;
	flex-grow: 1;
	width: 100%;
	border: none;
	margin: 0px;
}
footer {
	height: 75px;
	gap: 40px;
	align-items: center;
	font-size: 13px;
}
footer a:hover {
	text-decoration: underline;
}
.logo40 {
	width: 40px;
	height: 43px;
	background-image: url('/gfx/logo.svg');
}
.main-area a {
	color: var(--color-accent);
	font-weight: bold;
	text-decoration: none;
}
.main-area a:hover {
	text-decoration: underline;
}
.banner {
	background: url("/gfx/banner.jpg") center/cover no-repeat var(--color-primary);
	min-height: 125px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 10px 10px;
	margin-bottom: 40px;
	width: 100%;
}
.sect-2col {
	display: flex;
	flex-direction: column;
}
.sect-2col .subsec, .sect-2col article {
	display: flex;
	align-items: flex-start;
	gap: 35px;
}
.sect-2col .illus, .sect-2col img {
	width: 200px;
	border-radius: 10px;
}
.sect-2col .illus {
	flex-shrink: 0;
}
#illus-perenne {
	background-image: url('/gfx/illus-perenne.svg');
	height: 124px;
}
#illus-maintenu {
	background-image: url('/gfx/illus-maintenu.svg');
	height: 148px;
}
#illus-controle {
	background-image: url('/gfx/illus-controle.svg');
	height: 144px;
}
@media screen and (max-width: 768px) {
	.sect-2col .subsec {
		flex-direction: column !important;
		align-items: center !important;
	}
}
.Hero {
	background: url("/gfx/hero.jpg") center/cover no-repeat var(--color-primary);
	height: 280px;
	justify-content: flex-start;
	align-items: flex-end;
	width: 100%;
}
.sect-avantages {
	gap: 20px;
}
.sect-avantages .subsec {
	align-items: center;
}
.sect-avantages .subsec:nth-child(even) {
	flex-direction: row-reverse;
}
.sect-team {gap: 30px;}
.sect-team img {
	box-shadow: 2px 2px 0 0 var(--color-accent);
}
.sect-team h2 {margin-bottom: 0;}
.sect-team h3 {display: none;}
.sect-team dt:before, .sect-team dt, .sect-team dd {
	margin: 0 0 8px;
}
.sect-team dl {margin: 0px;}
.sect-team dt {
	font-weight: bold;
	color: var(--color-primary);
}
.sect-team dt:before {
	display: block;
	font-size: 20px;
	color: var(--color-second);
}
.sect-team dt.yohanna:before {content: "Yohann Agrebbe";}
.sect-team dt.victorl:before {content: "Victor Lionnois";}
.sect-contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 16px;
	width: 100%;
	max-width: 800px;
	padding: 40px 0;
	box-sizing: border-box;
}
.sect-contact div {
	align-self: end;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.sect-contact .label-x-axis {
	flex-direction: row;
	align-items: center;
	flex-grow: 1;
}
.sect-contact span.label-x-axis {
	align-self: center;
}
.col-2 {
	grid-column: span 2;
}
.sect-contact .side-fields {
	display: flex;
	align-self: stretch;
	flex-direction: row;
	gap: 16px;
}
.sect-contact .side-fields input, .sect-contact .side-fields .label-x-axis {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 0;
}
.sect-contact label {
	font-size: 14px;
	color: var(--color-primary);;
}
.sect-contact label.answer {
	font-size: inherit;
	color: inherit;
}
.sect-blog {
	gap: 40px;
}
.sect-blog article {
	flex-direction: row-reverse;
}
.sect-blog h2 {
	font-size: 16px;
	font-weight: bold;
}
.sect-blog h2 a {
	display: block;
	font-size: 20px;
	margin-top: 10px;
}
.sect-blog h2, .sect-blog p {
	margin: 0 0 10px;
}
.sect-blog img {
	width: 300px;
}
.pagination {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.pagination li {
	padding: 10px 0;
}
.pagination li.actif {
	border: 1px solid var(--color-accent);
	border-radius: 5px;
	padding: 10px 15px;
}
.pagination li a {
	color: var(--color-text);
	font-weight: normal;
	padding: 10px 0;
}
.pagination li.actif a {
	color: var(--color-accent);
}
.infos-actu {
	font-weight: 500;
	color: white;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 10px;
	font-size: 13px;
	padding: 25px;
	margin: 25px;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.infos-actu h1 {
	background: none;
	font-size: 24px;
	margin: 0 0 15px;
	padding: 0;
}
.infos-actu ul {
	list-style-type: none;
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}
.infos-actu a {
	color: rgba(255, 255, 255, 0.8);
}
time {
	color: grey;
	font-size: 14px;
	font-style: italic;
}
.sect-actu {
	font-family: Times New Roman, serif;
	max-width: 100vw;
	box-sizing: border-box;
	padding: 0 20px;
}
.sect-actu h2 {color: var(--color-second);}
.sect-actu table {font-family: Arial, sans-serif;}
.sect-actu pre {font-family: Courier, Courier New, monospace;}
.red {color: #a45;}
.green {color: #399;}
.blue {color: #75c;}
.sect-actu img {
	border-radius: 10px;
	max-width: 100%;
}
@media screen and (max-width: 768px) { 
	.sect-team h4 {margin-bottom: 30px;}
	.sect-team h3, .sect-team h4 {
		text-align: center;
	}
	.sect-contact {
		grid-template-columns: 1fr;
	}
	.col-2 {
		grid-column: 1;
	}
}
